From f416285c0f0d301faec543c827e55b7a39d9e42e Mon Sep 17 00:00:00 2001 From: Amndeep Singh Mann Date: Tue, 9 Aug 2022 14:50:56 -0400 Subject: [PATCH 1/6] swapped twistlock mapper to results Signed-off-by: Amndeep Singh Mann --- src/commands/convert/index.ts | 4 ++-- src/commands/convert/twistlock2hdf.ts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/commands/convert/index.ts b/src/commands/convert/index.ts index a9ac691a5..aaccbf64a 100644 --- a/src/commands/convert/index.ts +++ b/src/commands/convert/index.ts @@ -1,4 +1,4 @@ -import {ASFFResults, BurpSuiteMapper, DBProtectMapper, fingerprint, FortifyMapper, JfrogXrayMapper, NessusResults, NetsparkerMapper, NiktoMapper, PrismaMapper, SarifMapper, ScoutsuiteMapper, SnykResults, TwistlockMapper, XCCDFResultsMapper, ZapMapper} from '@mitre/hdf-converters' +import {ASFFResults, BurpSuiteMapper, DBProtectMapper, fingerprint, FortifyMapper, JfrogXrayMapper, NessusResults, NetsparkerMapper, NiktoMapper, PrismaMapper, SarifMapper, ScoutsuiteMapper, SnykResults, TwistlockResults, XCCDFResultsMapper, ZapMapper} from '@mitre/hdf-converters' import fs from 'fs' import _ from 'lodash' import {checkSuffix, convertFullPathToFilename} from '../../utils/global' @@ -178,7 +178,7 @@ export default class Convert extends Command { } case 'twistlock': { - converter = new TwistlockMapper(fs.readFileSync(flags.input, 'utf8')) + converter = new TwistlockResults(fs.readFileSync(flags.input, 'utf8')) fs.writeFileSync(checkSuffix(flags.output), JSON.stringify(converter.toHdf())) break } diff --git a/src/commands/convert/twistlock2hdf.ts b/src/commands/convert/twistlock2hdf.ts index c0db73867..33d41b540 100644 --- a/src/commands/convert/twistlock2hdf.ts +++ b/src/commands/convert/twistlock2hdf.ts @@ -1,6 +1,6 @@ import {Command, Flags} from '@oclif/core' import fs from 'fs' -import {TwistlockMapper as Mapper} from '@mitre/hdf-converters' +import {TwistlockResults as Mapper} from '@mitre/hdf-converters' import {checkInput, checkSuffix} from '../../utils/global' export default class Twistlock2HDF extends Command { From 9d109c5916bcd6ab321e31869aeb59558e82639d Mon Sep 17 00:00:00 2001 From: Amndeep Singh Mann Date: Mon, 29 Aug 2022 14:19:22 -0400 Subject: [PATCH 2/6] fixed bug in asff mapper where it was trying to use the fullpath as the filename Signed-off-by: Amndeep Singh Mann --- src/commands/convert/hdf2asff.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/commands/convert/hdf2asff.ts b/src/commands/convert/hdf2asff.ts index 1c90315fb..21d85b712 100644 --- a/src/commands/convert/hdf2asff.ts +++ b/src/commands/convert/hdf2asff.ts @@ -4,7 +4,7 @@ import https from 'https' import {FromHdfToAsffMapper as Mapper} from '@mitre/hdf-converters' import path from 'path' import AWS from 'aws-sdk' -import {checkSuffix, sliceIntoChunks} from '../../utils/global' +import {checkSuffix, convertFullPathToFilename, sliceIntoChunks} from '../../utils/global' import _ from 'lodash' import {BatchImportFindingsRequestFindingList} from 'aws-sdk/clients/securityhub' @@ -44,11 +44,11 @@ export default class HDF2ASFF extends Command { const outputFolder = flags.output?.replace('.json', '') || 'asff-output' fs.mkdirSync(outputFolder) if (convertedSlices.length === 1) { - const outfilePath = path.join(outputFolder, checkSuffix(flags.output)) + const outfilePath = path.join(outputFolder, convertFullPathToFilename(checkSuffix(flags.output))) fs.writeFileSync(outfilePath, JSON.stringify(convertedSlices[0])) } else { convertedSlices.forEach((slice, index) => { - const outfilePath = path.join(outputFolder, `${checkSuffix(flags.output || '').replace('.json', '')}.p${index}.json`) + const outfilePath = path.join(outputFolder, `${convertFullPathToFilename(checkSuffix(flags.output || '')).replace('.json', '')}.p${index}.json`) fs.writeFileSync(outfilePath, JSON.stringify(slice)) }) } From d02169e4de278f91dc251225b2799b8a94689541 Mon Sep 17 00:00:00 2001 From: Amndeep Singh Mann Date: Wed, 31 Aug 2022 03:13:09 -0400 Subject: [PATCH 3/6] removed sliceintochunks func cause we could just use lodash's implementation instead, minor fixes Signed-off-by: Amndeep Singh Mann --- src/commands/convert/hdf2asff.ts | 6 +++--- src/utils/global.ts | 12 ------------ 2 files changed, 3 insertions(+), 15 deletions(-) diff --git a/src/commands/convert/hdf2asff.ts b/src/commands/convert/hdf2asff.ts index 21d85b712..d5ae92c49 100644 --- a/src/commands/convert/hdf2asff.ts +++ b/src/commands/convert/hdf2asff.ts @@ -4,7 +4,7 @@ import https from 'https' import {FromHdfToAsffMapper as Mapper} from '@mitre/hdf-converters' import path from 'path' import AWS from 'aws-sdk' -import {checkSuffix, convertFullPathToFilename, sliceIntoChunks} from '../../utils/global' +import {checkSuffix, convertFullPathToFilename} from '../../utils/global' import _ from 'lodash' import {BatchImportFindingsRequestFindingList} from 'aws-sdk/clients/securityhub' @@ -40,7 +40,7 @@ export default class HDF2ASFF extends Command { }).toAsff() if (flags.output) { - const convertedSlices = sliceIntoChunks(converted, 100) + const convertedSlices = _.chunk(converted, 100) // AWS doesn't allow uploading more than 100 findings at a time so we need to split them into chunks const outputFolder = flags.output?.replace('.json', '') || 'asff-output' fs.mkdirSync(outputFolder) if (convertedSlices.length === 1) { @@ -56,7 +56,7 @@ export default class HDF2ASFF extends Command { if (flags.upload) { const profileInfoFinding = converted.pop() - const convertedSlices = sliceIntoChunks(converted, 100) + const convertedSlices = _.chunk(converted, 100) as BatchImportFindingsRequestFindingList[] if (flags.insecure) { console.warn('WARNING: Using --insecure will make all connections to AWS open to MITM attacks, if possible pass a certificate file with --certificate') diff --git a/src/utils/global.ts b/src/utils/global.ts index 463782f44..32f018530 100644 --- a/src/utils/global.ts +++ b/src/utils/global.ts @@ -17,18 +17,6 @@ export function checkSuffix(input: string) { return `${input}.json` } -export function sliceIntoChunks( - arr: any[], - chunkSize: number, -): any[][] { - const res = [] - for (let i = 0; i < arr.length; i += chunkSize) { - res.push(arr.slice(i, i + chunkSize)) - } - - return res -} - export function convertFullPathToFilename(inputPath: string): string { let filePath = inputPath.split('/') const relativeFileName = filePath[filePath.length - 1] From c4dc44bc8ba8a0d372c1e3f6c0213d8c3f3a166a Mon Sep 17 00:00:00 2001 From: bwarren Date: Wed, 21 Sep 2022 20:19:24 -0400 Subject: [PATCH 4/6] update dependencies Signed-off-by: bwarren --- package-lock.json | 46 +++++++++++++++++++++++----------------------- package.json | 6 +++--- 2 files changed, 26 insertions(+), 26 deletions(-) diff --git a/package-lock.json b/package-lock.json index c732c5ee3..3ee25b41b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -10,8 +10,8 @@ "license": "Apache-2.0", "dependencies": { "@aws-sdk/client-config-service": "^3.53.0", - "@mitre/hdf-converters": "^2.6.29", - "@mitre/heimdall-lite": "^2.6.29", + "@mitre/hdf-converters": "^2.6.31", + "@mitre/heimdall-lite": "^2.6.31", "@mitre/inspec-objects": "^0.0.18", "@oclif/core": "^1.6.0", "@oclif/plugin-help": "^5", @@ -44,7 +44,7 @@ "get-installed-path": "^4.0.8", "htmlparser2": "^8.0.1", "https": "^1.0.0", - "inspecjs": "^2.6.28", + "inspecjs": "^2.6.30", "lodash": "^4.17.21", "moment": "^2.29.1", "mustache": "^4.2.0", @@ -2087,9 +2087,9 @@ } }, "node_modules/@mitre/hdf-converters": { - "version": "2.6.29", - "resolved": "https://registry.npmjs.org/@mitre/hdf-converters/-/hdf-converters-2.6.29.tgz", - "integrity": "sha512-1NuE9d/0sPDTEZ/JFqAp9diaxHWfKZLZ6Mbb7RR/YG8zK4C4ZRqwGVinxt6+Lc60WF2MYWhNbVQYcwbEUdjiNw==", + "version": "2.6.31", + "resolved": "https://registry.npmjs.org/@mitre/hdf-converters/-/hdf-converters-2.6.31.tgz", + "integrity": "sha512-6qzUdewk55pNqD8J5tBXBRnxJw/vE3oCNzyfkEO3jFM9QRcypLPeWJEjDsQ/Yv7wzLtJ1tecxyxypHpHNQ8QbA==", "dependencies": { "@aws-sdk/client-config-service": "^3.95.0", "@mitre/splunk-sdk-no-env": "^1.10.0", @@ -2104,7 +2104,7 @@ "fast-xml-parser": "^3.21.1", "html-entities": "^2.3.2", "htmlparser2": "^7.1.2", - "inspecjs": "^2.6.28", + "inspecjs": "^2.6.30", "lodash": "^4.17.21", "moment": "^2.29.1", "ms": "^2.1.3", @@ -2203,9 +2203,9 @@ } }, "node_modules/@mitre/heimdall-lite": { - "version": "2.6.29", - "resolved": "https://registry.npmjs.org/@mitre/heimdall-lite/-/heimdall-lite-2.6.29.tgz", - "integrity": "sha512-JZBOzqLdMtKNC57GKAwVvJM2A/a9Tew7rOHUbKYgWDEoygu2gpi/toIyEJl4dpN0FoJ7Mz7AKdj699QKO8FWAg==", + "version": "2.6.31", + "resolved": "https://registry.npmjs.org/@mitre/heimdall-lite/-/heimdall-lite-2.6.31.tgz", + "integrity": "sha512-t0f146DbzOUoGwdoOu2jLEwEhtAsNlbuXSsrErKrx+pn3Gp/lNksPTg569vqPCcWIJDsSVVQiUZQ7ckeIOLMFg==", "dependencies": { "express": "^4.17.1" }, @@ -7945,9 +7945,9 @@ } }, "node_modules/inspecjs": { - "version": "2.6.28", - "resolved": "https://registry.npmjs.org/inspecjs/-/inspecjs-2.6.28.tgz", - "integrity": "sha512-YpipwsgfPIJgQoeMVd+U2FjxmPLAXnrRwCIdt8Fg5UfT8gHet2T5bOVZv6PGh4mkYuKIWXGc4pbXODGoFg/naQ==" + "version": "2.6.30", + "resolved": "https://registry.npmjs.org/inspecjs/-/inspecjs-2.6.30.tgz", + "integrity": "sha512-w7vZasK+yjO2lu5x/naHzCTbA9Co7VqH2ZhKz3jF0tAvsJhf7boTdY5XbeXssxYNJQWabtBykze37MC5kZfHAQ==" }, "node_modules/interpret": { "version": "1.4.0", @@ -15823,9 +15823,9 @@ } }, "@mitre/hdf-converters": { - "version": "2.6.29", - "resolved": "https://registry.npmjs.org/@mitre/hdf-converters/-/hdf-converters-2.6.29.tgz", - "integrity": "sha512-1NuE9d/0sPDTEZ/JFqAp9diaxHWfKZLZ6Mbb7RR/YG8zK4C4ZRqwGVinxt6+Lc60WF2MYWhNbVQYcwbEUdjiNw==", + "version": "2.6.31", + "resolved": "https://registry.npmjs.org/@mitre/hdf-converters/-/hdf-converters-2.6.31.tgz", + "integrity": "sha512-6qzUdewk55pNqD8J5tBXBRnxJw/vE3oCNzyfkEO3jFM9QRcypLPeWJEjDsQ/Yv7wzLtJ1tecxyxypHpHNQ8QbA==", "requires": { "@aws-sdk/client-config-service": "^3.95.0", "@mitre/splunk-sdk-no-env": "^1.10.0", @@ -15840,7 +15840,7 @@ "fast-xml-parser": "^3.21.1", "html-entities": "^2.3.2", "htmlparser2": "^7.1.2", - "inspecjs": "^2.6.28", + "inspecjs": "^2.6.30", "lodash": "^4.17.21", "moment": "^2.29.1", "ms": "^2.1.3", @@ -15912,9 +15912,9 @@ } }, "@mitre/heimdall-lite": { - "version": "2.6.29", - "resolved": "https://registry.npmjs.org/@mitre/heimdall-lite/-/heimdall-lite-2.6.29.tgz", - "integrity": "sha512-JZBOzqLdMtKNC57GKAwVvJM2A/a9Tew7rOHUbKYgWDEoygu2gpi/toIyEJl4dpN0FoJ7Mz7AKdj699QKO8FWAg==", + "version": "2.6.31", + "resolved": "https://registry.npmjs.org/@mitre/heimdall-lite/-/heimdall-lite-2.6.31.tgz", + "integrity": "sha512-t0f146DbzOUoGwdoOu2jLEwEhtAsNlbuXSsrErKrx+pn3Gp/lNksPTg569vqPCcWIJDsSVVQiUZQ7ckeIOLMFg==", "requires": { "express": "^4.17.1" } @@ -20345,9 +20345,9 @@ } }, "inspecjs": { - "version": "2.6.28", - "resolved": "https://registry.npmjs.org/inspecjs/-/inspecjs-2.6.28.tgz", - "integrity": "sha512-YpipwsgfPIJgQoeMVd+U2FjxmPLAXnrRwCIdt8Fg5UfT8gHet2T5bOVZv6PGh4mkYuKIWXGc4pbXODGoFg/naQ==" + "version": "2.6.30", + "resolved": "https://registry.npmjs.org/inspecjs/-/inspecjs-2.6.30.tgz", + "integrity": "sha512-w7vZasK+yjO2lu5x/naHzCTbA9Co7VqH2ZhKz3jF0tAvsJhf7boTdY5XbeXssxYNJQWabtBykze37MC5kZfHAQ==" }, "interpret": { "version": "1.4.0", diff --git a/package.json b/package.json index 08eab1018..ec16462d9 100644 --- a/package.json +++ b/package.json @@ -7,8 +7,8 @@ "bugs": "https://github.com/mitre/saf/issues", "dependencies": { "@aws-sdk/client-config-service": "^3.53.0", - "@mitre/hdf-converters": "^2.6.29", - "@mitre/heimdall-lite": "^2.6.29", + "@mitre/hdf-converters": "^2.6.31", + "@mitre/heimdall-lite": "^2.6.31", "@mitre/inspec-objects": "^0.0.18", "@oclif/core": "^1.6.0", "@oclif/plugin-help": "^5", @@ -41,7 +41,7 @@ "get-installed-path": "^4.0.8", "htmlparser2": "^8.0.1", "https": "^1.0.0", - "inspecjs": "^2.6.28", + "inspecjs": "^2.6.30", "lodash": "^4.17.21", "moment": "^2.29.1", "mustache": "^4.2.0", From e300df3560492fa0b0753d6c6242dc225abeb7fe Mon Sep 17 00:00:00 2001 From: bwarren Date: Wed, 21 Sep 2022 20:20:57 -0400 Subject: [PATCH 5/6] updated test to match changes from hdf-converters and attestations like CCIs Signed-off-by: bwarren --- test/commands/convert/convert.test.ts | 2 +- ...al_security_best_practices_v1.0.0-hdf.json | 101 + ..._aws-foundations_benchmark_v1.2.0-hdf.json | 558 + test/sample_data/asff/asff-hdf.json | 128 +- .../asff/example-3-layer-overlay_hdf.json | 2 +- test/sample_data/asff/prowler-hdf.json | 125 + test/sample_data/asff/rhel7_V-71931-hdf.json | 2 +- .../trivy-image_golang-1.12-alpine-hdf.json | 916 + .../output/red_hat_good_xlsx-attestation.json | 10 +- ...iple_overlay_example_json-attestation.json | 6 +- test/sample_data/burpsuite/burpsuite-hdf.json | 59 +- test/sample_data/jfrog_xray/jfrog-hdf.json | 70 +- test/sample_data/nikto/nikto-hdf.json | 66 +- test/sample_data/prisma/localhost.json | 42 +- .../my-fake-host-1.somewhere.cloud.json | 34 +- .../my-fake-host-10.somewhere.cloud.json | 30 +- .../my-fake-host-11.somewhere.cloud.json | 30 +- .../my-fake-host-12.somewhere.cloud.json | 30 +- .../my-fake-host-13.somewhere.cloud.json | 34 +- .../my-fake-host-14.somewhere.cloud.json | 34 +- .../my-fake-host-15.somewhere.cloud.json | 34 +- .../my-fake-host-2.somewhere.cloud.json | 22 +- .../my-fake-host-3.somewhere.cloud.json | 26 +- .../my-fake-host-4.somewhere.cloud.json | 26 +- .../my-fake-host-5.somewhere.cloud.json | 18 +- .../my-fake-host-6.somewhere.cloud.json | 26 +- .../my-fake-host-7.somewhere.cloud.json | 26 +- .../my-fake-host-8.somewhere.cloud.json | 26 +- .../my-fake-host-9.somewhere.cloud.json | 26 +- test/sample_data/sarif/sarif-hdf.json | 90 +- .../scoutsuite/scoutsuite-hdf.json | 30 +- .../xccdf-openscap-rhel7-hdf.json | 75635 +++++++------- .../xccdf-openscap-rhel8-hdf.json | 84678 +++++++++------- .../xccdf_results/xccdf-scc-rhel7-hdf.json | 74236 ++++++++------ .../xccdf_results/xccdf-scc-rhel8-hdf.json | 84086 ++++++++------- .../zap/zap-webappsecurity-hdf.json | 50 +- test/sample_data/zap/zap-webgoat-hdf.json | 86 +- 37 files changed, 178501 insertions(+), 142899 deletions(-) create mode 100644 test/sample_data/asff/asff-aws_foundational_security_best_practices_v1.0.0-hdf.json create mode 100644 test/sample_data/asff/asff-cis_aws-foundations_benchmark_v1.2.0-hdf.json create mode 100644 test/sample_data/asff/prowler-hdf.json create mode 100644 test/sample_data/asff/trivy-image_golang-1.12-alpine-hdf.json diff --git a/test/commands/convert/convert.test.ts b/test/commands/convert/convert.test.ts index 272080b91..79f5ec602 100644 --- a/test/commands/convert/convert.test.ts +++ b/test/commands/convert/convert.test.ts @@ -16,7 +16,7 @@ describe('Test (generic) convert', () => { ) const test = JSON.parse(fs.readFileSync(`${tmpobj.name}/asfftest/CIS AWS Foundations Benchmark v1.2.0.json`, 'utf8')) - const sample = JSON.parse(fs.readFileSync(path.resolve('./test/sample_data/asff/asff-hdf.json'), 'utf8')) + const sample = JSON.parse(fs.readFileSync(path.resolve('./test/sample_data/asff/asff-cis_aws-foundations_benchmark_v1.2.0-hdf.json'), 'utf8')) expect(omitHDFChangingFields(test)).to.eql(omitHDFChangingFields(sample)) }) diff --git a/test/sample_data/asff/asff-aws_foundational_security_best_practices_v1.0.0-hdf.json b/test/sample_data/asff/asff-aws_foundational_security_best_practices_v1.0.0-hdf.json new file mode 100644 index 000000000..9998d8493 --- /dev/null +++ b/test/sample_data/asff/asff-aws_foundational_security_best_practices_v1.0.0-hdf.json @@ -0,0 +1,101 @@ +{ + "platform": { + "name": "Heimdall Tools", + "release": "2.6.29", + "target_id": "AWS Foundational Security Best Practices v1.0.0" + }, + "version": "2.6.29", + "statistics": { + "duration": null + }, + "profiles": [ + { + "name": "AWS Security Finding Format", + "version": "", + "title": "ASFF Findings", + "maintainer": null, + "summary": "", + "license": null, + "copyright": null, + "copyright_email": null, + "supports": [], + "attributes": [], + "depends": [], + "groups": [], + "status": "loaded", + "controls": [ + { + "id": "Config.1", + "title": "AWS Foundational Security Best Practices v1.0.0: Config.1 AWS Config should be enabled", + "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], + "nist": [ + "SA-11", + "RA-5" + ] + }, + "impact": 0.5, + "desc": "This AWS control checks whether the Config service is enabled in the account for the local region and is recording all resources.", + "descriptions": [ + { + "data": "For directions on how to fix this issue, please consult the AWS Security Hub Foundational Security Best Practices documentation.\nhttps://docs.aws.amazon.com/console/securityhub/Config.1/remediation", + "label": "fix" + } + ], + "refs": [], + "source_location": {}, + "code": "{\n \"Findings\": [\n {\n \"SchemaVersion\": \"2018-10-08\",\n \"Id\": \"arn:aws:securityhub:us-east-1:123456789123:subscription/aws-foundational-security-best-practices/v/1.0.0/Config.1/finding/9ffec6a3-3ce8-4011-bf90-17dbe94bf1d3\",\n \"ProductArn\": \"arn:aws:securityhub:us-east-1::product/aws/securityhub\",\n \"ProductName\": \"Security Hub\",\n \"CompanyName\": \"AWS\",\n \"Region\": \"us-east-1\",\n \"GeneratorId\": \"aws-foundational-security-best-practices/v/1.0.0/Config.1\",\n \"AwsAccountId\": \"123456789123\",\n \"Types\": [\n \"Software and Configuration Checks/Industry and Regulatory Standards/AWS-Foundational-Security-Best-Practices\"\n ],\n \"FirstObservedAt\": \"2021-07-23T23:40:39.455Z\",\n \"LastObservedAt\": \"2021-08-09T11:21:11.282Z\",\n \"CreatedAt\": \"2021-07-23T23:40:39.455Z\",\n \"UpdatedAt\": \"2021-08-09T11:21:09.408Z\",\n \"Severity\": {\n \"Product\": 40,\n \"Label\": \"MEDIUM\",\n \"Normalized\": 40,\n \"Original\": \"MEDIUM\"\n },\n \"Title\": \"Config.1 AWS Config should be enabled\",\n \"Description\": \"This AWS control checks whether the Config service is enabled in the account for the local region and is recording all resources.\",\n \"Remediation\": {\n \"Recommendation\": {\n \"Text\": \"For directions on how to fix this issue, please consult the AWS Security Hub Foundational Security Best Practices documentation.\",\n \"Url\": \"https://docs.aws.amazon.com/console/securityhub/Config.1/remediation\"\n }\n },\n \"ProductFields\": {\n \"StandardsArn\": \"arn:aws:securityhub:::standards/aws-foundational-security-best-practices/v/1.0.0\",\n \"StandardsSubscriptionArn\": \"arn:aws:securityhub:us-east-1:123456789123:subscription/aws-foundational-security-best-practices/v/1.0.0\",\n \"ControlId\": \"Config.1\",\n \"RecommendationUrl\": \"https://docs.aws.amazon.com/console/securityhub/Config.1/remediation\",\n \"StandardsControlArn\": \"arn:aws:securityhub:us-east-1:123456789123:control/aws-foundational-security-best-practices/v/1.0.0/Config.1\",\n \"aws/securityhub/ProductName\": \"Security Hub\",\n \"aws/securityhub/CompanyName\": \"AWS\",\n \"Resources:0/Id\": \"arn:aws:iam::123456789123:root\",\n \"aws/securityhub/FindingId\": \"arn:aws:securityhub:us-east-1::product/aws/securityhub/arn:aws:securityhub:us-east-1:123456789123:subscription/aws-foundational-security-best-practices/v/1.0.0/Config.1/finding/9ffec6a3-3ce8-4011-bf90-17dbe94bf1d3\"\n },\n \"Resources\": [\n {\n \"Type\": \"AwsAccount\",\n \"Id\": \"AWS::::Account:123456789123\",\n \"Partition\": \"aws\",\n \"Region\": \"us-east-1\"\n }\n ],\n \"Compliance\": {\n \"Status\": \"FAILED\"\n },\n \"WorkflowState\": \"NEW\",\n \"Workflow\": {\n \"Status\": \"NEW\"\n },\n \"RecordState\": \"ACTIVE\",\n \"FindingProviderFields\": {\n \"Severity\": {\n \"Label\": \"MEDIUM\",\n \"Original\": \"MEDIUM\"\n },\n \"Types\": [\n \"Software and Configuration Checks/Industry and Regulatory Standards/AWS-Foundational-Security-Best-Practices\"\n ]\n }\n }\n ]\n}", + "results": [ + { + "status": "failed", + "code_desc": "Resources: [Type: AwsAccount, Id: AWS::::Account:123456789123, Partition: aws, Region: us-east-1]", + "start_time": "2021-08-09T11:21:11.282Z" + } + ] + }, + { + "id": "S3.2", + "title": "AWS Foundational Security Best Practices v1.0.0: S3.2 S3 buckets should prohibit public read access", + "tags": { + "cci": [ + "CCI-000213", + "CCI-001368", + "CCI-001414", + "CCI-000225" + ], + "nist": [ + "AC-3", + "AC-4", + "AC-6", + "AC-21(b)", + "SC-7", + "SC-7(3)" + ] + }, + "impact": 0.5, + "desc": "This AWS control checks whether your S3 buckets allow public read access by evaluating the Block Public Access settings, the bucket policy, and the bucket access control list (ACL).", + "descriptions": [ + { + "data": "For directions on how to fix this issue, please consult the AWS Security Hub Foundational Security Best Practices documentation.\nhttps://docs.aws.amazon.com/console/securityhub/S3.2/remediation", + "label": "fix" + } + ], + "refs": [], + "source_location": {}, + "code": "{\n \"Findings\": [\n {\n \"SchemaVersion\": \"2018-10-08\",\n \"Id\": \"arn:aws:securityhub:us-east-1:123456789123:subscription/aws-foundational-security-best-practices/v/1.0.0/S3.2/finding/5fd36ec6-3f98-4d5b-a9cb-5f82e389a8e9\",\n \"ProductArn\": \"arn:aws:securityhub:us-east-1::product/aws/securityhub\",\n \"GeneratorId\": \"aws-foundational-security-best-practices/v/1.0.0/S3.2\",\n \"AwsAccountId\": \"123456789123\",\n \"Types\": [\n \"Effects/Data Exposure/AWS-Foundational-Security-Best-Practices\"\n ],\n \"FirstObservedAt\": \"2021-04-28T14:57:54.547Z\",\n \"LastObservedAt\": \"2021-07-02T16:02:48.476Z\",\n \"CreatedAt\": \"2021-04-28T14:57:54.547Z\",\n \"UpdatedAt\": \"2021-07-02T16:02:46.396Z\",\n \"Severity\": {\n \"Product\": 0,\n \"Label\": \"INFORMATIONAL\",\n \"Normalized\": 0,\n \"Original\": \"INFORMATIONAL\"\n },\n \"Title\": \"S3.2 S3 buckets should prohibit public read access\",\n \"Description\": \"This AWS control checks whether your S3 buckets allow public read access by evaluating the Block Public Access settings, the bucket policy, and the bucket access control list (ACL).\",\n \"Remediation\": {\n \"Recommendation\": {\n \"Text\": \"For directions on how to fix this issue, please consult the AWS Security Hub Foundational Security Best Practices documentation.\",\n \"Url\": \"https://docs.aws.amazon.com/console/securityhub/S3.2/remediation\"\n }\n },\n \"ProductFields\": {\n \"StandardsArn\": \"arn:aws:securityhub:::standards/aws-foundational-security-best-practices/v/1.0.0\",\n \"StandardsSubscriptionArn\": \"arn:aws:securityhub:us-east-1:123456789123:subscription/aws-foundational-security-best-practices/v/1.0.0\",\n \"ControlId\": \"S3.2\",\n \"RecommendationUrl\": \"https://docs.aws.amazon.com/console/securityhub/S3.2/remediation\",\n \"RelatedAWSResources:0/name\": \"securityhub-s3-bucket-public-read-prohibited-491148b1\",\n \"RelatedAWSResources:0/type\": \"AWS::Config::ConfigRule\",\n \"StandardsControlArn\": \"arn:aws:securityhub:us-east-1:123456789123:control/aws-foundational-security-best-practices/v/1.0.0/S3.2\",\n \"aws/securityhub/ProductName\": \"Security Hub\",\n \"aws/securityhub/CompanyName\": \"AWS\",\n \"Resources:0/Id\": \"arn:aws:s3:::example-bucket-123456789123-us-east-1\",\n \"aws/securityhub/FindingId\": \"arn:aws:securityhub:us-east-1::product/aws/securityhub/arn:aws:securityhub:us-east-1:123456789123:subscription/aws-foundational-security-best-practices/v/1.0.0/S3.2/finding/5fd36ec6-3f98-4d5b-a9cb-5f82e389a8e9\"\n },\n \"Resources\": [\n {\n \"Type\": \"AwsS3Bucket\",\n \"Id\": \"arn:aws:s3:::example-bucket-123456789123-us-east-1\",\n \"Partition\": \"aws\",\n \"Region\": \"us-east-1\",\n \"Details\": {\n \"AwsS3Bucket\": {\n \"OwnerId\": \"abe813ee284239446607ac88bf580a6f7348abec9053fd187e6234b58102e826\",\n \"CreatedAt\": \"2021-03-12T20:14:09.000Z\"\n }\n }\n }\n ],\n \"Compliance\": {\n \"Status\": \"PASSED\"\n },\n \"WorkflowState\": \"NEW\",\n \"Workflow\": {\n \"Status\": \"RESOLVED\"\n },\n \"RecordState\": \"ACTIVE\",\n \"FindingProviderFields\": {\n \"Severity\": {\n \"Label\": \"INFORMATIONAL\",\n \"Original\": \"INFORMATIONAL\"\n },\n \"Types\": [\n \"Effects/Data Exposure/AWS-Foundational-Security-Best-Practices\"\n ]\n }\n }\n ]\n}", + "results": [ + { + "status": "passed", + "code_desc": "Resources: [Type: AwsS3Bucket, Id: arn:aws:s3:::example-bucket-123456789123-us-east-1, Partition: aws, Region: us-east-1]", + "start_time": "2021-07-02T16:02:48.476Z" + } + ] + } + ], + "sha256": "7a54e62e4326166cd6eba7a73a9b887cec5d0eef872295f205ba7be251ec6d68" + } + ] +} \ No newline at end of file diff --git a/test/sample_data/asff/asff-cis_aws-foundations_benchmark_v1.2.0-hdf.json b/test/sample_data/asff/asff-cis_aws-foundations_benchmark_v1.2.0-hdf.json new file mode 100644 index 000000000..4481a896a --- /dev/null +++ b/test/sample_data/asff/asff-cis_aws-foundations_benchmark_v1.2.0-hdf.json @@ -0,0 +1,558 @@ +{ + "platform": { + "name": "Heimdall Tools", + "release": "2.6.29", + "target_id": "CIS AWS Foundations Benchmark v1.2.0" + }, + "version": "2.6.29", + "statistics": { + "duration": null + }, + "profiles": [ + { + "name": "AWS Security Finding Format", + "version": "", + "title": "ASFF Findings", + "maintainer": null, + "summary": "", + "license": null, + "copyright": null, + "copyright_email": null, + "supports": [], + "attributes": [], + "depends": [], + "groups": [], + "status": "loaded", + "controls": [ + { + "id": "1.1", + "title": "CIS AWS Foundations Benchmark v1.2.0: 1.1 Avoid the use of the "root" account", + "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], + "nist": [ + "SA-11", + "RA-5" + ] + }, + "impact": 0.3, + "desc": "The "root" account has unrestricted access to all resources in the AWS account. It is highly recommended that the use of this account be avoided.", + "descriptions": [ + { + "data": "For directions on how to fix this issue, please consult the AWS Security Hub CIS documentation.\nhttps://docs.aws.amazon.com/console/securityhub/standards-cis-1.1/remediation", + "label": "fix" + } + ], + "refs": [], + "source_location": {}, + "code": "{\n \"Findings\": [\n {\n \"SchemaVersion\": \"2018-10-08\",\n \"Id\": \"arn:aws:securityhub:us-east-1:123456789123:subscription/cis-aws-foundations-benchmark/v/1.2.0/1.1/finding/564b8d35-d697-475e-8a02-dfb23552dc24\",\n \"ProductArn\": \"arn:aws:securityhub:us-east-1::product/aws/securityhub\",\n \"ProductName\": \"Security Hub\",\n \"CompanyName\": \"AWS\",\n \"Region\": \"us-east-1\",\n \"GeneratorId\": \"arn:aws:securityhub:::ruleset/cis-aws-foundations-benchmark/v/1.2.0/rule/1.1\",\n \"AwsAccountId\": \"123456789123\",\n \"Types\": [\n \"Software and Configuration Checks/Industry and Regulatory Standards/CIS AWS Foundations Benchmark\"\n ],\n \"FirstObservedAt\": \"2021-07-23T23:39:05.607Z\",\n \"LastObservedAt\": \"2021-08-09T11:28:16.331Z\",\n \"CreatedAt\": \"2021-07-23T23:39:05.607Z\",\n \"UpdatedAt\": \"2021-08-09T11:28:13.288Z\",\n \"Severity\": {\n \"Product\": 30,\n \"Label\": \"LOW\",\n \"Normalized\": 30,\n \"Original\": \"LOW\"\n },\n \"Title\": \"1.1 Avoid the use of the \\\"root\\\" account\",\n \"Description\": \"The \\\"root\\\" account has unrestricted access to all resources in the AWS account. It is highly recommended that the use of this account be avoided.\",\n \"Remediation\": {\n \"Recommendation\": {\n \"Text\": \"For directions on how to fix this issue, please consult the AWS Security Hub CIS documentation.\",\n \"Url\": \"https://docs.aws.amazon.com/console/securityhub/standards-cis-1.1/remediation\"\n }\n },\n \"ProductFields\": {\n \"StandardsGuideArn\": \"arn:aws:securityhub:::ruleset/cis-aws-foundations-benchmark/v/1.2.0\",\n \"StandardsGuideSubscriptionArn\": \"arn:aws:securityhub:us-east-1:123456789123:subscription/cis-aws-foundations-benchmark/v/1.2.0\",\n \"RuleId\": \"1.1\",\n \"RecommendationUrl\": \"https://docs.aws.amazon.com/console/securityhub/standards-cis-1.1/remediation\",\n \"StandardsControlArn\": \"arn:aws:securityhub:us-east-1:123456789123:control/cis-aws-foundations-benchmark/v/1.2.0/1.1\",\n \"aws/securityhub/ProductName\": \"Security Hub\",\n \"aws/securityhub/CompanyName\": \"AWS\",\n \"aws/securityhub/annotation\": \"Multi region CloudTrail with the required configuration does not exist in the account\",\n \"Resources:0/Id\": \"arn:aws:iam::123456789123:root\",\n \"aws/securityhub/FindingId\": \"arn:aws:securityhub:us-east-1::product/aws/securityhub/arn:aws:securityhub:us-east-1:123456789123:subscription/cis-aws-foundations-benchmark/v/1.2.0/1.1/finding/564b8d35-d697-475e-8a02-dfb23552dc24\"\n },\n \"Resources\": [\n {\n \"Type\": \"AwsAccount\",\n \"Id\": \"AWS::::Account:123456789123\",\n \"Partition\": \"aws\",\n \"Region\": \"us-east-1\"\n }\n ],\n \"Compliance\": {\n \"Status\": \"FAILED\",\n \"StatusReasons\": [\n {\n \"ReasonCode\": \"CLOUDTRAIL_MULTI_REGION_NOT_PRESENT\",\n \"Description\": \"Multi region CloudTrail with the required configuration does not exist in the account\"\n }\n ]\n },\n \"WorkflowState\": \"NEW\",\n \"Workflow\": {\n \"Status\": \"NEW\"\n },\n \"RecordState\": \"ACTIVE\",\n \"FindingProviderFields\": {\n \"Severity\": {\n \"Label\": \"LOW\",\n \"Original\": \"LOW\"\n },\n \"Types\": [\n \"Software and Configuration Checks/Industry and Regulatory Standards/CIS AWS Foundations Benchmark\"\n ]\n }\n }\n ]\n}", + "results": [ + { + "status": "failed", + "code_desc": "Resources: [Type: AwsAccount, Id: AWS::::Account:123456789123, Partition: aws, Region: us-east-1]", + "start_time": "2021-08-09T11:28:16.331Z", + "message": "ReasonCode: CLOUDTRAIL_MULTI_REGION_NOT_PRESENT\nDescription: Multi region CloudTrail with the required configuration does not exist in the account" + } + ] + }, + { + "id": "2.5", + "title": "CIS AWS Foundations Benchmark v1.2.0: 2.5 Ensure AWS Config is enabled", + "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], + "nist": [ + "SA-11", + "RA-5" + ] + }, + "impact": 0.5, + "desc": "AWS Config is a web service that performs configuration management of supported AWS resources within your account and delivers log files to you. The recorded information includes the configuration item (AWS resource), relationships between configuration items (AWS resources), and any configuration changes between resources. It is recommended to enable AWS Config in all regions.", + "descriptions": [ + { + "data": "For directions on how to fix this issue, please consult the AWS Security Hub CIS documentation.\nhttps://docs.aws.amazon.com/console/securityhub/standards-cis-2.5/remediation", + "label": "fix" + } + ], + "refs": [], + "source_location": {}, + "code": "{\n \"Findings\": [\n {\n \"SchemaVersion\": \"2018-10-08\",\n \"Id\": \"arn:aws:securityhub:us-east-1:123456789123:subscription/cis-aws-foundations-benchmark/v/1.2.0/2.5/finding/fad62e7c-5402-4757-850c-3aadc8212c47\",\n \"ProductArn\": \"arn:aws:securityhub:us-east-1::product/aws/securityhub\",\n \"ProductName\": \"Security Hub\",\n \"CompanyName\": \"AWS\",\n \"Region\": \"us-east-1\",\n \"GeneratorId\": \"arn:aws:securityhub:::ruleset/cis-aws-foundations-benchmark/v/1.2.0/rule/2.5\",\n \"AwsAccountId\": \"123456789123\",\n \"Types\": [\n \"Software and Configuration Checks/Industry and Regulatory Standards/CIS AWS Foundations Benchmark\"\n ],\n \"FirstObservedAt\": \"2021-07-23T23:39:03.660Z\",\n \"LastObservedAt\": \"2021-08-09T11:28:15.499Z\",\n \"CreatedAt\": \"2021-07-23T23:39:03.660Z\",\n \"UpdatedAt\": \"2021-08-09T11:28:12.889Z\",\n \"Severity\": {\n \"Product\": 40,\n \"Label\": \"MEDIUM\",\n \"Normalized\": 40,\n \"Original\": \"MEDIUM\"\n },\n \"Title\": \"2.5 Ensure AWS Config is enabled\",\n \"Description\": \"AWS Config is a web service that performs configuration management of supported AWS resources within your account and delivers log files to you. The recorded information includes the configuration item (AWS resource), relationships between configuration items (AWS resources), and any configuration changes between resources. It is recommended to enable AWS Config in all regions.\",\n \"Remediation\": {\n \"Recommendation\": {\n \"Text\": \"For directions on how to fix this issue, please consult the AWS Security Hub CIS documentation.\",\n \"Url\": \"https://docs.aws.amazon.com/console/securityhub/standards-cis-2.5/remediation\"\n }\n },\n \"ProductFields\": {\n \"StandardsGuideArn\": \"arn:aws:securityhub:::ruleset/cis-aws-foundations-benchmark/v/1.2.0\",\n \"StandardsGuideSubscriptionArn\": \"arn:aws:securityhub:us-east-1:123456789123:subscription/cis-aws-foundations-benchmark/v/1.2.0\",\n \"RuleId\": \"2.5\",\n \"RecommendationUrl\": \"https://docs.aws.amazon.com/console/securityhub/standards-cis-2.5/remediation\",\n \"StandardsControlArn\": \"arn:aws:securityhub:us-east-1:123456789123:control/cis-aws-foundations-benchmark/v/1.2.0/2.5\",\n \"aws/securityhub/ProductName\": \"Security Hub\",\n \"aws/securityhub/CompanyName\": \"AWS\",\n \"Resources:0/Id\": \"arn:aws:iam::123456789123:root\",\n \"aws/securityhub/FindingId\": \"arn:aws:securityhub:us-east-1::product/aws/securityhub/arn:aws:securityhub:us-east-1:123456789123:subscription/cis-aws-foundations-benchmark/v/1.2.0/2.5/finding/fad62e7c-5402-4757-850c-3aadc8212c47\"\n },\n \"Resources\": [\n {\n \"Type\": \"AwsAccount\",\n \"Id\": \"AWS::::Account:123456789123\",\n \"Partition\": \"aws\",\n \"Region\": \"us-east-1\"\n }\n ],\n \"Compliance\": {\n \"Status\": \"FAILED\"\n },\n \"WorkflowState\": \"NEW\",\n \"Workflow\": {\n \"Status\": \"NEW\"\n },\n \"RecordState\": \"ACTIVE\",\n \"FindingProviderFields\": {\n \"Severity\": {\n \"Label\": \"MEDIUM\",\n \"Original\": \"MEDIUM\"\n },\n \"Types\": [\n \"Software and Configuration Checks/Industry and Regulatory Standards/CIS AWS Foundations Benchmark\"\n ]\n }\n }\n ]\n}", + "results": [ + { + "status": "failed", + "code_desc": "Resources: [Type: AwsAccount, Id: AWS::::Account:123456789123, Partition: aws, Region: us-east-1]", + "start_time": "2021-08-09T11:28:15.499Z" + } + ] + }, + { + "id": "3.9", + "title": "CIS AWS Foundations Benchmark v1.2.0: 3.9 Ensure a log metric filter and alarm exist for AWS Config configuration changes", + "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], + "nist": [ + "SA-11", + "RA-5" + ] + }, + "impact": 0.3, + "desc": "Real-time monitoring of API calls can be achieved by directing CloudTrail Logs to CloudWatch Logs and establishing corresponding metric filters and alarms. It is recommended that a metric filter and alarm be established for detecting changes to CloudTrail's configurations.", + "descriptions": [ + { + "data": "For directions on how to fix this issue, please consult the AWS Security Hub CIS documentation.\nhttps://docs.aws.amazon.com/console/securityhub/standards-cis-3.9/remediation", + "label": "fix" + } + ], + "refs": [], + "source_location": {}, + "code": "{\n \"Findings\": [\n {\n \"SchemaVersion\": \"2018-10-08\",\n \"Id\": \"arn:aws:securityhub:us-east-1:123456789123:subscription/cis-aws-foundations-benchmark/v/1.2.0/3.9/finding/a18960c3-863a-4bec-b083-ff0583d1a44f\",\n \"ProductArn\": \"arn:aws:securityhub:us-east-1::product/aws/securityhub\",\n \"ProductName\": \"Security Hub\",\n \"CompanyName\": \"AWS\",\n \"Region\": \"us-east-1\",\n \"GeneratorId\": \"arn:aws:securityhub:::ruleset/cis-aws-foundations-benchmark/v/1.2.0/rule/3.9\",\n \"AwsAccountId\": \"123456789123\",\n \"Types\": [\n \"Software and Configuration Checks/Industry and Regulatory Standards/CIS AWS Foundations Benchmark\"\n ],\n \"FirstObservedAt\": \"2021-07-23T23:39:00.932Z\",\n \"LastObservedAt\": \"2021-08-09T11:28:12.508Z\",\n \"CreatedAt\": \"2021-07-23T23:39:00.932Z\",\n \"UpdatedAt\": \"2021-08-09T11:28:08.812Z\",\n \"Severity\": {\n \"Product\": 30,\n \"Label\": \"LOW\",\n \"Normalized\": 30,\n \"Original\": \"LOW\"\n },\n \"Title\": \"3.9 Ensure a log metric filter and alarm exist for AWS Config configuration changes\",\n \"Description\": \"Real-time monitoring of API calls can be achieved by directing CloudTrail Logs to CloudWatch Logs and establishing corresponding metric filters and alarms. It is recommended that a metric filter and alarm be established for detecting changes to CloudTrail's configurations.\",\n \"Remediation\": {\n \"Recommendation\": {\n \"Text\": \"For directions on how to fix this issue, please consult the AWS Security Hub CIS documentation.\",\n \"Url\": \"https://docs.aws.amazon.com/console/securityhub/standards-cis-3.9/remediation\"\n }\n },\n \"ProductFields\": {\n \"StandardsGuideArn\": \"arn:aws:securityhub:::ruleset/cis-aws-foundations-benchmark/v/1.2.0\",\n \"StandardsGuideSubscriptionArn\": \"arn:aws:securityhub:us-east-1:123456789123:subscription/cis-aws-foundations-benchmark/v/1.2.0\",\n \"RuleId\": \"3.9\",\n \"RecommendationUrl\": \"https://docs.aws.amazon.com/console/securityhub/standards-cis-3.9/remediation\",\n \"StandardsControlArn\": \"arn:aws:securityhub:us-east-1:123456789123:control/cis-aws-foundations-benchmark/v/1.2.0/3.9\",\n \"aws/securityhub/ProductName\": \"Security Hub\",\n \"aws/securityhub/CompanyName\": \"AWS\",\n \"aws/securityhub/annotation\": \"Multi region CloudTrail with the required configuration does not exist in the account\",\n \"Resources:0/Id\": \"arn:aws:iam::123456789123:root\",\n \"aws/securityhub/FindingId\": \"arn:aws:securityhub:us-east-1::product/aws/securityhub/arn:aws:securityhub:us-east-1:123456789123:subscription/cis-aws-foundations-benchmark/v/1.2.0/3.9/finding/a18960c3-863a-4bec-b083-ff0583d1a44f\"\n },\n \"Resources\": [\n {\n \"Type\": \"AwsAccount\",\n \"Id\": \"AWS::::Account:123456789123\",\n \"Partition\": \"aws\",\n \"Region\": \"us-east-1\"\n }\n ],\n \"Compliance\": {\n \"Status\": \"FAILED\",\n \"StatusReasons\": [\n {\n \"ReasonCode\": \"CLOUDTRAIL_MULTI_REGION_NOT_PRESENT\",\n \"Description\": \"Multi region CloudTrail with the required configuration does not exist in the account\"\n }\n ]\n },\n \"WorkflowState\": \"NEW\",\n \"Workflow\": {\n \"Status\": \"NEW\"\n },\n \"RecordState\": \"ACTIVE\",\n \"FindingProviderFields\": {\n \"Severity\": {\n \"Label\": \"LOW\",\n \"Original\": \"LOW\"\n },\n \"Types\": [\n \"Software and Configuration Checks/Industry and Regulatory Standards/CIS AWS Foundations Benchmark\"\n ]\n }\n }\n ]\n}", + "results": [ + { + "status": "failed", + "code_desc": "Resources: [Type: AwsAccount, Id: AWS::::Account:123456789123, Partition: aws, Region: us-east-1]", + "start_time": "2021-08-09T11:28:12.508Z", + "message": "ReasonCode: CLOUDTRAIL_MULTI_REGION_NOT_PRESENT\nDescription: Multi region CloudTrail with the required configuration does not exist in the account" + } + ] + }, + { + "id": "3.8", + "title": "CIS AWS Foundations Benchmark v1.2.0: 3.8 Ensure a log metric filter and alarm exist for S3 bucket policy changes", + "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], + "nist": [ + "SA-11", + "RA-5" + ] + }, + "impact": 0.3, + "desc": "Real-time monitoring of API calls can be achieved by directing CloudTrail Logs to CloudWatch Logs and establishing corresponding metric filters and alarms. It is recommended that a metric filter and alarm be established for changes to S3 bucket policies.", + "descriptions": [ + { + "data": "For directions on how to fix this issue, please consult the AWS Security Hub CIS documentation.\nhttps://docs.aws.amazon.com/console/securityhub/standards-cis-3.8/remediation", + "label": "fix" + } + ], + "refs": [], + "source_location": {}, + "code": "{\n \"Findings\": [\n {\n \"SchemaVersion\": \"2018-10-08\",\n \"Id\": \"arn:aws:securityhub:us-east-1:123456789123:subscription/cis-aws-foundations-benchmark/v/1.2.0/3.8/finding/2366f847-6ae6-437b-a873-b5851950f495\",\n \"ProductArn\": \"arn:aws:securityhub:us-east-1::product/aws/securityhub\",\n \"ProductName\": \"Security Hub\",\n \"CompanyName\": \"AWS\",\n \"Region\": \"us-east-1\",\n \"GeneratorId\": \"arn:aws:securityhub:::ruleset/cis-aws-foundations-benchmark/v/1.2.0/rule/3.8\",\n \"AwsAccountId\": \"123456789123\",\n \"Types\": [\n \"Software and Configuration Checks/Industry and Regulatory Standards/CIS AWS Foundations Benchmark\"\n ],\n \"FirstObservedAt\": \"2021-07-23T23:39:00.932Z\",\n \"LastObservedAt\": \"2021-08-09T11:28:12.460Z\",\n \"CreatedAt\": \"2021-07-23T23:39:00.932Z\",\n \"UpdatedAt\": \"2021-08-09T11:28:08.812Z\",\n \"Severity\": {\n \"Product\": 30,\n \"Label\": \"LOW\",\n \"Normalized\": 30,\n \"Original\": \"LOW\"\n },\n \"Title\": \"3.8 Ensure a log metric filter and alarm exist for S3 bucket policy changes\",\n \"Description\": \"Real-time monitoring of API calls can be achieved by directing CloudTrail Logs to CloudWatch Logs and establishing corresponding metric filters and alarms. It is recommended that a metric filter and alarm be established for changes to S3 bucket policies.\",\n \"Remediation\": {\n \"Recommendation\": {\n \"Text\": \"For directions on how to fix this issue, please consult the AWS Security Hub CIS documentation.\",\n \"Url\": \"https://docs.aws.amazon.com/console/securityhub/standards-cis-3.8/remediation\"\n }\n },\n \"ProductFields\": {\n \"StandardsGuideArn\": \"arn:aws:securityhub:::ruleset/cis-aws-foundations-benchmark/v/1.2.0\",\n \"StandardsGuideSubscriptionArn\": \"arn:aws:securityhub:us-east-1:123456789123:subscription/cis-aws-foundations-benchmark/v/1.2.0\",\n \"RuleId\": \"3.8\",\n \"RecommendationUrl\": \"https://docs.aws.amazon.com/console/securityhub/standards-cis-3.8/remediation\",\n \"StandardsControlArn\": \"arn:aws:securityhub:us-east-1:123456789123:control/cis-aws-foundations-benchmark/v/1.2.0/3.8\",\n \"aws/securityhub/ProductName\": \"Security Hub\",\n \"aws/securityhub/CompanyName\": \"AWS\",\n \"aws/securityhub/annotation\": \"Multi region CloudTrail with the required configuration does not exist in the account\",\n \"Resources:0/Id\": \"arn:aws:iam::123456789123:root\",\n \"aws/securityhub/FindingId\": \"arn:aws:securityhub:us-east-1::product/aws/securityhub/arn:aws:securityhub:us-east-1:123456789123:subscription/cis-aws-foundations-benchmark/v/1.2.0/3.8/finding/2366f847-6ae6-437b-a873-b5851950f495\"\n },\n \"Resources\": [\n {\n \"Type\": \"AwsAccount\",\n \"Id\": \"AWS::::Account:123456789123\",\n \"Partition\": \"aws\",\n \"Region\": \"us-east-1\"\n }\n ],\n \"Compliance\": {\n \"Status\": \"FAILED\",\n \"StatusReasons\": [\n {\n \"ReasonCode\": \"CLOUDTRAIL_MULTI_REGION_NOT_PRESENT\",\n \"Description\": \"Multi region CloudTrail with the required configuration does not exist in the account\"\n }\n ]\n },\n \"WorkflowState\": \"NEW\",\n \"Workflow\": {\n \"Status\": \"NEW\"\n },\n \"RecordState\": \"ACTIVE\",\n \"FindingProviderFields\": {\n \"Severity\": {\n \"Label\": \"LOW\",\n \"Original\": \"LOW\"\n },\n \"Types\": [\n \"Software and Configuration Checks/Industry and Regulatory Standards/CIS AWS Foundations Benchmark\"\n ]\n }\n }\n ]\n}", + "results": [ + { + "status": "failed", + "code_desc": "Resources: [Type: AwsAccount, Id: AWS::::Account:123456789123, Partition: aws, Region: us-east-1]", + "start_time": "2021-08-09T11:28:12.460Z", + "message": "ReasonCode: CLOUDTRAIL_MULTI_REGION_NOT_PRESENT\nDescription: Multi region CloudTrail with the required configuration does not exist in the account" + } + ] + }, + { + "id": "3.7", + "title": "CIS AWS Foundations Benchmark v1.2.0: 3.7 Ensure a log metric filter and alarm exist for disabling or scheduled deletion of customer created CMKs", + "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], + "nist": [ + "SA-11", + "RA-5" + ] + }, + "impact": 0.3, + "desc": "Real-time monitoring of API calls can be achieved by directing CloudTrail Logs to CloudWatch Logs and establishing corresponding metric filters and alarms. It is recommended that a metric filter and alarm be established for customer created CMKs which have changed state to disabled or scheduled deletion.", + "descriptions": [ + { + "data": "For directions on how to fix this issue, please consult the AWS Security Hub CIS documentation.\nhttps://docs.aws.amazon.com/console/securityhub/standards-cis-3.7/remediation", + "label": "fix" + } + ], + "refs": [], + "source_location": {}, + "code": "{\n \"Findings\": [\n {\n \"SchemaVersion\": \"2018-10-08\",\n \"Id\": \"arn:aws:securityhub:us-east-1:123456789123:subscription/cis-aws-foundations-benchmark/v/1.2.0/3.7/finding/5893e3d9-73ba-468b-a5ae-a47d5167687d\",\n \"ProductArn\": \"arn:aws:securityhub:us-east-1::product/aws/securityhub\",\n \"ProductName\": \"Security Hub\",\n \"CompanyName\": \"AWS\",\n \"Region\": \"us-east-1\",\n \"GeneratorId\": \"arn:aws:securityhub:::ruleset/cis-aws-foundations-benchmark/v/1.2.0/rule/3.7\",\n \"AwsAccountId\": \"123456789123\",\n \"Types\": [\n \"Software and Configuration Checks/Industry and Regulatory Standards/CIS AWS Foundations Benchmark\"\n ],\n \"FirstObservedAt\": \"2021-07-23T23:39:00.932Z\",\n \"LastObservedAt\": \"2021-08-09T11:28:10.511Z\",\n \"CreatedAt\": \"2021-07-23T23:39:00.932Z\",\n \"UpdatedAt\": \"2021-08-09T11:28:08.812Z\",\n \"Severity\": {\n \"Product\": 30,\n \"Label\": \"LOW\",\n \"Normalized\": 30,\n \"Original\": \"LOW\"\n },\n \"Title\": \"3.7 Ensure a log metric filter and alarm exist for disabling or scheduled deletion of customer created CMKs\",\n \"Description\": \"Real-time monitoring of API calls can be achieved by directing CloudTrail Logs to CloudWatch Logs and establishing corresponding metric filters and alarms. It is recommended that a metric filter and alarm be established for customer created CMKs which have changed state to disabled or scheduled deletion.\",\n \"Remediation\": {\n \"Recommendation\": {\n \"Text\": \"For directions on how to fix this issue, please consult the AWS Security Hub CIS documentation.\",\n \"Url\": \"https://docs.aws.amazon.com/console/securityhub/standards-cis-3.7/remediation\"\n }\n },\n \"ProductFields\": {\n \"StandardsGuideArn\": \"arn:aws:securityhub:::ruleset/cis-aws-foundations-benchmark/v/1.2.0\",\n \"StandardsGuideSubscriptionArn\": \"arn:aws:securityhub:us-east-1:123456789123:subscription/cis-aws-foundations-benchmark/v/1.2.0\",\n \"RuleId\": \"3.7\",\n \"RecommendationUrl\": \"https://docs.aws.amazon.com/console/securityhub/standards-cis-3.7/remediation\",\n \"StandardsControlArn\": \"arn:aws:securityhub:us-east-1:123456789123:control/cis-aws-foundations-benchmark/v/1.2.0/3.7\",\n \"aws/securityhub/ProductName\": \"Security Hub\",\n \"aws/securityhub/CompanyName\": \"AWS\",\n \"aws/securityhub/annotation\": \"Multi region CloudTrail with the required configuration does not exist in the account\",\n \"Resources:0/Id\": \"arn:aws:iam::123456789123:root\",\n \"aws/securityhub/FindingId\": \"arn:aws:securityhub:us-east-1::product/aws/securityhub/arn:aws:securityhub:us-east-1:123456789123:subscription/cis-aws-foundations-benchmark/v/1.2.0/3.7/finding/5893e3d9-73ba-468b-a5ae-a47d5167687d\"\n },\n \"Resources\": [\n {\n \"Type\": \"AwsAccount\",\n \"Id\": \"AWS::::Account:123456789123\",\n \"Partition\": \"aws\",\n \"Region\": \"us-east-1\"\n }\n ],\n \"Compliance\": {\n \"Status\": \"FAILED\",\n \"StatusReasons\": [\n {\n \"ReasonCode\": \"CLOUDTRAIL_MULTI_REGION_NOT_PRESENT\",\n \"Description\": \"Multi region CloudTrail with the required configuration does not exist in the account\"\n }\n ]\n },\n \"WorkflowState\": \"NEW\",\n \"Workflow\": {\n \"Status\": \"NEW\"\n },\n \"RecordState\": \"ACTIVE\",\n \"FindingProviderFields\": {\n \"Severity\": {\n \"Label\": \"LOW\",\n \"Original\": \"LOW\"\n },\n \"Types\": [\n \"Software and Configuration Checks/Industry and Regulatory Standards/CIS AWS Foundations Benchmark\"\n ]\n }\n }\n ]\n}", + "results": [ + { + "status": "failed", + "code_desc": "Resources: [Type: AwsAccount, Id: AWS::::Account:123456789123, Partition: aws, Region: us-east-1]", + "start_time": "2021-08-09T11:28:10.511Z", + "message": "ReasonCode: CLOUDTRAIL_MULTI_REGION_NOT_PRESENT\nDescription: Multi region CloudTrail with the required configuration does not exist in the account" + } + ] + }, + { + "id": "3.6", + "title": "CIS AWS Foundations Benchmark v1.2.0: 3.6 Ensure a log metric filter and alarm exist for AWS Management Console authentication failures", + "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], + "nist": [ + "SA-11", + "RA-5" + ] + }, + "impact": 0.3, + "desc": "Real-time monitoring of API calls can be achieved by directing CloudTrail Logs to CloudWatch Logs and establishing corresponding metric filters and alarms. It is recommended that a metric filter and alarm be established for failed console authentication attempts.", + "descriptions": [ + { + "data": "For directions on how to fix this issue, please consult the AWS Security Hub CIS documentation.\nhttps://docs.aws.amazon.com/console/securityhub/standards-cis-3.6/remediation", + "label": "fix" + } + ], + "refs": [], + "source_location": {}, + "code": "{\n \"Findings\": [\n {\n \"SchemaVersion\": \"2018-10-08\",\n \"Id\": \"arn:aws:securityhub:us-east-1:123456789123:subscription/cis-aws-foundations-benchmark/v/1.2.0/3.6/finding/0b589f7e-cf16-4518-a41a-f37ef89dc8f8\",\n \"ProductArn\": \"arn:aws:securityhub:us-east-1::product/aws/securityhub\",\n \"ProductName\": \"Security Hub\",\n \"CompanyName\": \"AWS\",\n \"Region\": \"us-east-1\",\n \"GeneratorId\": \"arn:aws:securityhub:::ruleset/cis-aws-foundations-benchmark/v/1.2.0/rule/3.6\",\n \"AwsAccountId\": \"123456789123\",\n \"Types\": [\n \"Software and Configuration Checks/Industry and Regulatory Standards/CIS AWS Foundations Benchmark\"\n ],\n \"FirstObservedAt\": \"2021-07-23T23:39:00.932Z\",\n \"LastObservedAt\": \"2021-08-09T11:28:10.542Z\",\n \"CreatedAt\": \"2021-07-23T23:39:00.932Z\",\n \"UpdatedAt\": \"2021-08-09T11:28:08.812Z\",\n \"Severity\": {\n \"Product\": 30,\n \"Label\": \"LOW\",\n \"Normalized\": 30,\n \"Original\": \"LOW\"\n },\n \"Title\": \"3.6 Ensure a log metric filter and alarm exist for AWS Management Console authentication failures\",\n \"Description\": \"Real-time monitoring of API calls can be achieved by directing CloudTrail Logs to CloudWatch Logs and establishing corresponding metric filters and alarms. It is recommended that a metric filter and alarm be established for failed console authentication attempts.\",\n \"Remediation\": {\n \"Recommendation\": {\n \"Text\": \"For directions on how to fix this issue, please consult the AWS Security Hub CIS documentation.\",\n \"Url\": \"https://docs.aws.amazon.com/console/securityhub/standards-cis-3.6/remediation\"\n }\n },\n \"ProductFields\": {\n \"StandardsGuideArn\": \"arn:aws:securityhub:::ruleset/cis-aws-foundations-benchmark/v/1.2.0\",\n \"StandardsGuideSubscriptionArn\": \"arn:aws:securityhub:us-east-1:123456789123:subscription/cis-aws-foundations-benchmark/v/1.2.0\",\n \"RuleId\": \"3.6\",\n \"RecommendationUrl\": \"https://docs.aws.amazon.com/console/securityhub/standards-cis-3.6/remediation\",\n \"StandardsControlArn\": \"arn:aws:securityhub:us-east-1:123456789123:control/cis-aws-foundations-benchmark/v/1.2.0/3.6\",\n \"aws/securityhub/ProductName\": \"Security Hub\",\n \"aws/securityhub/CompanyName\": \"AWS\",\n \"aws/securityhub/annotation\": \"Multi region CloudTrail with the required configuration does not exist in the account\",\n \"Resources:0/Id\": \"arn:aws:iam::123456789123:root\",\n \"aws/securityhub/FindingId\": \"arn:aws:securityhub:us-east-1::product/aws/securityhub/arn:aws:securityhub:us-east-1:123456789123:subscription/cis-aws-foundations-benchmark/v/1.2.0/3.6/finding/0b589f7e-cf16-4518-a41a-f37ef89dc8f8\"\n },\n \"Resources\": [\n {\n \"Type\": \"AwsAccount\",\n \"Id\": \"AWS::::Account:123456789123\",\n \"Partition\": \"aws\",\n \"Region\": \"us-east-1\"\n }\n ],\n \"Compliance\": {\n \"Status\": \"FAILED\",\n \"StatusReasons\": [\n {\n \"ReasonCode\": \"CLOUDTRAIL_MULTI_REGION_NOT_PRESENT\",\n \"Description\": \"Multi region CloudTrail with the required configuration does not exist in the account\"\n }\n ]\n },\n \"WorkflowState\": \"NEW\",\n \"Workflow\": {\n \"Status\": \"NEW\"\n },\n \"RecordState\": \"ACTIVE\",\n \"FindingProviderFields\": {\n \"Severity\": {\n \"Label\": \"LOW\",\n \"Original\": \"LOW\"\n },\n \"Types\": [\n \"Software and Configuration Checks/Industry and Regulatory Standards/CIS AWS Foundations Benchmark\"\n ]\n }\n }\n ]\n}", + "results": [ + { + "status": "failed", + "code_desc": "Resources: [Type: AwsAccount, Id: AWS::::Account:123456789123, Partition: aws, Region: us-east-1]", + "start_time": "2021-08-09T11:28:10.542Z", + "message": "ReasonCode: CLOUDTRAIL_MULTI_REGION_NOT_PRESENT\nDescription: Multi region CloudTrail with the required configuration does not exist in the account" + } + ] + }, + { + "id": "3.5", + "title": "CIS AWS Foundations Benchmark v1.2.0: 3.5 Ensure a log metric filter and alarm exist for CloudTrail configuration changes", + "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], + "nist": [ + "SA-11", + "RA-5" + ] + }, + "impact": 0.3, + "desc": "Real-time monitoring of API calls can be achieved by directing CloudTrail Logs to CloudWatch Logs and establishing corresponding metric filters and alarms. It is recommended that a metric filter and alarm be established for detecting changes to CloudTrail's configurations.", + "descriptions": [ + { + "data": "For directions on how to fix this issue, please consult the AWS Security Hub CIS documentation.\nhttps://docs.aws.amazon.com/console/securityhub/standards-cis-3.5/remediation", + "label": "fix" + } + ], + "refs": [], + "source_location": {}, + "code": "{\n \"Findings\": [\n {\n \"SchemaVersion\": \"2018-10-08\",\n \"Id\": \"arn:aws:securityhub:us-east-1:123456789123:subscription/cis-aws-foundations-benchmark/v/1.2.0/3.5/finding/62ce4a90-73c1-484b-8170-588f124e1fc2\",\n \"ProductArn\": \"arn:aws:securityhub:us-east-1::product/aws/securityhub\",\n \"ProductName\": \"Security Hub\",\n \"CompanyName\": \"AWS\",\n \"Region\": \"us-east-1\",\n \"GeneratorId\": \"arn:aws:securityhub:::ruleset/cis-aws-foundations-benchmark/v/1.2.0/rule/3.5\",\n \"AwsAccountId\": \"123456789123\",\n \"Types\": [\n \"Software and Configuration Checks/Industry and Regulatory Standards/CIS AWS Foundations Benchmark\"\n ],\n \"FirstObservedAt\": \"2021-07-23T23:39:00.932Z\",\n \"LastObservedAt\": \"2021-08-09T11:28:10.630Z\",\n \"CreatedAt\": \"2021-07-23T23:39:00.932Z\",\n \"UpdatedAt\": \"2021-08-09T11:28:08.812Z\",\n \"Severity\": {\n \"Product\": 30,\n \"Label\": \"LOW\",\n \"Normalized\": 30,\n \"Original\": \"LOW\"\n },\n \"Title\": \"3.5 Ensure a log metric filter and alarm exist for CloudTrail configuration changes\",\n \"Description\": \"Real-time monitoring of API calls can be achieved by directing CloudTrail Logs to CloudWatch Logs and establishing corresponding metric filters and alarms. It is recommended that a metric filter and alarm be established for detecting changes to CloudTrail's configurations.\",\n \"Remediation\": {\n \"Recommendation\": {\n \"Text\": \"For directions on how to fix this issue, please consult the AWS Security Hub CIS documentation.\",\n \"Url\": \"https://docs.aws.amazon.com/console/securityhub/standards-cis-3.5/remediation\"\n }\n },\n \"ProductFields\": {\n \"StandardsGuideArn\": \"arn:aws:securityhub:::ruleset/cis-aws-foundations-benchmark/v/1.2.0\",\n \"StandardsGuideSubscriptionArn\": \"arn:aws:securityhub:us-east-1:123456789123:subscription/cis-aws-foundations-benchmark/v/1.2.0\",\n \"RuleId\": \"3.5\",\n \"RecommendationUrl\": \"https://docs.aws.amazon.com/console/securityhub/standards-cis-3.5/remediation\",\n \"StandardsControlArn\": \"arn:aws:securityhub:us-east-1:123456789123:control/cis-aws-foundations-benchmark/v/1.2.0/3.5\",\n \"aws/securityhub/ProductName\": \"Security Hub\",\n \"aws/securityhub/CompanyName\": \"AWS\",\n \"aws/securityhub/annotation\": \"Multi region CloudTrail with the required configuration does not exist in the account\",\n \"Resources:0/Id\": \"arn:aws:iam::123456789123:root\",\n \"aws/securityhub/FindingId\": \"arn:aws:securityhub:us-east-1::product/aws/securityhub/arn:aws:securityhub:us-east-1:123456789123:subscription/cis-aws-foundations-benchmark/v/1.2.0/3.5/finding/62ce4a90-73c1-484b-8170-588f124e1fc2\"\n },\n \"Resources\": [\n {\n \"Type\": \"AwsAccount\",\n \"Id\": \"AWS::::Account:123456789123\",\n \"Partition\": \"aws\",\n \"Region\": \"us-east-1\"\n }\n ],\n \"Compliance\": {\n \"Status\": \"FAILED\",\n \"StatusReasons\": [\n {\n \"ReasonCode\": \"CLOUDTRAIL_MULTI_REGION_NOT_PRESENT\",\n \"Description\": \"Multi region CloudTrail with the required configuration does not exist in the account\"\n }\n ]\n },\n \"WorkflowState\": \"NEW\",\n \"Workflow\": {\n \"Status\": \"NEW\"\n },\n \"RecordState\": \"ACTIVE\",\n \"FindingProviderFields\": {\n \"Severity\": {\n \"Label\": \"LOW\",\n \"Original\": \"LOW\"\n },\n \"Types\": [\n \"Software and Configuration Checks/Industry and Regulatory Standards/CIS AWS Foundations Benchmark\"\n ]\n }\n }\n ]\n}", + "results": [ + { + "status": "failed", + "code_desc": "Resources: [Type: AwsAccount, Id: AWS::::Account:123456789123, Partition: aws, Region: us-east-1]", + "start_time": "2021-08-09T11:28:10.630Z", + "message": "ReasonCode: CLOUDTRAIL_MULTI_REGION_NOT_PRESENT\nDescription: Multi region CloudTrail with the required configuration does not exist in the account" + } + ] + }, + { + "id": "3.4", + "title": "CIS AWS Foundations Benchmark v1.2.0: 3.4 Ensure a log metric filter and alarm exist for IAM policy changes", + "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], + "nist": [ + "SA-11", + "RA-5" + ] + }, + "impact": 0.3, + "desc": "Real-time monitoring of API calls can be achieved by directing CloudTrail Logs to CloudWatch Logs and establishing corresponding metric filters and alarms. It is recommended that a metric filter and alarm be established changes made to Identity and Access Management (IAM) policies.", + "descriptions": [ + { + "data": "For directions on how to fix this issue, please consult the AWS Security Hub CIS documentation.\nhttps://docs.aws.amazon.com/console/securityhub/standards-cis-3.4/remediation", + "label": "fix" + } + ], + "refs": [], + "source_location": {}, + "code": "{\n \"Findings\": [\n {\n \"SchemaVersion\": \"2018-10-08\",\n \"Id\": \"arn:aws:securityhub:us-east-1:123456789123:subscription/cis-aws-foundations-benchmark/v/1.2.0/3.4/finding/4ec7fd2f-2e44-4225-ae4c-f01384543946\",\n \"ProductArn\": \"arn:aws:securityhub:us-east-1::product/aws/securityhub\",\n \"ProductName\": \"Security Hub\",\n \"CompanyName\": \"AWS\",\n \"Region\": \"us-east-1\",\n \"GeneratorId\": \"arn:aws:securityhub:::ruleset/cis-aws-foundations-benchmark/v/1.2.0/rule/3.4\",\n \"AwsAccountId\": \"123456789123\",\n \"Types\": [\n \"Software and Configuration Checks/Industry and Regulatory Standards/CIS AWS Foundations Benchmark\"\n ],\n \"FirstObservedAt\": \"2021-07-23T23:39:00.932Z\",\n \"LastObservedAt\": \"2021-08-09T11:28:11.788Z\",\n \"CreatedAt\": \"2021-07-23T23:39:00.932Z\",\n \"UpdatedAt\": \"2021-08-09T11:28:08.812Z\",\n \"Severity\": {\n \"Product\": 30,\n \"Label\": \"LOW\",\n \"Normalized\": 30,\n \"Original\": \"LOW\"\n },\n \"Title\": \"3.4 Ensure a log metric filter and alarm exist for IAM policy changes\",\n \"Description\": \"Real-time monitoring of API calls can be achieved by directing CloudTrail Logs to CloudWatch Logs and establishing corresponding metric filters and alarms. It is recommended that a metric filter and alarm be established changes made to Identity and Access Management (IAM) policies.\",\n \"Remediation\": {\n \"Recommendation\": {\n \"Text\": \"For directions on how to fix this issue, please consult the AWS Security Hub CIS documentation.\",\n \"Url\": \"https://docs.aws.amazon.com/console/securityhub/standards-cis-3.4/remediation\"\n }\n },\n \"ProductFields\": {\n \"StandardsGuideArn\": \"arn:aws:securityhub:::ruleset/cis-aws-foundations-benchmark/v/1.2.0\",\n \"StandardsGuideSubscriptionArn\": \"arn:aws:securityhub:us-east-1:123456789123:subscription/cis-aws-foundations-benchmark/v/1.2.0\",\n \"RuleId\": \"3.4\",\n \"RecommendationUrl\": \"https://docs.aws.amazon.com/console/securityhub/standards-cis-3.4/remediation\",\n \"StandardsControlArn\": \"arn:aws:securityhub:us-east-1:123456789123:control/cis-aws-foundations-benchmark/v/1.2.0/3.4\",\n \"aws/securityhub/ProductName\": \"Security Hub\",\n \"aws/securityhub/CompanyName\": \"AWS\",\n \"aws/securityhub/annotation\": \"Multi region CloudTrail with the required configuration does not exist in the account\",\n \"Resources:0/Id\": \"arn:aws:iam::123456789123:root\",\n \"aws/securityhub/FindingId\": \"arn:aws:securityhub:us-east-1::product/aws/securityhub/arn:aws:securityhub:us-east-1:123456789123:subscription/cis-aws-foundations-benchmark/v/1.2.0/3.4/finding/4ec7fd2f-2e44-4225-ae4c-f01384543946\"\n },\n \"Resources\": [\n {\n \"Type\": \"AwsAccount\",\n \"Id\": \"AWS::::Account:123456789123\",\n \"Partition\": \"aws\",\n \"Region\": \"us-east-1\"\n }\n ],\n \"Compliance\": {\n \"Status\": \"FAILED\",\n \"StatusReasons\": [\n {\n \"ReasonCode\": \"CLOUDTRAIL_MULTI_REGION_NOT_PRESENT\",\n \"Description\": \"Multi region CloudTrail with the required configuration does not exist in the account\"\n }\n ]\n },\n \"WorkflowState\": \"NEW\",\n \"Workflow\": {\n \"Status\": \"NEW\"\n },\n \"RecordState\": \"ACTIVE\",\n \"FindingProviderFields\": {\n \"Severity\": {\n \"Label\": \"LOW\",\n \"Original\": \"LOW\"\n },\n \"Types\": [\n \"Software and Configuration Checks/Industry and Regulatory Standards/CIS AWS Foundations Benchmark\"\n ]\n }\n }\n ]\n}", + "results": [ + { + "status": "failed", + "code_desc": "Resources: [Type: AwsAccount, Id: AWS::::Account:123456789123, Partition: aws, Region: us-east-1]", + "start_time": "2021-08-09T11:28:11.788Z", + "message": "ReasonCode: CLOUDTRAIL_MULTI_REGION_NOT_PRESENT\nDescription: Multi region CloudTrail with the required configuration does not exist in the account" + } + ] + }, + { + "id": "3.3", + "title": "CIS AWS Foundations Benchmark v1.2.0: 3.3 Ensure a log metric filter and alarm exist for usage of "root" account", + "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], + "nist": [ + "SA-11", + "RA-5" + ] + }, + "impact": 0.3, + "desc": "Real-time monitoring of API calls can be achieved by directing CloudTrail Logs to CloudWatch Logs and establishing corresponding metric filters and alarms. It is recommended that a metric filter and alarm be established for root login attempts.", + "descriptions": [ + { + "data": "For directions on how to fix this issue, please consult the AWS Security Hub CIS documentation.\nhttps://docs.aws.amazon.com/console/securityhub/standards-cis-3.3/remediation", + "label": "fix" + } + ], + "refs": [], + "source_location": {}, + "code": "{\n \"Findings\": [\n {\n \"SchemaVersion\": \"2018-10-08\",\n \"Id\": \"arn:aws:securityhub:us-east-1:123456789123:subscription/cis-aws-foundations-benchmark/v/1.2.0/3.3/finding/7e616501-7e4f-43b1-8092-610513f73baa\",\n \"ProductArn\": \"arn:aws:securityhub:us-east-1::product/aws/securityhub\",\n \"ProductName\": \"Security Hub\",\n \"CompanyName\": \"AWS\",\n \"Region\": \"us-east-1\",\n \"GeneratorId\": \"arn:aws:securityhub:::ruleset/cis-aws-foundations-benchmark/v/1.2.0/rule/3.3\",\n \"AwsAccountId\": \"123456789123\",\n \"Types\": [\n \"Software and Configuration Checks/Industry and Regulatory Standards/CIS AWS Foundations Benchmark\"\n ],\n \"FirstObservedAt\": \"2021-07-23T23:39:00.932Z\",\n \"LastObservedAt\": \"2021-08-09T11:28:09.830Z\",\n \"CreatedAt\": \"2021-07-23T23:39:00.932Z\",\n \"UpdatedAt\": \"2021-08-09T11:28:08.812Z\",\n \"Severity\": {\n \"Product\": 30,\n \"Label\": \"LOW\",\n \"Normalized\": 30,\n \"Original\": \"LOW\"\n },\n \"Title\": \"3.3 Ensure a log metric filter and alarm exist for usage of \\\"root\\\" account\",\n \"Description\": \"Real-time monitoring of API calls can be achieved by directing CloudTrail Logs to CloudWatch Logs and establishing corresponding metric filters and alarms. It is recommended that a metric filter and alarm be established for root login attempts.\",\n \"Remediation\": {\n \"Recommendation\": {\n \"Text\": \"For directions on how to fix this issue, please consult the AWS Security Hub CIS documentation.\",\n \"Url\": \"https://docs.aws.amazon.com/console/securityhub/standards-cis-3.3/remediation\"\n }\n },\n \"ProductFields\": {\n \"StandardsGuideArn\": \"arn:aws:securityhub:::ruleset/cis-aws-foundations-benchmark/v/1.2.0\",\n \"StandardsGuideSubscriptionArn\": \"arn:aws:securityhub:us-east-1:123456789123:subscription/cis-aws-foundations-benchmark/v/1.2.0\",\n \"RuleId\": \"3.3\",\n \"RecommendationUrl\": \"https://docs.aws.amazon.com/console/securityhub/standards-cis-3.3/remediation\",\n \"StandardsControlArn\": \"arn:aws:securityhub:us-east-1:123456789123:control/cis-aws-foundations-benchmark/v/1.2.0/3.3\",\n \"aws/securityhub/ProductName\": \"Security Hub\",\n \"aws/securityhub/CompanyName\": \"AWS\",\n \"aws/securityhub/annotation\": \"Multi region CloudTrail with the required configuration does not exist in the account\",\n \"Resources:0/Id\": \"arn:aws:iam::123456789123:root\",\n \"aws/securityhub/FindingId\": \"arn:aws:securityhub:us-east-1::product/aws/securityhub/arn:aws:securityhub:us-east-1:123456789123:subscription/cis-aws-foundations-benchmark/v/1.2.0/3.3/finding/7e616501-7e4f-43b1-8092-610513f73baa\"\n },\n \"Resources\": [\n {\n \"Type\": \"AwsAccount\",\n \"Id\": \"AWS::::Account:123456789123\",\n \"Partition\": \"aws\",\n \"Region\": \"us-east-1\"\n }\n ],\n \"Compliance\": {\n \"Status\": \"FAILED\",\n \"StatusReasons\": [\n {\n \"ReasonCode\": \"CLOUDTRAIL_MULTI_REGION_NOT_PRESENT\",\n \"Description\": \"Multi region CloudTrail with the required configuration does not exist in the account\"\n }\n ]\n },\n \"WorkflowState\": \"NEW\",\n \"Workflow\": {\n \"Status\": \"NEW\"\n },\n \"RecordState\": \"ACTIVE\",\n \"FindingProviderFields\": {\n \"Severity\": {\n \"Label\": \"LOW\",\n \"Original\": \"LOW\"\n },\n \"Types\": [\n \"Software and Configuration Checks/Industry and Regulatory Standards/CIS AWS Foundations Benchmark\"\n ]\n }\n }\n ]\n}", + "results": [ + { + "status": "failed", + "code_desc": "Resources: [Type: AwsAccount, Id: AWS::::Account:123456789123, Partition: aws, Region: us-east-1]", + "start_time": "2021-08-09T11:28:09.830Z", + "message": "ReasonCode: CLOUDTRAIL_MULTI_REGION_NOT_PRESENT\nDescription: Multi region CloudTrail with the required configuration does not exist in the account" + } + ] + }, + { + "id": "3.2", + "title": "CIS AWS Foundations Benchmark v1.2.0: 3.2 Ensure a log metric filter and alarm exist for Management Console sign-in without MFA", + "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], + "nist": [ + "SA-11", + "RA-5" + ] + }, + "impact": 0.3, + "desc": "Real-time monitoring of API calls can be achieved by directing CloudTrail Logs to CloudWatch Logs and establishing corresponding metric filters and alarms. It is recommended that a metric filter and alarm be established for console logins that are not protected by multi-factor authentication (MFA).", + "descriptions": [ + { + "data": "For directions on how to fix this issue, please consult the AWS Security Hub CIS documentation.\nhttps://docs.aws.amazon.com/console/securityhub/standards-cis-3.2/remediation", + "label": "fix" + } + ], + "refs": [], + "source_location": {}, + "code": "{\n \"Findings\": [\n {\n \"SchemaVersion\": \"2018-10-08\",\n \"Id\": \"arn:aws:securityhub:us-east-1:123456789123:subscription/cis-aws-foundations-benchmark/v/1.2.0/3.2/finding/c3ff01fc-2e66-46ed-86a1-b10c384b92e5\",\n \"ProductArn\": \"arn:aws:securityhub:us-east-1::product/aws/securityhub\",\n \"ProductName\": \"Security Hub\",\n \"CompanyName\": \"AWS\",\n \"Region\": \"us-east-1\",\n \"GeneratorId\": \"arn:aws:securityhub:::ruleset/cis-aws-foundations-benchmark/v/1.2.0/rule/3.2\",\n \"AwsAccountId\": \"123456789123\",\n \"Types\": [\n \"Software and Configuration Checks/Industry and Regulatory Standards/CIS AWS Foundations Benchmark\"\n ],\n \"FirstObservedAt\": \"2021-07-23T23:39:00.932Z\",\n \"LastObservedAt\": \"2021-08-09T11:28:12.172Z\",\n \"CreatedAt\": \"2021-07-23T23:39:00.932Z\",\n \"UpdatedAt\": \"2021-08-09T11:28:08.811Z\",\n \"Severity\": {\n \"Product\": 30,\n \"Label\": \"LOW\",\n \"Normalized\": 30,\n \"Original\": \"LOW\"\n },\n \"Title\": \"3.2 Ensure a log metric filter and alarm exist for Management Console sign-in without MFA\",\n \"Description\": \"Real-time monitoring of API calls can be achieved by directing CloudTrail Logs to CloudWatch Logs and establishing corresponding metric filters and alarms. It is recommended that a metric filter and alarm be established for console logins that are not protected by multi-factor authentication (MFA).\",\n \"Remediation\": {\n \"Recommendation\": {\n \"Text\": \"For directions on how to fix this issue, please consult the AWS Security Hub CIS documentation.\",\n \"Url\": \"https://docs.aws.amazon.com/console/securityhub/standards-cis-3.2/remediation\"\n }\n },\n \"ProductFields\": {\n \"StandardsGuideArn\": \"arn:aws:securityhub:::ruleset/cis-aws-foundations-benchmark/v/1.2.0\",\n \"StandardsGuideSubscriptionArn\": \"arn:aws:securityhub:us-east-1:123456789123:subscription/cis-aws-foundations-benchmark/v/1.2.0\",\n \"RuleId\": \"3.2\",\n \"RecommendationUrl\": \"https://docs.aws.amazon.com/console/securityhub/standards-cis-3.2/remediation\",\n \"StandardsControlArn\": \"arn:aws:securityhub:us-east-1:123456789123:control/cis-aws-foundations-benchmark/v/1.2.0/3.2\",\n \"aws/securityhub/ProductName\": \"Security Hub\",\n \"aws/securityhub/CompanyName\": \"AWS\",\n \"aws/securityhub/annotation\": \"Multi region CloudTrail with the required configuration does not exist in the account\",\n \"Resources:0/Id\": \"arn:aws:iam::123456789123:root\",\n \"aws/securityhub/FindingId\": \"arn:aws:securityhub:us-east-1::product/aws/securityhub/arn:aws:securityhub:us-east-1:123456789123:subscription/cis-aws-foundations-benchmark/v/1.2.0/3.2/finding/c3ff01fc-2e66-46ed-86a1-b10c384b92e5\"\n },\n \"Resources\": [\n {\n \"Type\": \"AwsAccount\",\n \"Id\": \"AWS::::Account:123456789123\",\n \"Partition\": \"aws\",\n \"Region\": \"us-east-1\"\n }\n ],\n \"Compliance\": {\n \"Status\": \"FAILED\",\n \"StatusReasons\": [\n {\n \"ReasonCode\": \"CLOUDTRAIL_MULTI_REGION_NOT_PRESENT\",\n \"Description\": \"Multi region CloudTrail with the required configuration does not exist in the account\"\n }\n ]\n },\n \"WorkflowState\": \"NEW\",\n \"Workflow\": {\n \"Status\": \"NEW\"\n },\n \"RecordState\": \"ACTIVE\",\n \"FindingProviderFields\": {\n \"Severity\": {\n \"Label\": \"LOW\",\n \"Original\": \"LOW\"\n },\n \"Types\": [\n \"Software and Configuration Checks/Industry and Regulatory Standards/CIS AWS Foundations Benchmark\"\n ]\n }\n }\n ]\n}", + "results": [ + { + "status": "failed", + "code_desc": "Resources: [Type: AwsAccount, Id: AWS::::Account:123456789123, Partition: aws, Region: us-east-1]", + "start_time": "2021-08-09T11:28:12.172Z", + "message": "ReasonCode: CLOUDTRAIL_MULTI_REGION_NOT_PRESENT\nDescription: Multi region CloudTrail with the required configuration does not exist in the account" + } + ] + }, + { + "id": "3.14", + "title": "CIS AWS Foundations Benchmark v1.2.0: 3.14 Ensure a log metric filter and alarm exist for VPC changes", + "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], + "nist": [ + "SA-11", + "RA-5" + ] + }, + "impact": 0.3, + "desc": "Real-time monitoring of API calls can be achieved by directing CloudTrail Logs to CloudWatch Logs and establishing corresponding metric filters and alarms. It is possible to have more than 1 VPC within an account, in addition it is also possible to create a peer connection between 2 VPCs enabling network traffic to route between VPCs. It is recommended that a metric filter and alarm be established for changes made to VPCs.", + "descriptions": [ + { + "data": "For directions on how to fix this issue, please consult the AWS Security Hub CIS documentation.\nhttps://docs.aws.amazon.com/console/securityhub/standards-cis-3.14/remediation", + "label": "fix" + } + ], + "refs": [], + "source_location": {}, + "code": "{\n \"Findings\": [\n {\n \"SchemaVersion\": \"2018-10-08\",\n \"Id\": \"arn:aws:securityhub:us-east-1:123456789123:subscription/cis-aws-foundations-benchmark/v/1.2.0/3.14/finding/7933efb4-1f20-4e0d-b313-5f7549bf3a0c\",\n \"ProductArn\": \"arn:aws:securityhub:us-east-1::product/aws/securityhub\",\n \"ProductName\": \"Security Hub\",\n \"CompanyName\": \"AWS\",\n \"Region\": \"us-east-1\",\n \"GeneratorId\": \"arn:aws:securityhub:::ruleset/cis-aws-foundations-benchmark/v/1.2.0/rule/3.14\",\n \"AwsAccountId\": \"123456789123\",\n \"Types\": [\n \"Software and Configuration Checks/Industry and Regulatory Standards/CIS AWS Foundations Benchmark\"\n ],\n \"FirstObservedAt\": \"2021-07-23T23:39:00.932Z\",\n \"LastObservedAt\": \"2021-08-09T11:28:09.392Z\",\n \"CreatedAt\": \"2021-07-23T23:39:00.932Z\",\n \"UpdatedAt\": \"2021-08-09T11:28:08.811Z\",\n \"Severity\": {\n \"Product\": 30,\n \"Label\": \"LOW\",\n \"Normalized\": 30,\n \"Original\": \"LOW\"\n },\n \"Title\": \"3.14 Ensure a log metric filter and alarm exist for VPC changes\",\n \"Description\": \"Real-time monitoring of API calls can be achieved by directing CloudTrail Logs to CloudWatch Logs and establishing corresponding metric filters and alarms. It is possible to have more than 1 VPC within an account, in addition it is also possible to create a peer connection between 2 VPCs enabling network traffic to route between VPCs. It is recommended that a metric filter and alarm be established for changes made to VPCs.\",\n \"Remediation\": {\n \"Recommendation\": {\n \"Text\": \"For directions on how to fix this issue, please consult the AWS Security Hub CIS documentation.\",\n \"Url\": \"https://docs.aws.amazon.com/console/securityhub/standards-cis-3.14/remediation\"\n }\n },\n \"ProductFields\": {\n \"StandardsGuideArn\": \"arn:aws:securityhub:::ruleset/cis-aws-foundations-benchmark/v/1.2.0\",\n \"StandardsGuideSubscriptionArn\": \"arn:aws:securityhub:us-east-1:123456789123:subscription/cis-aws-foundations-benchmark/v/1.2.0\",\n \"RuleId\": \"3.14\",\n \"RecommendationUrl\": \"https://docs.aws.amazon.com/console/securityhub/standards-cis-3.14/remediation\",\n \"StandardsControlArn\": \"arn:aws:securityhub:us-east-1:123456789123:control/cis-aws-foundations-benchmark/v/1.2.0/3.14\",\n \"aws/securityhub/ProductName\": \"Security Hub\",\n \"aws/securityhub/CompanyName\": \"AWS\",\n \"aws/securityhub/annotation\": \"Multi region CloudTrail with the required configuration does not exist in the account\",\n \"Resources:0/Id\": \"arn:aws:iam::123456789123:root\",\n \"aws/securityhub/FindingId\": \"arn:aws:securityhub:us-east-1::product/aws/securityhub/arn:aws:securityhub:us-east-1:123456789123:subscription/cis-aws-foundations-benchmark/v/1.2.0/3.14/finding/7933efb4-1f20-4e0d-b313-5f7549bf3a0c\"\n },\n \"Resources\": [\n {\n \"Type\": \"AwsAccount\",\n \"Id\": \"AWS::::Account:123456789123\",\n \"Partition\": \"aws\",\n \"Region\": \"us-east-1\"\n }\n ],\n \"Compliance\": {\n \"Status\": \"FAILED\",\n \"StatusReasons\": [\n {\n \"ReasonCode\": \"CLOUDTRAIL_MULTI_REGION_NOT_PRESENT\",\n \"Description\": \"Multi region CloudTrail with the required configuration does not exist in the account\"\n }\n ]\n },\n \"WorkflowState\": \"NEW\",\n \"Workflow\": {\n \"Status\": \"NEW\"\n },\n \"RecordState\": \"ACTIVE\",\n \"FindingProviderFields\": {\n \"Severity\": {\n \"Label\": \"LOW\",\n \"Original\": \"LOW\"\n },\n \"Types\": [\n \"Software and Configuration Checks/Industry and Regulatory Standards/CIS AWS Foundations Benchmark\"\n ]\n }\n }\n ]\n}", + "results": [ + { + "status": "failed", + "code_desc": "Resources: [Type: AwsAccount, Id: AWS::::Account:123456789123, Partition: aws, Region: us-east-1]", + "start_time": "2021-08-09T11:28:09.392Z", + "message": "ReasonCode: CLOUDTRAIL_MULTI_REGION_NOT_PRESENT\nDescription: Multi region CloudTrail with the required configuration does not exist in the account" + } + ] + }, + { + "id": "3.13", + "title": "CIS AWS Foundations Benchmark v1.2.0: 3.13 Ensure a log metric filter and alarm exist for route table changes", + "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], + "nist": [ + "SA-11", + "RA-5" + ] + }, + "impact": 0.3, + "desc": "Real-time monitoring of API calls can be achieved by directing CloudTrail Logs to CloudWatch Logs and establishing corresponding metric filters and alarms. Routing tables are used to route network traffic between subnets and to network gateways. It is recommended that a metric filter and alarm be established for changes to route tables.", + "descriptions": [ + { + "data": "For directions on how to fix this issue, please consult the AWS Security Hub CIS documentation.\nhttps://docs.aws.amazon.com/console/securityhub/standards-cis-3.13/remediation", + "label": "fix" + } + ], + "refs": [], + "source_location": {}, + "code": "{\n \"Findings\": [\n {\n \"SchemaVersion\": \"2018-10-08\",\n \"Id\": \"arn:aws:securityhub:us-east-1:123456789123:subscription/cis-aws-foundations-benchmark/v/1.2.0/3.13/finding/3fa90615-aadb-43a1-8f23-2e6dac062baa\",\n \"ProductArn\": \"arn:aws:securityhub:us-east-1::product/aws/securityhub\",\n \"ProductName\": \"Security Hub\",\n \"CompanyName\": \"AWS\",\n \"Region\": \"us-east-1\",\n \"GeneratorId\": \"arn:aws:securityhub:::ruleset/cis-aws-foundations-benchmark/v/1.2.0/rule/3.13\",\n \"AwsAccountId\": \"123456789123\",\n \"Types\": [\n \"Software and Configuration Checks/Industry and Regulatory Standards/CIS AWS Foundations Benchmark\"\n ],\n \"FirstObservedAt\": \"2021-07-23T23:39:00.932Z\",\n \"LastObservedAt\": \"2021-08-09T11:28:10.315Z\",\n \"CreatedAt\": \"2021-07-23T23:39:00.932Z\",\n \"UpdatedAt\": \"2021-08-09T11:28:08.811Z\",\n \"Severity\": {\n \"Product\": 30,\n \"Label\": \"LOW\",\n \"Normalized\": 30,\n \"Original\": \"LOW\"\n },\n \"Title\": \"3.13 Ensure a log metric filter and alarm exist for route table changes\",\n \"Description\": \"Real-time monitoring of API calls can be achieved by directing CloudTrail Logs to CloudWatch Logs and establishing corresponding metric filters and alarms. Routing tables are used to route network traffic between subnets and to network gateways. It is recommended that a metric filter and alarm be established for changes to route tables.\",\n \"Remediation\": {\n \"Recommendation\": {\n \"Text\": \"For directions on how to fix this issue, please consult the AWS Security Hub CIS documentation.\",\n \"Url\": \"https://docs.aws.amazon.com/console/securityhub/standards-cis-3.13/remediation\"\n }\n },\n \"ProductFields\": {\n \"StandardsGuideArn\": \"arn:aws:securityhub:::ruleset/cis-aws-foundations-benchmark/v/1.2.0\",\n \"StandardsGuideSubscriptionArn\": \"arn:aws:securityhub:us-east-1:123456789123:subscription/cis-aws-foundations-benchmark/v/1.2.0\",\n \"RuleId\": \"3.13\",\n \"RecommendationUrl\": \"https://docs.aws.amazon.com/console/securityhub/standards-cis-3.13/remediation\",\n \"StandardsControlArn\": \"arn:aws:securityhub:us-east-1:123456789123:control/cis-aws-foundations-benchmark/v/1.2.0/3.13\",\n \"aws/securityhub/ProductName\": \"Security Hub\",\n \"aws/securityhub/CompanyName\": \"AWS\",\n \"aws/securityhub/annotation\": \"Multi region CloudTrail with the required configuration does not exist in the account\",\n \"Resources:0/Id\": \"arn:aws:iam::123456789123:root\",\n \"aws/securityhub/FindingId\": \"arn:aws:securityhub:us-east-1::product/aws/securityhub/arn:aws:securityhub:us-east-1:123456789123:subscription/cis-aws-foundations-benchmark/v/1.2.0/3.13/finding/3fa90615-aadb-43a1-8f23-2e6dac062baa\"\n },\n \"Resources\": [\n {\n \"Type\": \"AwsAccount\",\n \"Id\": \"AWS::::Account:123456789123\",\n \"Partition\": \"aws\",\n \"Region\": \"us-east-1\"\n }\n ],\n \"Compliance\": {\n \"Status\": \"FAILED\",\n \"StatusReasons\": [\n {\n \"ReasonCode\": \"CLOUDTRAIL_MULTI_REGION_NOT_PRESENT\",\n \"Description\": \"Multi region CloudTrail with the required configuration does not exist in the account\"\n }\n ]\n },\n \"WorkflowState\": \"NEW\",\n \"Workflow\": {\n \"Status\": \"NEW\"\n },\n \"RecordState\": \"ACTIVE\",\n \"FindingProviderFields\": {\n \"Severity\": {\n \"Label\": \"LOW\",\n \"Original\": \"LOW\"\n },\n \"Types\": [\n \"Software and Configuration Checks/Industry and Regulatory Standards/CIS AWS Foundations Benchmark\"\n ]\n }\n }\n ]\n}", + "results": [ + { + "status": "failed", + "code_desc": "Resources: [Type: AwsAccount, Id: AWS::::Account:123456789123, Partition: aws, Region: us-east-1]", + "start_time": "2021-08-09T11:28:10.315Z", + "message": "ReasonCode: CLOUDTRAIL_MULTI_REGION_NOT_PRESENT\nDescription: Multi region CloudTrail with the required configuration does not exist in the account" + } + ] + }, + { + "id": "3.12", + "title": "CIS AWS Foundations Benchmark v1.2.0: 3.12 Ensure a log metric filter and alarm exist for changes to network gateways", + "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], + "nist": [ + "SA-11", + "RA-5" + ] + }, + "impact": 0.3, + "desc": "Real-time monitoring of API calls can be achieved by directing CloudTrail Logs to CloudWatch Logs and establishing corresponding metric filters and alarms. Network gateways are required to send/receive traffic to a destination outside of a VPC. It is recommended that a metric filter and alarm be established for changes to network gateways.", + "descriptions": [ + { + "data": "For directions on how to fix this issue, please consult the AWS Security Hub CIS documentation.\nhttps://docs.aws.amazon.com/console/securityhub/standards-cis-3.12/remediation", + "label": "fix" + } + ], + "refs": [], + "source_location": {}, + "code": "{\n \"Findings\": [\n {\n \"SchemaVersion\": \"2018-10-08\",\n \"Id\": \"arn:aws:securityhub:us-east-1:123456789123:subscription/cis-aws-foundations-benchmark/v/1.2.0/3.12/finding/8f481e76-9011-4feb-b2b7-b7eb9d1fcec7\",\n \"ProductArn\": \"arn:aws:securityhub:us-east-1::product/aws/securityhub\",\n \"ProductName\": \"Security Hub\",\n \"CompanyName\": \"AWS\",\n \"Region\": \"us-east-1\",\n \"GeneratorId\": \"arn:aws:securityhub:::ruleset/cis-aws-foundations-benchmark/v/1.2.0/rule/3.12\",\n \"AwsAccountId\": \"123456789123\",\n \"Types\": [\n \"Software and Configuration Checks/Industry and Regulatory Standards/CIS AWS Foundations Benchmark\"\n ],\n \"FirstObservedAt\": \"2021-07-23T23:39:00.932Z\",\n \"LastObservedAt\": \"2021-08-09T11:28:12.267Z\",\n \"CreatedAt\": \"2021-07-23T23:39:00.932Z\",\n \"UpdatedAt\": \"2021-08-09T11:28:08.811Z\",\n \"Severity\": {\n \"Product\": 30,\n \"Label\": \"LOW\",\n \"Normalized\": 30,\n \"Original\": \"LOW\"\n },\n \"Title\": \"3.12 Ensure a log metric filter and alarm exist for changes to network gateways\",\n \"Description\": \"Real-time monitoring of API calls can be achieved by directing CloudTrail Logs to CloudWatch Logs and establishing corresponding metric filters and alarms. Network gateways are required to send/receive traffic to a destination outside of a VPC. It is recommended that a metric filter and alarm be established for changes to network gateways.\",\n \"Remediation\": {\n \"Recommendation\": {\n \"Text\": \"For directions on how to fix this issue, please consult the AWS Security Hub CIS documentation.\",\n \"Url\": \"https://docs.aws.amazon.com/console/securityhub/standards-cis-3.12/remediation\"\n }\n },\n \"ProductFields\": {\n \"StandardsGuideArn\": \"arn:aws:securityhub:::ruleset/cis-aws-foundations-benchmark/v/1.2.0\",\n \"StandardsGuideSubscriptionArn\": \"arn:aws:securityhub:us-east-1:123456789123:subscription/cis-aws-foundations-benchmark/v/1.2.0\",\n \"RuleId\": \"3.12\",\n \"RecommendationUrl\": \"https://docs.aws.amazon.com/console/securityhub/standards-cis-3.12/remediation\",\n \"StandardsControlArn\": \"arn:aws:securityhub:us-east-1:123456789123:control/cis-aws-foundations-benchmark/v/1.2.0/3.12\",\n \"aws/securityhub/ProductName\": \"Security Hub\",\n \"aws/securityhub/CompanyName\": \"AWS\",\n \"aws/securityhub/annotation\": \"Multi region CloudTrail with the required configuration does not exist in the account\",\n \"Resources:0/Id\": \"arn:aws:iam::123456789123:root\",\n \"aws/securityhub/FindingId\": \"arn:aws:securityhub:us-east-1::product/aws/securityhub/arn:aws:securityhub:us-east-1:123456789123:subscription/cis-aws-foundations-benchmark/v/1.2.0/3.12/finding/8f481e76-9011-4feb-b2b7-b7eb9d1fcec7\"\n },\n \"Resources\": [\n {\n \"Type\": \"AwsAccount\",\n \"Id\": \"AWS::::Account:123456789123\",\n \"Partition\": \"aws\",\n \"Region\": \"us-east-1\"\n }\n ],\n \"Compliance\": {\n \"Status\": \"FAILED\",\n \"StatusReasons\": [\n {\n \"ReasonCode\": \"CLOUDTRAIL_MULTI_REGION_NOT_PRESENT\",\n \"Description\": \"Multi region CloudTrail with the required configuration does not exist in the account\"\n }\n ]\n },\n \"WorkflowState\": \"NEW\",\n \"Workflow\": {\n \"Status\": \"NEW\"\n },\n \"RecordState\": \"ACTIVE\",\n \"FindingProviderFields\": {\n \"Severity\": {\n \"Label\": \"LOW\",\n \"Original\": \"LOW\"\n },\n \"Types\": [\n \"Software and Configuration Checks/Industry and Regulatory Standards/CIS AWS Foundations Benchmark\"\n ]\n }\n }\n ]\n}", + "results": [ + { + "status": "failed", + "code_desc": "Resources: [Type: AwsAccount, Id: AWS::::Account:123456789123, Partition: aws, Region: us-east-1]", + "start_time": "2021-08-09T11:28:12.267Z", + "message": "ReasonCode: CLOUDTRAIL_MULTI_REGION_NOT_PRESENT\nDescription: Multi region CloudTrail with the required configuration does not exist in the account" + } + ] + }, + { + "id": "3.11", + "title": "CIS AWS Foundations Benchmark v1.2.0: 3.11 Ensure a log metric filter and alarm exist for changes to Network Access Control Lists (NACL)", + "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], + "nist": [ + "SA-11", + "RA-5" + ] + }, + "impact": 0.3, + "desc": "Real-time monitoring of API calls can be achieved by directing CloudTrail Logs to CloudWatch Logs and establishing corresponding metric filters and alarms. NACLs are used as a stateless packet filter to control ingress and egress traffic for subnets within a VPC. It is recommended that a metric filter and alarm be established for changes made to NACLs.", + "descriptions": [ + { + "data": "For directions on how to fix this issue, please consult the AWS Security Hub CIS documentation.\nhttps://docs.aws.amazon.com/console/securityhub/standards-cis-3.11/remediation", + "label": "fix" + } + ], + "refs": [], + "source_location": {}, + "code": "{\n \"Findings\": [\n {\n \"SchemaVersion\": \"2018-10-08\",\n \"Id\": \"arn:aws:securityhub:us-east-1:123456789123:subscription/cis-aws-foundations-benchmark/v/1.2.0/3.11/finding/a5aca330-1359-4106-b19d-335f36f89b94\",\n \"ProductArn\": \"arn:aws:securityhub:us-east-1::product/aws/securityhub\",\n \"ProductName\": \"Security Hub\",\n \"CompanyName\": \"AWS\",\n \"Region\": \"us-east-1\",\n \"GeneratorId\": \"arn:aws:securityhub:::ruleset/cis-aws-foundations-benchmark/v/1.2.0/rule/3.11\",\n \"AwsAccountId\": \"123456789123\",\n \"Types\": [\n \"Software and Configuration Checks/Industry and Regulatory Standards/CIS AWS Foundations Benchmark\"\n ],\n \"FirstObservedAt\": \"2021-07-23T23:39:00.932Z\",\n \"LastObservedAt\": \"2021-08-09T11:28:12.297Z\",\n \"CreatedAt\": \"2021-07-23T23:39:00.932Z\",\n \"UpdatedAt\": \"2021-08-09T11:28:08.811Z\",\n \"Severity\": {\n \"Product\": 30,\n \"Label\": \"LOW\",\n \"Normalized\": 30,\n \"Original\": \"LOW\"\n },\n \"Title\": \"3.11 Ensure a log metric filter and alarm exist for changes to Network Access Control Lists (NACL)\",\n \"Description\": \"Real-time monitoring of API calls can be achieved by directing CloudTrail Logs to CloudWatch Logs and establishing corresponding metric filters and alarms. NACLs are used as a stateless packet filter to control ingress and egress traffic for subnets within a VPC. It is recommended that a metric filter and alarm be established for changes made to NACLs.\",\n \"Remediation\": {\n \"Recommendation\": {\n \"Text\": \"For directions on how to fix this issue, please consult the AWS Security Hub CIS documentation.\",\n \"Url\": \"https://docs.aws.amazon.com/console/securityhub/standards-cis-3.11/remediation\"\n }\n },\n \"ProductFields\": {\n \"StandardsGuideArn\": \"arn:aws:securityhub:::ruleset/cis-aws-foundations-benchmark/v/1.2.0\",\n \"StandardsGuideSubscriptionArn\": \"arn:aws:securityhub:us-east-1:123456789123:subscription/cis-aws-foundations-benchmark/v/1.2.0\",\n \"RuleId\": \"3.11\",\n \"RecommendationUrl\": \"https://docs.aws.amazon.com/console/securityhub/standards-cis-3.11/remediation\",\n \"StandardsControlArn\": \"arn:aws:securityhub:us-east-1:123456789123:control/cis-aws-foundations-benchmark/v/1.2.0/3.11\",\n \"aws/securityhub/ProductName\": \"Security Hub\",\n \"aws/securityhub/CompanyName\": \"AWS\",\n \"aws/securityhub/annotation\": \"Multi region CloudTrail with the required configuration does not exist in the account\",\n \"Resources:0/Id\": \"arn:aws:iam::123456789123:root\",\n \"aws/securityhub/FindingId\": \"arn:aws:securityhub:us-east-1::product/aws/securityhub/arn:aws:securityhub:us-east-1:123456789123:subscription/cis-aws-foundations-benchmark/v/1.2.0/3.11/finding/a5aca330-1359-4106-b19d-335f36f89b94\"\n },\n \"Resources\": [\n {\n \"Type\": \"AwsAccount\",\n \"Id\": \"AWS::::Account:123456789123\",\n \"Partition\": \"aws\",\n \"Region\": \"us-east-1\"\n }\n ],\n \"Compliance\": {\n \"Status\": \"FAILED\",\n \"StatusReasons\": [\n {\n \"ReasonCode\": \"CLOUDTRAIL_MULTI_REGION_NOT_PRESENT\",\n \"Description\": \"Multi region CloudTrail with the required configuration does not exist in the account\"\n }\n ]\n },\n \"WorkflowState\": \"NEW\",\n \"Workflow\": {\n \"Status\": \"NEW\"\n },\n \"RecordState\": \"ACTIVE\",\n \"FindingProviderFields\": {\n \"Severity\": {\n \"Label\": \"LOW\",\n \"Original\": \"LOW\"\n },\n \"Types\": [\n \"Software and Configuration Checks/Industry and Regulatory Standards/CIS AWS Foundations Benchmark\"\n ]\n }\n }\n ]\n}", + "results": [ + { + "status": "failed", + "code_desc": "Resources: [Type: AwsAccount, Id: AWS::::Account:123456789123, Partition: aws, Region: us-east-1]", + "start_time": "2021-08-09T11:28:12.297Z", + "message": "ReasonCode: CLOUDTRAIL_MULTI_REGION_NOT_PRESENT\nDescription: Multi region CloudTrail with the required configuration does not exist in the account" + } + ] + }, + { + "id": "3.10", + "title": "CIS AWS Foundations Benchmark v1.2.0: 3.10 Ensure a log metric filter and alarm exist for security group changes", + "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], + "nist": [ + "SA-11", + "RA-5" + ] + }, + "impact": 0.3, + "desc": "Real-time monitoring of API calls can be achieved by directing CloudTrail Logs to CloudWatch Logs and establishing corresponding metric filters and alarms. Security Groups are a stateful packet filter that controls ingress and egress traffic within a VPC. It is recommended that a metric filter and alarm be established changes to Security Groups.", + "descriptions": [ + { + "data": "For directions on how to fix this issue, please consult the AWS Security Hub CIS documentation.\nhttps://docs.aws.amazon.com/console/securityhub/standards-cis-3.10/remediation", + "label": "fix" + } + ], + "refs": [], + "source_location": {}, + "code": "{\n \"Findings\": [\n {\n \"SchemaVersion\": \"2018-10-08\",\n \"Id\": \"arn:aws:securityhub:us-east-1:123456789123:subscription/cis-aws-foundations-benchmark/v/1.2.0/3.10/finding/6f2753c4-782e-460c-86e1-53f12a1046bc\",\n \"ProductArn\": \"arn:aws:securityhub:us-east-1::product/aws/securityhub\",\n \"ProductName\": \"Security Hub\",\n \"CompanyName\": \"AWS\",\n \"Region\": \"us-east-1\",\n \"GeneratorId\": \"arn:aws:securityhub:::ruleset/cis-aws-foundations-benchmark/v/1.2.0/rule/3.10\",\n \"AwsAccountId\": \"123456789123\",\n \"Types\": [\n \"Software and Configuration Checks/Industry and Regulatory Standards/CIS AWS Foundations Benchmark\"\n ],\n \"FirstObservedAt\": \"2021-07-23T23:39:00.931Z\",\n \"LastObservedAt\": \"2021-08-09T11:28:13.084Z\",\n \"CreatedAt\": \"2021-07-23T23:39:00.931Z\",\n \"UpdatedAt\": \"2021-08-09T11:28:08.811Z\",\n \"Severity\": {\n \"Product\": 30,\n \"Label\": \"LOW\",\n \"Normalized\": 30,\n \"Original\": \"LOW\"\n },\n \"Title\": \"3.10 Ensure a log metric filter and alarm exist for security group changes\",\n \"Description\": \"Real-time monitoring of API calls can be achieved by directing CloudTrail Logs to CloudWatch Logs and establishing corresponding metric filters and alarms. Security Groups are a stateful packet filter that controls ingress and egress traffic within a VPC. It is recommended that a metric filter and alarm be established changes to Security Groups.\",\n \"Remediation\": {\n \"Recommendation\": {\n \"Text\": \"For directions on how to fix this issue, please consult the AWS Security Hub CIS documentation.\",\n \"Url\": \"https://docs.aws.amazon.com/console/securityhub/standards-cis-3.10/remediation\"\n }\n },\n \"ProductFields\": {\n \"StandardsGuideArn\": \"arn:aws:securityhub:::ruleset/cis-aws-foundations-benchmark/v/1.2.0\",\n \"StandardsGuideSubscriptionArn\": \"arn:aws:securityhub:us-east-1:123456789123:subscription/cis-aws-foundations-benchmark/v/1.2.0\",\n \"RuleId\": \"3.10\",\n \"RecommendationUrl\": \"https://docs.aws.amazon.com/console/securityhub/standards-cis-3.10/remediation\",\n \"StandardsControlArn\": \"arn:aws:securityhub:us-east-1:123456789123:control/cis-aws-foundations-benchmark/v/1.2.0/3.10\",\n \"aws/securityhub/ProductName\": \"Security Hub\",\n \"aws/securityhub/CompanyName\": \"AWS\",\n \"aws/securityhub/annotation\": \"Multi region CloudTrail with the required configuration does not exist in the account\",\n \"Resources:0/Id\": \"arn:aws:iam::123456789123:root\",\n \"aws/securityhub/FindingId\": \"arn:aws:securityhub:us-east-1::product/aws/securityhub/arn:aws:securityhub:us-east-1:123456789123:subscription/cis-aws-foundations-benchmark/v/1.2.0/3.10/finding/6f2753c4-782e-460c-86e1-53f12a1046bc\"\n },\n \"Resources\": [\n {\n \"Type\": \"AwsAccount\",\n \"Id\": \"AWS::::Account:123456789123\",\n \"Partition\": \"aws\",\n \"Region\": \"us-east-1\"\n }\n ],\n \"Compliance\": {\n \"Status\": \"FAILED\",\n \"StatusReasons\": [\n {\n \"ReasonCode\": \"CLOUDTRAIL_MULTI_REGION_NOT_PRESENT\",\n \"Description\": \"Multi region CloudTrail with the required configuration does not exist in the account\"\n }\n ]\n },\n \"WorkflowState\": \"NEW\",\n \"Workflow\": {\n \"Status\": \"NEW\"\n },\n \"RecordState\": \"ACTIVE\",\n \"FindingProviderFields\": {\n \"Severity\": {\n \"Label\": \"LOW\",\n \"Original\": \"LOW\"\n },\n \"Types\": [\n \"Software and Configuration Checks/Industry and Regulatory Standards/CIS AWS Foundations Benchmark\"\n ]\n }\n }\n ]\n}", + "results": [ + { + "status": "failed", + "code_desc": "Resources: [Type: AwsAccount, Id: AWS::::Account:123456789123, Partition: aws, Region: us-east-1]", + "start_time": "2021-08-09T11:28:13.084Z", + "message": "ReasonCode: CLOUDTRAIL_MULTI_REGION_NOT_PRESENT\nDescription: Multi region CloudTrail with the required configuration does not exist in the account" + } + ] + }, + { + "id": "3.1", + "title": "CIS AWS Foundations Benchmark v1.2.0: 3.1 Ensure a log metric filter and alarm exist for unauthorized API calls", + "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], + "nist": [ + "SA-11", + "RA-5" + ] + }, + "impact": 0.3, + "desc": "Real-time monitoring of API calls can be achieved by directing CloudTrail Logs to CloudWatch Logs and establishing corresponding metric filters and alarms. It is recommended that a metric filter and alarm be established for unauthorized API calls.", + "descriptions": [ + { + "data": "For directions on how to fix this issue, please consult the AWS Security Hub CIS documentation.\nhttps://docs.aws.amazon.com/console/securityhub/standards-cis-3.1/remediation", + "label": "fix" + } + ], + "refs": [], + "source_location": {}, + "code": "{\n \"Findings\": [\n {\n \"SchemaVersion\": \"2018-10-08\",\n \"Id\": \"arn:aws:securityhub:us-east-1:123456789123:subscription/cis-aws-foundations-benchmark/v/1.2.0/3.1/finding/3750d146-a5d4-4ca0-b0a0-0ef8997495c2\",\n \"ProductArn\": \"arn:aws:securityhub:us-east-1::product/aws/securityhub\",\n \"ProductName\": \"Security Hub\",\n \"CompanyName\": \"AWS\",\n \"Region\": \"us-east-1\",\n \"GeneratorId\": \"arn:aws:securityhub:::ruleset/cis-aws-foundations-benchmark/v/1.2.0/rule/3.1\",\n \"AwsAccountId\": \"123456789123\",\n \"Types\": [\n \"Software and Configuration Checks/Industry and Regulatory Standards/CIS AWS Foundations Benchmark\"\n ],\n \"FirstObservedAt\": \"2021-07-23T23:39:00.931Z\",\n \"LastObservedAt\": \"2021-08-09T11:28:12.445Z\",\n \"CreatedAt\": \"2021-07-23T23:39:00.931Z\",\n \"UpdatedAt\": \"2021-08-09T11:28:08.811Z\",\n \"Severity\": {\n \"Product\": 30,\n \"Label\": \"LOW\",\n \"Normalized\": 30,\n \"Original\": \"LOW\"\n },\n \"Title\": \"3.1 Ensure a log metric filter and alarm exist for unauthorized API calls\",\n \"Description\": \"Real-time monitoring of API calls can be achieved by directing CloudTrail Logs to CloudWatch Logs and establishing corresponding metric filters and alarms. It is recommended that a metric filter and alarm be established for unauthorized API calls.\",\n \"Remediation\": {\n \"Recommendation\": {\n \"Text\": \"For directions on how to fix this issue, please consult the AWS Security Hub CIS documentation.\",\n \"Url\": \"https://docs.aws.amazon.com/console/securityhub/standards-cis-3.1/remediation\"\n }\n },\n \"ProductFields\": {\n \"StandardsGuideArn\": \"arn:aws:securityhub:::ruleset/cis-aws-foundations-benchmark/v/1.2.0\",\n \"StandardsGuideSubscriptionArn\": \"arn:aws:securityhub:us-east-1:123456789123:subscription/cis-aws-foundations-benchmark/v/1.2.0\",\n \"RuleId\": \"3.1\",\n \"RecommendationUrl\": \"https://docs.aws.amazon.com/console/securityhub/standards-cis-3.1/remediation\",\n \"StandardsControlArn\": \"arn:aws:securityhub:us-east-1:123456789123:control/cis-aws-foundations-benchmark/v/1.2.0/3.1\",\n \"aws/securityhub/ProductName\": \"Security Hub\",\n \"aws/securityhub/CompanyName\": \"AWS\",\n \"aws/securityhub/annotation\": \"Multi region CloudTrail with the required configuration does not exist in the account\",\n \"Resources:0/Id\": \"arn:aws:iam::123456789123:root\",\n \"aws/securityhub/FindingId\": \"arn:aws:securityhub:us-east-1::product/aws/securityhub/arn:aws:securityhub:us-east-1:123456789123:subscription/cis-aws-foundations-benchmark/v/1.2.0/3.1/finding/3750d146-a5d4-4ca0-b0a0-0ef8997495c2\"\n },\n \"Resources\": [\n {\n \"Type\": \"AwsAccount\",\n \"Id\": \"AWS::::Account:123456789123\",\n \"Partition\": \"aws\",\n \"Region\": \"us-east-1\"\n }\n ],\n \"Compliance\": {\n \"Status\": \"FAILED\",\n \"StatusReasons\": [\n {\n \"ReasonCode\": \"CLOUDTRAIL_MULTI_REGION_NOT_PRESENT\",\n \"Description\": \"Multi region CloudTrail with the required configuration does not exist in the account\"\n }\n ]\n },\n \"WorkflowState\": \"NEW\",\n \"Workflow\": {\n \"Status\": \"NEW\"\n },\n \"RecordState\": \"ACTIVE\",\n \"FindingProviderFields\": {\n \"Severity\": {\n \"Label\": \"LOW\",\n \"Original\": \"LOW\"\n },\n \"Types\": [\n \"Software and Configuration Checks/Industry and Regulatory Standards/CIS AWS Foundations Benchmark\"\n ]\n }\n }\n ]\n}", + "results": [ + { + "status": "failed", + "code_desc": "Resources: [Type: AwsAccount, Id: AWS::::Account:123456789123, Partition: aws, Region: us-east-1]", + "start_time": "2021-08-09T11:28:12.445Z", + "message": "ReasonCode: CLOUDTRAIL_MULTI_REGION_NOT_PRESENT\nDescription: Multi region CloudTrail with the required configuration does not exist in the account" + } + ] + } + ], + "sha256": "d3b281095404010737603ee5bd4df5493c435e60e6fa1f249d7c14f7c92db76b" + } + ] +} \ No newline at end of file diff --git a/test/sample_data/asff/asff-hdf.json b/test/sample_data/asff/asff-hdf.json index 5903010f9..a5aa14f0d 100644 --- a/test/sample_data/asff/asff-hdf.json +++ b/test/sample_data/asff/asff-hdf.json @@ -1,10 +1,10 @@ { "platform": { "name": "Heimdall Tools", - "release": "2.6.28", - "target_id": "CIS AWS Foundations Benchmark v1.2.0" + "release": "2.6.8", + "target_id": "" }, - "version": "2.6.28", + "version": "2.6.8", "statistics": { "duration": null }, @@ -48,8 +48,8 @@ { "status": "failed", "code_desc": "Resources: [Type: AwsAccount, Id: AWS::::Account:123456789123, Partition: aws, Region: us-east-1]", - "start_time": "2021-08-09T11:28:16.331Z", - "message": "ReasonCode: CLOUDTRAIL_MULTI_REGION_NOT_PRESENT\nDescription: Multi region CloudTrail with the required configuration does not exist in the account" + "message": "ReasonCode: CLOUDTRAIL_MULTI_REGION_NOT_PRESENT\nDescription: Multi region CloudTrail with the required configuration does not exist in the account", + "start_time": "2021-08-09T11:28:16.331Z" } ] }, @@ -105,8 +105,8 @@ { "status": "failed", "code_desc": "Resources: [Type: AwsAccount, Id: AWS::::Account:123456789123, Partition: aws, Region: us-east-1]", - "start_time": "2021-08-09T11:28:12.508Z", - "message": "ReasonCode: CLOUDTRAIL_MULTI_REGION_NOT_PRESENT\nDescription: Multi region CloudTrail with the required configuration does not exist in the account" + "message": "ReasonCode: CLOUDTRAIL_MULTI_REGION_NOT_PRESENT\nDescription: Multi region CloudTrail with the required configuration does not exist in the account", + "start_time": "2021-08-09T11:28:12.508Z" } ] }, @@ -134,8 +134,8 @@ { "status": "failed", "code_desc": "Resources: [Type: AwsAccount, Id: AWS::::Account:123456789123, Partition: aws, Region: us-east-1]", - "start_time": "2021-08-09T11:28:12.460Z", - "message": "ReasonCode: CLOUDTRAIL_MULTI_REGION_NOT_PRESENT\nDescription: Multi region CloudTrail with the required configuration does not exist in the account" + "message": "ReasonCode: CLOUDTRAIL_MULTI_REGION_NOT_PRESENT\nDescription: Multi region CloudTrail with the required configuration does not exist in the account", + "start_time": "2021-08-09T11:28:12.460Z" } ] }, @@ -163,8 +163,8 @@ { "status": "failed", "code_desc": "Resources: [Type: AwsAccount, Id: AWS::::Account:123456789123, Partition: aws, Region: us-east-1]", - "start_time": "2021-08-09T11:28:10.511Z", - "message": "ReasonCode: CLOUDTRAIL_MULTI_REGION_NOT_PRESENT\nDescription: Multi region CloudTrail with the required configuration does not exist in the account" + "message": "ReasonCode: CLOUDTRAIL_MULTI_REGION_NOT_PRESENT\nDescription: Multi region CloudTrail with the required configuration does not exist in the account", + "start_time": "2021-08-09T11:28:10.511Z" } ] }, @@ -192,8 +192,8 @@ { "status": "failed", "code_desc": "Resources: [Type: AwsAccount, Id: AWS::::Account:123456789123, Partition: aws, Region: us-east-1]", - "start_time": "2021-08-09T11:28:10.542Z", - "message": "ReasonCode: CLOUDTRAIL_MULTI_REGION_NOT_PRESENT\nDescription: Multi region CloudTrail with the required configuration does not exist in the account" + "message": "ReasonCode: CLOUDTRAIL_MULTI_REGION_NOT_PRESENT\nDescription: Multi region CloudTrail with the required configuration does not exist in the account", + "start_time": "2021-08-09T11:28:10.542Z" } ] }, @@ -221,8 +221,8 @@ { "status": "failed", "code_desc": "Resources: [Type: AwsAccount, Id: AWS::::Account:123456789123, Partition: aws, Region: us-east-1]", - "start_time": "2021-08-09T11:28:10.630Z", - "message": "ReasonCode: CLOUDTRAIL_MULTI_REGION_NOT_PRESENT\nDescription: Multi region CloudTrail with the required configuration does not exist in the account" + "message": "ReasonCode: CLOUDTRAIL_MULTI_REGION_NOT_PRESENT\nDescription: Multi region CloudTrail with the required configuration does not exist in the account", + "start_time": "2021-08-09T11:28:10.630Z" } ] }, @@ -250,8 +250,8 @@ { "status": "failed", "code_desc": "Resources: [Type: AwsAccount, Id: AWS::::Account:123456789123, Partition: aws, Region: us-east-1]", - "start_time": "2021-08-09T11:28:11.788Z", - "message": "ReasonCode: CLOUDTRAIL_MULTI_REGION_NOT_PRESENT\nDescription: Multi region CloudTrail with the required configuration does not exist in the account" + "message": "ReasonCode: CLOUDTRAIL_MULTI_REGION_NOT_PRESENT\nDescription: Multi region CloudTrail with the required configuration does not exist in the account", + "start_time": "2021-08-09T11:28:11.788Z" } ] }, @@ -279,8 +279,8 @@ { "status": "failed", "code_desc": "Resources: [Type: AwsAccount, Id: AWS::::Account:123456789123, Partition: aws, Region: us-east-1]", - "start_time": "2021-08-09T11:28:09.830Z", - "message": "ReasonCode: CLOUDTRAIL_MULTI_REGION_NOT_PRESENT\nDescription: Multi region CloudTrail with the required configuration does not exist in the account" + "message": "ReasonCode: CLOUDTRAIL_MULTI_REGION_NOT_PRESENT\nDescription: Multi region CloudTrail with the required configuration does not exist in the account", + "start_time": "2021-08-09T11:28:09.830Z" } ] }, @@ -308,8 +308,8 @@ { "status": "failed", "code_desc": "Resources: [Type: AwsAccount, Id: AWS::::Account:123456789123, Partition: aws, Region: us-east-1]", - "start_time": "2021-08-09T11:28:12.172Z", - "message": "ReasonCode: CLOUDTRAIL_MULTI_REGION_NOT_PRESENT\nDescription: Multi region CloudTrail with the required configuration does not exist in the account" + "message": "ReasonCode: CLOUDTRAIL_MULTI_REGION_NOT_PRESENT\nDescription: Multi region CloudTrail with the required configuration does not exist in the account", + "start_time": "2021-08-09T11:28:12.172Z" } ] }, @@ -337,8 +337,8 @@ { "status": "failed", "code_desc": "Resources: [Type: AwsAccount, Id: AWS::::Account:123456789123, Partition: aws, Region: us-east-1]", - "start_time": "2021-08-09T11:28:09.392Z", - "message": "ReasonCode: CLOUDTRAIL_MULTI_REGION_NOT_PRESENT\nDescription: Multi region CloudTrail with the required configuration does not exist in the account" + "message": "ReasonCode: CLOUDTRAIL_MULTI_REGION_NOT_PRESENT\nDescription: Multi region CloudTrail with the required configuration does not exist in the account", + "start_time": "2021-08-09T11:28:09.392Z" } ] }, @@ -366,8 +366,8 @@ { "status": "failed", "code_desc": "Resources: [Type: AwsAccount, Id: AWS::::Account:123456789123, Partition: aws, Region: us-east-1]", - "start_time": "2021-08-09T11:28:10.315Z", - "message": "ReasonCode: CLOUDTRAIL_MULTI_REGION_NOT_PRESENT\nDescription: Multi region CloudTrail with the required configuration does not exist in the account" + "message": "ReasonCode: CLOUDTRAIL_MULTI_REGION_NOT_PRESENT\nDescription: Multi region CloudTrail with the required configuration does not exist in the account", + "start_time": "2021-08-09T11:28:10.315Z" } ] }, @@ -395,8 +395,8 @@ { "status": "failed", "code_desc": "Resources: [Type: AwsAccount, Id: AWS::::Account:123456789123, Partition: aws, Region: us-east-1]", - "start_time": "2021-08-09T11:28:12.267Z", - "message": "ReasonCode: CLOUDTRAIL_MULTI_REGION_NOT_PRESENT\nDescription: Multi region CloudTrail with the required configuration does not exist in the account" + "message": "ReasonCode: CLOUDTRAIL_MULTI_REGION_NOT_PRESENT\nDescription: Multi region CloudTrail with the required configuration does not exist in the account", + "start_time": "2021-08-09T11:28:12.267Z" } ] }, @@ -424,8 +424,8 @@ { "status": "failed", "code_desc": "Resources: [Type: AwsAccount, Id: AWS::::Account:123456789123, Partition: aws, Region: us-east-1]", - "start_time": "2021-08-09T11:28:12.297Z", - "message": "ReasonCode: CLOUDTRAIL_MULTI_REGION_NOT_PRESENT\nDescription: Multi region CloudTrail with the required configuration does not exist in the account" + "message": "ReasonCode: CLOUDTRAIL_MULTI_REGION_NOT_PRESENT\nDescription: Multi region CloudTrail with the required configuration does not exist in the account", + "start_time": "2021-08-09T11:28:12.297Z" } ] }, @@ -453,8 +453,8 @@ { "status": "failed", "code_desc": "Resources: [Type: AwsAccount, Id: AWS::::Account:123456789123, Partition: aws, Region: us-east-1]", - "start_time": "2021-08-09T11:28:13.084Z", - "message": "ReasonCode: CLOUDTRAIL_MULTI_REGION_NOT_PRESENT\nDescription: Multi region CloudTrail with the required configuration does not exist in the account" + "message": "ReasonCode: CLOUDTRAIL_MULTI_REGION_NOT_PRESENT\nDescription: Multi region CloudTrail with the required configuration does not exist in the account", + "start_time": "2021-08-09T11:28:13.084Z" } ] }, @@ -482,13 +482,73 @@ { "status": "failed", "code_desc": "Resources: [Type: AwsAccount, Id: AWS::::Account:123456789123, Partition: aws, Region: us-east-1]", - "start_time": "2021-08-09T11:28:12.445Z", - "message": "ReasonCode: CLOUDTRAIL_MULTI_REGION_NOT_PRESENT\nDescription: Multi region CloudTrail with the required configuration does not exist in the account" + "message": "ReasonCode: CLOUDTRAIL_MULTI_REGION_NOT_PRESENT\nDescription: Multi region CloudTrail with the required configuration does not exist in the account", + "start_time": "2021-08-09T11:28:12.445Z" + } + ] + }, + { + "id": "Config.1", + "title": "AWS Foundational Security Best Practices v1.0.0: Config.1 AWS Config should be enabled", + "tags": { + "nist": [ + "SA-11", + "RA-5" + ] + }, + "impact": 0.5, + "desc": "This AWS control checks whether the Config service is enabled in the account for the local region and is recording all resources.", + "descriptions": [ + { + "data": "For directions on how to fix this issue, please consult the AWS Security Hub Foundational Security Best Practices documentation.\nhttps://docs.aws.amazon.com/console/securityhub/Config.1/remediation", + "label": "fix" + } + ], + "refs": [], + "source_location": {}, + "code": "{\n \"Findings\": [\n {\n \"SchemaVersion\": \"2018-10-08\",\n \"Id\": \"arn:aws:securityhub:us-east-1:123456789123:subscription/aws-foundational-security-best-practices/v/1.0.0/Config.1/finding/9ffec6a3-3ce8-4011-bf90-17dbe94bf1d3\",\n \"ProductArn\": \"arn:aws:securityhub:us-east-1::product/aws/securityhub\",\n \"ProductName\": \"Security Hub\",\n \"CompanyName\": \"AWS\",\n \"Region\": \"us-east-1\",\n \"GeneratorId\": \"aws-foundational-security-best-practices/v/1.0.0/Config.1\",\n \"AwsAccountId\": \"123456789123\",\n \"Types\": [\n \"Software and Configuration Checks/Industry and Regulatory Standards/AWS-Foundational-Security-Best-Practices\"\n ],\n \"FirstObservedAt\": \"2021-07-23T23:40:39.455Z\",\n \"LastObservedAt\": \"2021-08-09T11:21:11.282Z\",\n \"CreatedAt\": \"2021-07-23T23:40:39.455Z\",\n \"UpdatedAt\": \"2021-08-09T11:21:09.408Z\",\n \"Severity\": {\n \"Product\": 40,\n \"Label\": \"MEDIUM\",\n \"Normalized\": 40,\n \"Original\": \"MEDIUM\"\n },\n \"Title\": \"Config.1 AWS Config should be enabled\",\n \"Description\": \"This AWS control checks whether the Config service is enabled in the account for the local region and is recording all resources.\",\n \"Remediation\": {\n \"Recommendation\": {\n \"Text\": \"For directions on how to fix this issue, please consult the AWS Security Hub Foundational Security Best Practices documentation.\",\n \"Url\": \"https://docs.aws.amazon.com/console/securityhub/Config.1/remediation\"\n }\n },\n \"ProductFields\": {\n \"StandardsArn\": \"arn:aws:securityhub:::standards/aws-foundational-security-best-practices/v/1.0.0\",\n \"StandardsSubscriptionArn\": \"arn:aws:securityhub:us-east-1:123456789123:subscription/aws-foundational-security-best-practices/v/1.0.0\",\n \"ControlId\": \"Config.1\",\n \"RecommendationUrl\": \"https://docs.aws.amazon.com/console/securityhub/Config.1/remediation\",\n \"StandardsControlArn\": \"arn:aws:securityhub:us-east-1:123456789123:control/aws-foundational-security-best-practices/v/1.0.0/Config.1\",\n \"aws/securityhub/ProductName\": \"Security Hub\",\n \"aws/securityhub/CompanyName\": \"AWS\",\n \"Resources:0/Id\": \"arn:aws:iam::123456789123:root\",\n \"aws/securityhub/FindingId\": \"arn:aws:securityhub:us-east-1::product/aws/securityhub/arn:aws:securityhub:us-east-1:123456789123:subscription/aws-foundational-security-best-practices/v/1.0.0/Config.1/finding/9ffec6a3-3ce8-4011-bf90-17dbe94bf1d3\"\n },\n \"Resources\": [\n {\n \"Type\": \"AwsAccount\",\n \"Id\": \"AWS::::Account:123456789123\",\n \"Partition\": \"aws\",\n \"Region\": \"us-east-1\"\n }\n ],\n \"Compliance\": {\n \"Status\": \"FAILED\"\n },\n \"WorkflowState\": \"NEW\",\n \"Workflow\": {\n \"Status\": \"NEW\"\n },\n \"RecordState\": \"ACTIVE\",\n \"FindingProviderFields\": {\n \"Severity\": {\n \"Label\": \"MEDIUM\",\n \"Original\": \"MEDIUM\"\n },\n \"Types\": [\n \"Software and Configuration Checks/Industry and Regulatory Standards/AWS-Foundational-Security-Best-Practices\"\n ]\n }\n }\n ]\n}", + "results": [ + { + "status": "failed", + "code_desc": "Resources: [Type: AwsAccount, Id: AWS::::Account:123456789123, Partition: aws, Region: us-east-1]", + "start_time": "2021-08-09T11:21:11.282Z" + } + ] + }, + { + "id": "S3.2", + "title": "AWS Foundational Security Best Practices v1.0.0: S3.2 S3 buckets should prohibit public read access", + "tags": { + "nist": [ + "AC-3", + "AC-4", + "AC-6", + "AC-21(b)", + "SC-7", + "SC-7(3)" + ] + }, + "impact": 0.5, + "desc": "This AWS control checks whether your S3 buckets allow public read access by evaluating the Block Public Access settings, the bucket policy, and the bucket access control list (ACL).", + "descriptions": [ + { + "data": "For directions on how to fix this issue, please consult the AWS Security Hub Foundational Security Best Practices documentation.\nhttps://docs.aws.amazon.com/console/securityhub/S3.2/remediation", + "label": "fix" + } + ], + "refs": [], + "source_location": {}, + "code": "{\n \"Findings\": [\n {\n \"SchemaVersion\": \"2018-10-08\",\n \"Id\": \"arn:aws:securityhub:us-east-1:123456789123:subscription/aws-foundational-security-best-practices/v/1.0.0/S3.2/finding/5fd36ec6-3f98-4d5b-a9cb-5f82e389a8e9\",\n \"ProductArn\": \"arn:aws:securityhub:us-east-1::product/aws/securityhub\",\n \"GeneratorId\": \"aws-foundational-security-best-practices/v/1.0.0/S3.2\",\n \"AwsAccountId\": \"123456789123\",\n \"Types\": [\n \"Effects/Data Exposure/AWS-Foundational-Security-Best-Practices\"\n ],\n \"FirstObservedAt\": \"2021-04-28T14:57:54.547Z\",\n \"LastObservedAt\": \"2021-07-02T16:02:48.476Z\",\n \"CreatedAt\": \"2021-04-28T14:57:54.547Z\",\n \"UpdatedAt\": \"2021-07-02T16:02:46.396Z\",\n \"Severity\": {\n \"Product\": 0,\n \"Label\": \"INFORMATIONAL\",\n \"Normalized\": 0,\n \"Original\": \"INFORMATIONAL\"\n },\n \"Title\": \"S3.2 S3 buckets should prohibit public read access\",\n \"Description\": \"This AWS control checks whether your S3 buckets allow public read access by evaluating the Block Public Access settings, the bucket policy, and the bucket access control list (ACL).\",\n \"Remediation\": {\n \"Recommendation\": {\n \"Text\": \"For directions on how to fix this issue, please consult the AWS Security Hub Foundational Security Best Practices documentation.\",\n \"Url\": \"https://docs.aws.amazon.com/console/securityhub/S3.2/remediation\"\n }\n },\n \"ProductFields\": {\n \"StandardsArn\": \"arn:aws:securityhub:::standards/aws-foundational-security-best-practices/v/1.0.0\",\n \"StandardsSubscriptionArn\": \"arn:aws:securityhub:us-east-1:123456789123:subscription/aws-foundational-security-best-practices/v/1.0.0\",\n \"ControlId\": \"S3.2\",\n \"RecommendationUrl\": \"https://docs.aws.amazon.com/console/securityhub/S3.2/remediation\",\n \"RelatedAWSResources:0/name\": \"securityhub-s3-bucket-public-read-prohibited-491148b1\",\n \"RelatedAWSResources:0/type\": \"AWS::Config::ConfigRule\",\n \"StandardsControlArn\": \"arn:aws:securityhub:us-east-1:123456789123:control/aws-foundational-security-best-practices/v/1.0.0/S3.2\",\n \"aws/securityhub/ProductName\": \"Security Hub\",\n \"aws/securityhub/CompanyName\": \"AWS\",\n \"Resources:0/Id\": \"arn:aws:s3:::example-bucket-123456789123-us-east-1\",\n \"aws/securityhub/FindingId\": \"arn:aws:securityhub:us-east-1::product/aws/securityhub/arn:aws:securityhub:us-east-1:123456789123:subscription/aws-foundational-security-best-practices/v/1.0.0/S3.2/finding/5fd36ec6-3f98-4d5b-a9cb-5f82e389a8e9\"\n },\n \"Resources\": [\n {\n \"Type\": \"AwsS3Bucket\",\n \"Id\": \"arn:aws:s3:::example-bucket-123456789123-us-east-1\",\n \"Partition\": \"aws\",\n \"Region\": \"us-east-1\",\n \"Details\": {\n \"AwsS3Bucket\": {\n \"OwnerId\": \"abe813ee284239446607ac88bf580a6f7348abec9053fd187e6234b58102e826\",\n \"CreatedAt\": \"2021-03-12T20:14:09.000Z\"\n }\n }\n }\n ],\n \"Compliance\": {\n \"Status\": \"PASSED\"\n },\n \"WorkflowState\": \"NEW\",\n \"Workflow\": {\n \"Status\": \"RESOLVED\"\n },\n \"RecordState\": \"ACTIVE\",\n \"FindingProviderFields\": {\n \"Severity\": {\n \"Label\": \"INFORMATIONAL\",\n \"Original\": \"INFORMATIONAL\"\n },\n \"Types\": [\n \"Effects/Data Exposure/AWS-Foundational-Security-Best-Practices\"\n ]\n }\n }\n ]\n}", + "results": [ + { + "status": "passed", + "code_desc": "Resources: [Type: AwsS3Bucket, Id: arn:aws:s3:::example-bucket-123456789123-us-east-1, Partition: aws, Region: us-east-1]", + "start_time": "2021-07-02T16:02:48.476Z" } ] } ], - "sha256": "3234ea2f6eeafe634335353084b0676424efd894cae4ccc340131a19718cd5e4" + "sha256": "ab8131700a9c546dce35bb9456ad39aa401cd11701c3ae653fd5da08c36b242b" } ] } diff --git a/test/sample_data/asff/example-3-layer-overlay_hdf.json b/test/sample_data/asff/example-3-layer-overlay_hdf.json index 23330522a..75e6b064b 100644 --- a/test/sample_data/asff/example-3-layer-overlay_hdf.json +++ b/test/sample_data/asff/example-3-layer-overlay_hdf.json @@ -37641,4 +37641,4 @@ "sha256": "6ae19852d015cc96535544c069450b1d3a92f6ccd66f20b283f187f0f8f4b733" } ] -} \ No newline at end of file +} diff --git a/test/sample_data/asff/prowler-hdf.json b/test/sample_data/asff/prowler-hdf.json new file mode 100644 index 000000000..e7a2f6881 --- /dev/null +++ b/test/sample_data/asff/prowler-hdf.json @@ -0,0 +1,125 @@ +{ + "platform": { + "name": "Heimdall Tools", + "release": "2.6.29", + "target_id": "Prowler" + }, + "version": "2.6.29", + "statistics": { + "duration": null + }, + "profiles": [ + { + "name": "Prowler", + "version": "", + "title": "Prowler Findings", + "maintainer": null, + "summary": "", + "license": null, + "copyright": null, + "copyright_email": null, + "supports": [], + "attributes": [], + "depends": [], + "groups": [], + "status": "loaded", + "controls": [ + { + "id": "check11", + "title": "Prowler: [check11] Avoid the use of the root account (Scored)", + "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], + "nist": [ + "SA-11", + "RA-5" + ] + }, + "impact": 0.7, + "desc": " ", + "descriptions": [], + "refs": [], + "source_location": {}, + "code": "{\n \"Findings\": [\n {\n \"SchemaVersion\": \"2018-10-08\",\n \"Id\": \"prowler-1.1-123456789123-us-east-1-Root_user_in_the_account_was_last_accessed_1_day_ago\",\n \"ProductArn\": \"arn:aws:securityhub:us-east-1::product/prowler/prowler\",\n \"RecordState\": \"ACTIVE\",\n \"ProductFields\": {\n \"ProviderName\": \"Prowler\",\n \"ProviderVersion\": \"2.4.0-07042021\"\n },\n \"GeneratorId\": \"prowler-check11\",\n \"AwsAccountId\": \"123456789123\",\n \"Types\": [\n \"Software and Configuration Checks\"\n ],\n \"FirstObservedAt\": \"2021-05-17T23:07:02Z\",\n \"UpdatedAt\": \"2021-05-17T23:07:02Z\",\n \"CreatedAt\": \"2021-05-17T23:07:02Z\",\n \"Severity\": {\n \"Label\": \"HIGH\"\n },\n \"Title\": \"[check11] Avoid the use of the root account (Scored)\",\n \"Description\": \"Root user in the account was last accessed 1 day ago\",\n \"Resources\": [\n {\n \"Type\": \"AwsAccount\",\n \"Id\": \"AWS::::Account:123456789123\",\n \"Partition\": \"aws\",\n \"Region\": \"us-east-1\"\n }\n ],\n \"Compliance\": {\n \"Status\": \"FAILED\",\n \"RelatedRequirements\": [\n \"Software and Configuration Checks\"\n ]\n }\n }\n ]\n}", + "results": [ + { + "status": "failed", + "code_desc": "Root user in the account was last accessed 1 day ago; Resources: [Type: AwsAccount, Id: AWS::::Account:123456789123, Partition: aws, Region: us-east-1]", + "start_time": "2021-05-17T23:07:02Z" + } + ] + }, + { + "id": "check12", + "title": "Prowler: [check12] Ensure multi-factor authentication (MFA) is enabled for all IAM users that have a console password (Scored)", + "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], + "nist": [ + "SA-11", + "RA-5" + ] + }, + "impact": 0.7, + "desc": " ", + "descriptions": [], + "refs": [], + "source_location": {}, + "code": "{\n \"Findings\": [\n {\n \"SchemaVersion\": \"2018-10-08\",\n \"Id\": \"prowler-1.2-123456789123-us-east-1-User_name1_has_Password_enabled_but_MFA_disabled\",\n \"ProductArn\": \"arn:aws:securityhub:us-east-1::product/prowler/prowler\",\n \"RecordState\": \"ACTIVE\",\n \"ProductFields\": {\n \"ProviderName\": \"Prowler\",\n \"ProviderVersion\": \"2.4.0-07042021\"\n },\n \"GeneratorId\": \"prowler-check12\",\n \"AwsAccountId\": \"123456789123\",\n \"Types\": [\n \"ens-op.acc.5.aws.iam.1\"\n ],\n \"FirstObservedAt\": \"2021-05-17T23:07:02Z\",\n \"UpdatedAt\": \"2021-05-17T23:07:02Z\",\n \"CreatedAt\": \"2021-05-17T23:07:02Z\",\n \"Severity\": {\n \"Label\": \"HIGH\"\n },\n \"Title\": \"[check12] Ensure multi-factor authentication (MFA) is enabled for all IAM users that have a console password (Scored)\",\n \"Description\": \"User name1 has Password enabled but MFA disabled\",\n \"Resources\": [\n {\n \"Type\": \"AwsIamUser\",\n \"Id\": \"AWS::::Account:123456789123\",\n \"Partition\": \"aws\",\n \"Region\": \"us-east-1\"\n }\n ],\n \"Compliance\": {\n \"Status\": \"FAILED\",\n \"RelatedRequirements\": [\n \"ens-op.acc.5.aws.iam.1\"\n ]\n }\n },\n {\n \"SchemaVersion\": \"2018-10-08\",\n \"Id\": \"prowler-1.2-123456789123-us-east-1-User_name2_has_Password_enabled_but_MFA_disabled\",\n \"ProductArn\": \"arn:aws:securityhub:us-east-1::product/prowler/prowler\",\n \"RecordState\": \"ACTIVE\",\n \"ProductFields\": {\n \"ProviderName\": \"Prowler\",\n \"ProviderVersion\": \"2.4.0-07042021\"\n },\n \"GeneratorId\": \"prowler-check12\",\n \"AwsAccountId\": \"123456789123\",\n \"Types\": [\n \"ens-op.acc.5.aws.iam.1\"\n ],\n \"FirstObservedAt\": \"2021-05-17T23:07:02Z\",\n \"UpdatedAt\": \"2021-05-17T23:07:02Z\",\n \"CreatedAt\": \"2021-05-17T23:07:02Z\",\n \"Severity\": {\n \"Label\": \"HIGH\"\n },\n \"Title\": \"[check12] Ensure multi-factor authentication (MFA) is enabled for all IAM users that have a console password (Scored)\",\n \"Description\": \"User name2 has Password enabled but MFA disabled\",\n \"Resources\": [\n {\n \"Type\": \"AwsIamUser\",\n \"Id\": \"AWS::::Account:123456789123\",\n \"Partition\": \"aws\",\n \"Region\": \"us-east-1\"\n }\n ],\n \"Compliance\": {\n \"Status\": \"FAILED\",\n \"RelatedRequirements\": [\n \"ens-op.acc.5.aws.iam.1\"\n ]\n }\n },\n {\n \"SchemaVersion\": \"2018-10-08\",\n \"Id\": \"prowler-1.2-123456789123-us-east-1-User_name3_has_Password_enabled_but_MFA_disabled\",\n \"ProductArn\": \"arn:aws:securityhub:us-east-1::product/prowler/prowler\",\n \"RecordState\": \"ACTIVE\",\n \"ProductFields\": {\n \"ProviderName\": \"Prowler\",\n \"ProviderVersion\": \"2.4.0-07042021\"\n },\n \"GeneratorId\": \"prowler-check12\",\n \"AwsAccountId\": \"123456789123\",\n \"Types\": [\n \"ens-op.acc.5.aws.iam.1\"\n ],\n \"FirstObservedAt\": \"2021-05-17T23:07:03Z\",\n \"UpdatedAt\": \"2021-05-17T23:07:03Z\",\n \"CreatedAt\": \"2021-05-17T23:07:03Z\",\n \"Severity\": {\n \"Label\": \"HIGH\"\n },\n \"Title\": \"[check12] Ensure multi-factor authentication (MFA) is enabled for all IAM users that have a console password (Scored)\",\n \"Description\": \"User name3 has Password enabled but MFA disabled\",\n \"Resources\": [\n {\n \"Type\": \"AwsIamUser\",\n \"Id\": \"AWS::::Account:123456789123\",\n \"Partition\": \"aws\",\n \"Region\": \"us-east-1\"\n }\n ],\n \"Compliance\": {\n \"Status\": \"FAILED\",\n \"RelatedRequirements\": [\n \"ens-op.acc.5.aws.iam.1\"\n ]\n }\n },\n {\n \"SchemaVersion\": \"2018-10-08\",\n \"Id\": \"prowler-1.2-123456789123-us-east-1-User_name4_has_Password_enabled_but_MFA_disabled\",\n \"ProductArn\": \"arn:aws:securityhub:us-east-1::product/prowler/prowler\",\n \"RecordState\": \"ACTIVE\",\n \"ProductFields\": {\n \"ProviderName\": \"Prowler\",\n \"ProviderVersion\": \"2.4.0-07042021\"\n },\n \"GeneratorId\": \"prowler-check12\",\n \"AwsAccountId\": \"123456789123\",\n \"Types\": [\n \"ens-op.acc.5.aws.iam.1\"\n ],\n \"FirstObservedAt\": \"2021-05-17T23:07:03Z\",\n \"UpdatedAt\": \"2021-05-17T23:07:03Z\",\n \"CreatedAt\": \"2021-05-17T23:07:03Z\",\n \"Severity\": {\n \"Label\": \"HIGH\"\n },\n \"Title\": \"[check12] Ensure multi-factor authentication (MFA) is enabled for all IAM users that have a console password (Scored)\",\n \"Description\": \"User name4 has Password enabled but MFA disabled\",\n \"Resources\": [\n {\n \"Type\": \"AwsIamUser\",\n \"Id\": \"AWS::::Account:123456789123\",\n \"Partition\": \"aws\",\n \"Region\": \"us-east-1\"\n }\n ],\n \"Compliance\": {\n \"Status\": \"FAILED\",\n \"RelatedRequirements\": [\n \"ens-op.acc.5.aws.iam.1\"\n ]\n }\n },\n {\n \"SchemaVersion\": \"2018-10-08\",\n \"Id\": \"prowler-1.2-123456789123-us-east-1-User_name5_has_Password_enabled_but_MFA_disabled\",\n \"ProductArn\": \"arn:aws:securityhub:us-east-1::product/prowler/prowler\",\n \"RecordState\": \"ACTIVE\",\n \"ProductFields\": {\n \"ProviderName\": \"Prowler\",\n \"ProviderVersion\": \"2.4.0-07042021\"\n },\n \"GeneratorId\": \"prowler-check12\",\n \"AwsAccountId\": \"123456789123\",\n \"Types\": [\n \"ens-op.acc.5.aws.iam.1\"\n ],\n \"FirstObservedAt\": \"2021-05-17T23:07:03Z\",\n \"UpdatedAt\": \"2021-05-17T23:07:03Z\",\n \"CreatedAt\": \"2021-05-17T23:07:03Z\",\n \"Severity\": {\n \"Label\": \"HIGH\"\n },\n \"Title\": \"[check12] Ensure multi-factor authentication (MFA) is enabled for all IAM users that have a console password (Scored)\",\n \"Description\": \"User name5 has Password enabled but MFA disabled\",\n \"Resources\": [\n {\n \"Type\": \"AwsIamUser\",\n \"Id\": \"AWS::::Account:123456789123\",\n \"Partition\": \"aws\",\n \"Region\": \"us-east-1\"\n }\n ],\n \"Compliance\": {\n \"Status\": \"FAILED\",\n \"RelatedRequirements\": [\n \"ens-op.acc.5.aws.iam.1\"\n ]\n }\n },\n {\n \"SchemaVersion\": \"2018-10-08\",\n \"Id\": \"prowler-1.2-123456789123-us-east-1-User_name6_has_Password_enabled_but_MFA_disabled\",\n \"ProductArn\": \"arn:aws:securityhub:us-east-1::product/prowler/prowler\",\n \"RecordState\": \"ACTIVE\",\n \"ProductFields\": {\n \"ProviderName\": \"Prowler\",\n \"ProviderVersion\": \"2.4.0-07042021\"\n },\n \"GeneratorId\": \"prowler-check12\",\n \"AwsAccountId\": \"123456789123\",\n \"Types\": [\n \"ens-op.acc.5.aws.iam.1\"\n ],\n \"FirstObservedAt\": \"2021-05-17T23:07:03Z\",\n \"UpdatedAt\": \"2021-05-17T23:07:03Z\",\n \"CreatedAt\": \"2021-05-17T23:07:03Z\",\n \"Severity\": {\n \"Label\": \"HIGH\"\n },\n \"Title\": \"[check12] Ensure multi-factor authentication (MFA) is enabled for all IAM users that have a console password (Scored)\",\n \"Description\": \"User name6 has Password enabled but MFA disabled\",\n \"Resources\": [\n {\n \"Type\": \"AwsIamUser\",\n \"Id\": \"AWS::::Account:123456789123\",\n \"Partition\": \"aws\",\n \"Region\": \"us-east-1\"\n }\n ],\n \"Compliance\": {\n \"Status\": \"FAILED\",\n \"RelatedRequirements\": [\n \"ens-op.acc.5.aws.iam.1\"\n ]\n }\n },\n {\n \"SchemaVersion\": \"2018-10-08\",\n \"Id\": \"prowler-1.2-123456789123-us-east-1-User_name7_has_Password_enabled_but_MFA_disabled\",\n \"ProductArn\": \"arn:aws:securityhub:us-east-1::product/prowler/prowler\",\n \"RecordState\": \"ACTIVE\",\n \"ProductFields\": {\n \"ProviderName\": \"Prowler\",\n \"ProviderVersion\": \"2.4.0-07042021\"\n },\n \"GeneratorId\": \"prowler-check12\",\n \"AwsAccountId\": \"123456789123\",\n \"Types\": [\n \"ens-op.acc.5.aws.iam.1\"\n ],\n \"FirstObservedAt\": \"2021-05-17T23:07:03Z\",\n \"UpdatedAt\": \"2021-05-17T23:07:03Z\",\n \"CreatedAt\": \"2021-05-17T23:07:03Z\",\n \"Severity\": {\n \"Label\": \"HIGH\"\n },\n \"Title\": \"[check12] Ensure multi-factor authentication (MFA) is enabled for all IAM users that have a console password (Scored)\",\n \"Description\": \"User name7 has Password enabled but MFA disabled\",\n \"Resources\": [\n {\n \"Type\": \"AwsIamUser\",\n \"Id\": \"AWS::::Account:123456789123\",\n \"Partition\": \"aws\",\n \"Region\": \"us-east-1\"\n }\n ],\n \"Compliance\": {\n \"Status\": \"FAILED\",\n \"RelatedRequirements\": [\n \"ens-op.acc.5.aws.iam.1\"\n ]\n }\n },\n {\n \"SchemaVersion\": \"2018-10-08\",\n \"Id\": \"prowler-1.2-123456789123-us-east-1-User_name8_has_Password_enabled_but_MFA_disabled\",\n \"ProductArn\": \"arn:aws:securityhub:us-east-1::product/prowler/prowler\",\n \"RecordState\": \"ACTIVE\",\n \"ProductFields\": {\n \"ProviderName\": \"Prowler\",\n \"ProviderVersion\": \"2.4.0-07042021\"\n },\n \"GeneratorId\": \"prowler-check12\",\n \"AwsAccountId\": \"123456789123\",\n \"Types\": [\n \"ens-op.acc.5.aws.iam.1\"\n ],\n \"FirstObservedAt\": \"2021-05-17T23:07:03Z\",\n \"UpdatedAt\": \"2021-05-17T23:07:03Z\",\n \"CreatedAt\": \"2021-05-17T23:07:03Z\",\n \"Severity\": {\n \"Label\": \"HIGH\"\n },\n \"Title\": \"[check12] Ensure multi-factor authentication (MFA) is enabled for all IAM users that have a console password (Scored)\",\n \"Description\": \"User name8 has Password enabled but MFA disabled\",\n \"Resources\": [\n {\n \"Type\": \"AwsIamUser\",\n \"Id\": \"AWS::::Account:123456789123\",\n \"Partition\": \"aws\",\n \"Region\": \"us-east-1\"\n }\n ],\n \"Compliance\": {\n \"Status\": \"FAILED\",\n \"RelatedRequirements\": [\n \"ens-op.acc.5.aws.iam.1\"\n ]\n }\n },\n {\n \"SchemaVersion\": \"2018-10-08\",\n \"Id\": \"prowler-1.2-123456789123-us-east-1-User_name9_has_Password_enabled_but_MFA_disabled\",\n \"ProductArn\": \"arn:aws:securityhub:us-east-1::product/prowler/prowler\",\n \"RecordState\": \"ACTIVE\",\n \"ProductFields\": {\n \"ProviderName\": \"Prowler\",\n \"ProviderVersion\": \"2.4.0-07042021\"\n },\n \"GeneratorId\": \"prowler-check12\",\n \"AwsAccountId\": \"123456789123\",\n \"Types\": [\n \"ens-op.acc.5.aws.iam.1\"\n ],\n \"FirstObservedAt\": \"2021-05-17T23:07:04Z\",\n \"UpdatedAt\": \"2021-05-17T23:07:04Z\",\n \"CreatedAt\": \"2021-05-17T23:07:04Z\",\n \"Severity\": {\n \"Label\": \"HIGH\"\n },\n \"Title\": \"[check12] Ensure multi-factor authentication (MFA) is enabled for all IAM users that have a console password (Scored)\",\n \"Description\": \"User name9 has Password enabled but MFA disabled\",\n \"Resources\": [\n {\n \"Type\": \"AwsIamUser\",\n \"Id\": \"AWS::::Account:123456789123\",\n \"Partition\": \"aws\",\n \"Region\": \"us-east-1\"\n }\n ],\n \"Compliance\": {\n \"Status\": \"FAILED\",\n \"RelatedRequirements\": [\n \"ens-op.acc.5.aws.iam.1\"\n ]\n }\n }\n ]\n}", + "results": [ + { + "status": "failed", + "code_desc": "User name1 has Password enabled but MFA disabled; Resources: [Type: AwsIamUser, Id: AWS::::Account:123456789123, Partition: aws, Region: us-east-1]", + "start_time": "2021-05-17T23:07:02Z" + }, + { + "status": "failed", + "code_desc": "User name2 has Password enabled but MFA disabled; Resources: [Type: AwsIamUser, Id: AWS::::Account:123456789123, Partition: aws, Region: us-east-1]", + "start_time": "2021-05-17T23:07:02Z" + }, + { + "status": "failed", + "code_desc": "User name3 has Password enabled but MFA disabled; Resources: [Type: AwsIamUser, Id: AWS::::Account:123456789123, Partition: aws, Region: us-east-1]", + "start_time": "2021-05-17T23:07:03Z" + }, + { + "status": "failed", + "code_desc": "User name4 has Password enabled but MFA disabled; Resources: [Type: AwsIamUser, Id: AWS::::Account:123456789123, Partition: aws, Region: us-east-1]", + "start_time": "2021-05-17T23:07:03Z" + }, + { + "status": "failed", + "code_desc": "User name5 has Password enabled but MFA disabled; Resources: [Type: AwsIamUser, Id: AWS::::Account:123456789123, Partition: aws, Region: us-east-1]", + "start_time": "2021-05-17T23:07:03Z" + }, + { + "status": "failed", + "code_desc": "User name6 has Password enabled but MFA disabled; Resources: [Type: AwsIamUser, Id: AWS::::Account:123456789123, Partition: aws, Region: us-east-1]", + "start_time": "2021-05-17T23:07:03Z" + }, + { + "status": "failed", + "code_desc": "User name7 has Password enabled but MFA disabled; Resources: [Type: AwsIamUser, Id: AWS::::Account:123456789123, Partition: aws, Region: us-east-1]", + "start_time": "2021-05-17T23:07:03Z" + }, + { + "status": "failed", + "code_desc": "User name8 has Password enabled but MFA disabled; Resources: [Type: AwsIamUser, Id: AWS::::Account:123456789123, Partition: aws, Region: us-east-1]", + "start_time": "2021-05-17T23:07:03Z" + }, + { + "status": "failed", + "code_desc": "User name9 has Password enabled but MFA disabled; Resources: [Type: AwsIamUser, Id: AWS::::Account:123456789123, Partition: aws, Region: us-east-1]", + "start_time": "2021-05-17T23:07:04Z" + } + ] + } + ], + "sha256": "3b20f394ea8a31946642407f38ff6ffb3c79db748ed026055eb9dd8f20638a43" + } + ] +} \ No newline at end of file diff --git a/test/sample_data/asff/rhel7_V-71931-hdf.json b/test/sample_data/asff/rhel7_V-71931-hdf.json index 78e2b79e6..7db6f801c 100644 --- a/test/sample_data/asff/rhel7_V-71931-hdf.json +++ b/test/sample_data/asff/rhel7_V-71931-hdf.json @@ -662,4 +662,4 @@ "sha256": "c476d4680013b06a188ff88eae40280a591b7f03eafcee24511f2a7a91eb60ca" } ] -} \ No newline at end of file +} diff --git a/test/sample_data/asff/trivy-image_golang-1.12-alpine-hdf.json b/test/sample_data/asff/trivy-image_golang-1.12-alpine-hdf.json new file mode 100644 index 000000000..1b67a4527 --- /dev/null +++ b/test/sample_data/asff/trivy-image_golang-1.12-alpine-hdf.json @@ -0,0 +1,916 @@ +{ + "platform": { + "name": "Heimdall Tools", + "release": "2.6.27", + "target_id": "Aqua Security - Trivy" + }, + "version": "2.6.27", + "statistics": { + "duration": null + }, + "profiles": [ + { + "name": "Trivy", + "version": "", + "title": "Trivy Findings", + "maintainer": null, + "summary": "", + "license": null, + "copyright": null, + "copyright_email": null, + "supports": [], + "attributes": [], + "depends": [], + "groups": [], + "status": "loaded", + "controls": [ + { + "id": "Trivy/CVE-2021-36159", + "title": "Trivy found a vulnerability to CVE-2021-36159 in container golang:1.12-alpine (alpine 3.11.3)", + "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], + "nist": [ + "SI-2", + "RA-5" + ] + }, + "impact": 0.9, + "desc": "libfetch before 2021-07-26, as used in apk-tools, xbps, and other products, mishandles numeric strings for the FTP and HTTP protocols. The FTP passive mode implementation allows an out-of-bounds read because strtol is used to parse the relevant numbers into address bytes. It does not check if the line ends prematurely. If it does, the for-loop condition checks for the &#39;\\0&#39; terminator one byte too late.", + "descriptions": [ + { + "data": "More information on this vulnerability is provided in the hyperlink\nhttps://avd.aquasec.com/nvd/cve-2021-36159", + "label": "fix" + } + ], + "refs": [], + "source_location": {}, + "code": "{\n \"Findings\": [\n {\n \"SchemaVersion\": \"2018-10-08\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)/CVE-2021-36159\",\n \"ProductArn\": \"arn:aws:securityhub:us-east-1::product/aquasecurity/aquasecurity\",\n \"GeneratorId\": \"Trivy\",\n \"AwsAccountId\": \"123456789012\",\n \"Types\": [\n \"Software and Configuration Checks/Vulnerabilities/CVE\"\n ],\n \"CreatedAt\": \"2022-02-07T23:51:26.938789-05:00\",\n \"UpdatedAt\": \"2022-02-07T23:51:26.938817-05:00\",\n \"Severity\": {\n \"Label\": \"CRITICAL\"\n },\n \"Title\": \"Trivy found a vulnerability to CVE-2021-36159 in container golang:1.12-alpine (alpine 3.11.3)\",\n \"Description\": \"libfetch before 2021-07-26, as used in apk-tools, xbps, and other products, mishandles numeric strings for the FTP and HTTP protocols. The FTP passive mode implementation allows an out-of-bounds read because strtol is used to parse the relevant numbers into address bytes. It does not check if the line ends prematurely. If it does, the for-loop condition checks for the '\\\\0' terminator one byte too late.\",\n \"Remediation\": {\n \"Recommendation\": {\n \"Text\": \"More information on this vulnerability is provided in the hyperlink\",\n \"Url\": \"https://avd.aquasec.com/nvd/cve-2021-36159\"\n }\n },\n \"ProductFields\": {\n \"Product Name\": \"Trivy\"\n },\n \"Resources\": [\n {\n \"Type\": \"Container\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)\",\n \"Partition\": \"aws\",\n \"Region\": \"us-east-1\",\n \"Details\": {\n \"Container\": {\n \"ImageName\": \"golang:1.12-alpine (alpine 3.11.3)\"\n },\n \"Other\": {\n \"CVE ID\": \"CVE-2021-36159\",\n \"CVE Title\": \"\",\n \"PkgName\": \"apk-tools\",\n \"Installed Package\": \"2.10.4-r3\",\n \"Patched Package\": \"2.10.7-r0\",\n \"NvdCvssScoreV3\": \"9.1\",\n \"NvdCvssVectorV3\": \"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:H\",\n \"NvdCvssScoreV2\": \"6.4\",\n \"NvdCvssVectorV2\": \"AV:N/AC:L/Au:N/C:P/I:N/A:P\"\n }\n }\n }\n ],\n \"RecordState\": \"ACTIVE\"\n }\n ]\n}", + "results": [ + { + "status": "failed", + "code_desc": "Resources: [Type: Container, Id: golang:1.12-alpine (alpine 3.11.3), Partition: aws, Region: us-east-1]", + "start_time": "2022-02-07T23:51:26.938817-05:00", + "message": "For package apk-tools, the current version that is installed is 2.10.4-r3. The package has been patched since version(s): 2.10.7-r0." + } + ] + }, + { + "id": "Trivy/CVE-2021-30139", + "title": "Trivy found a vulnerability to CVE-2021-30139 in container golang:1.12-alpine (alpine 3.11.3)", + "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], + "nist": [ + "SI-2", + "RA-5" + ] + }, + "impact": 0.7, + "desc": "In Alpine Linux apk-tools before 2.12.5, the tarball parser allows a buffer overflow and crash.", + "descriptions": [ + { + "data": "More information on this vulnerability is provided in the hyperlink\nhttps://avd.aquasec.com/nvd/cve-2021-30139", + "label": "fix" + } + ], + "refs": [], + "source_location": {}, + "code": "{\n \"Findings\": [\n {\n \"SchemaVersion\": \"2018-10-08\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)/CVE-2021-30139\",\n \"ProductArn\": \"arn:aws:securityhub:us-east-1::product/aquasecurity/aquasecurity\",\n \"GeneratorId\": \"Trivy\",\n \"AwsAccountId\": \"123456789012\",\n \"Types\": [\n \"Software and Configuration Checks/Vulnerabilities/CVE\"\n ],\n \"CreatedAt\": \"2022-02-07T23:51:26.939264-05:00\",\n \"UpdatedAt\": \"2022-02-07T23:51:26.939283-05:00\",\n \"Severity\": {\n \"Label\": \"HIGH\"\n },\n \"Title\": \"Trivy found a vulnerability to CVE-2021-30139 in container golang:1.12-alpine (alpine 3.11.3)\",\n \"Description\": \"In Alpine Linux apk-tools before 2.12.5, the tarball parser allows a buffer overflow and crash.\",\n \"Remediation\": {\n \"Recommendation\": {\n \"Text\": \"More information on this vulnerability is provided in the hyperlink\",\n \"Url\": \"https://avd.aquasec.com/nvd/cve-2021-30139\"\n }\n },\n \"ProductFields\": {\n \"Product Name\": \"Trivy\"\n },\n \"Resources\": [\n {\n \"Type\": \"Container\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)\",\n \"Partition\": \"aws\",\n \"Region\": \"us-east-1\",\n \"Details\": {\n \"Container\": {\n \"ImageName\": \"golang:1.12-alpine (alpine 3.11.3)\"\n },\n \"Other\": {\n \"CVE ID\": \"CVE-2021-30139\",\n \"CVE Title\": \"\",\n \"PkgName\": \"apk-tools\",\n \"Installed Package\": \"2.10.4-r3\",\n \"Patched Package\": \"2.10.6-r0\",\n \"NvdCvssScoreV3\": \"7.5\",\n \"NvdCvssVectorV3\": \"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H\",\n \"NvdCvssScoreV2\": \"5\",\n \"NvdCvssVectorV2\": \"AV:N/AC:L/Au:N/C:N/I:N/A:P\"\n }\n }\n }\n ],\n \"RecordState\": \"ACTIVE\"\n }\n ]\n}", + "results": [ + { + "status": "failed", + "code_desc": "Resources: [Type: Container, Id: golang:1.12-alpine (alpine 3.11.3), Partition: aws, Region: us-east-1]", + "start_time": "2022-02-07T23:51:26.939283-05:00", + "message": "For package apk-tools, the current version that is installed is 2.10.4-r3. The package has been patched since version(s): 2.10.6-r0." + } + ] + }, + { + "id": "Trivy/CVE-2021-28831", + "title": "Trivy found a vulnerability to CVE-2021-28831 in container golang:1.12-alpine (alpine 3.11.3)", + "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], + "nist": [ + "SI-2", + "RA-5" + ] + }, + "impact": 0.7, + "desc": "decompress_gunzip.c in BusyBox through 1.32.1 mishandles the error bit on the huft_build result pointer, with a resultant invalid free or segmentation fault, via malformed gzip data.", + "descriptions": [ + { + "data": "More information on this vulnerability is provided in the hyperlink\nhttps://avd.aquasec.com/nvd/cve-2021-28831", + "label": "fix" + } + ], + "refs": [], + "source_location": {}, + "code": "{\n \"Findings\": [\n {\n \"SchemaVersion\": \"2018-10-08\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)/CVE-2021-28831\",\n \"ProductArn\": \"arn:aws:securityhub:us-east-1::product/aquasecurity/aquasecurity\",\n \"GeneratorId\": \"Trivy\",\n \"AwsAccountId\": \"123456789012\",\n \"Types\": [\n \"Software and Configuration Checks/Vulnerabilities/CVE\"\n ],\n \"CreatedAt\": \"2022-02-07T23:51:26.939735-05:00\",\n \"UpdatedAt\": \"2022-02-07T23:51:26.939749-05:00\",\n \"Severity\": {\n \"Label\": \"HIGH\"\n },\n \"Title\": \"Trivy found a vulnerability to CVE-2021-28831 in container golang:1.12-alpine (alpine 3.11.3)\",\n \"Description\": \"decompress_gunzip.c in BusyBox through 1.32.1 mishandles the error bit on the huft_build result pointer, with a resultant invalid free or segmentation fault, via malformed gzip data.\",\n \"Remediation\": {\n \"Recommendation\": {\n \"Text\": \"More information on this vulnerability is provided in the hyperlink\",\n \"Url\": \"https://avd.aquasec.com/nvd/cve-2021-28831\"\n }\n },\n \"ProductFields\": {\n \"Product Name\": \"Trivy\"\n },\n \"Resources\": [\n {\n \"Type\": \"Container\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)\",\n \"Partition\": \"aws\",\n \"Region\": \"us-east-1\",\n \"Details\": {\n \"Container\": {\n \"ImageName\": \"golang:1.12-alpine (alpine 3.11.3)\"\n },\n \"Other\": {\n \"CVE ID\": \"CVE-2021-28831\",\n \"CVE Title\": \"busybox: invalid free or segmentation fault via malformed gzip data\",\n \"PkgName\": \"busybox\",\n \"Installed Package\": \"1.31.1-r9\",\n \"Patched Package\": \"1.31.1-r10\",\n \"NvdCvssScoreV3\": \"7.5\",\n \"NvdCvssVectorV3\": \"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H\",\n \"NvdCvssScoreV2\": \"5\",\n \"NvdCvssVectorV2\": \"AV:N/AC:L/Au:N/C:N/I:N/A:P\"\n }\n }\n }\n ],\n \"RecordState\": \"ACTIVE\"\n },\n {\n \"SchemaVersion\": \"2018-10-08\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)/CVE-2021-28831\",\n \"ProductArn\": \"arn:aws:securityhub:us-east-1::product/aquasecurity/aquasecurity\",\n \"GeneratorId\": \"Trivy\",\n \"AwsAccountId\": \"123456789012\",\n \"Types\": [\n \"Software and Configuration Checks/Vulnerabilities/CVE\"\n ],\n \"CreatedAt\": \"2022-02-07T23:51:26.947859-05:00\",\n \"UpdatedAt\": \"2022-02-07T23:51:26.94787-05:00\",\n \"Severity\": {\n \"Label\": \"HIGH\"\n },\n \"Title\": \"Trivy found a vulnerability to CVE-2021-28831 in container golang:1.12-alpine (alpine 3.11.3)\",\n \"Description\": \"decompress_gunzip.c in BusyBox through 1.32.1 mishandles the error bit on the huft_build result pointer, with a resultant invalid free or segmentation fault, via malformed gzip data.\",\n \"Remediation\": {\n \"Recommendation\": {\n \"Text\": \"More information on this vulnerability is provided in the hyperlink\",\n \"Url\": \"https://avd.aquasec.com/nvd/cve-2021-28831\"\n }\n },\n \"ProductFields\": {\n \"Product Name\": \"Trivy\"\n },\n \"Resources\": [\n {\n \"Type\": \"Container\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)\",\n \"Partition\": \"aws\",\n \"Region\": \"us-east-1\",\n \"Details\": {\n \"Container\": {\n \"ImageName\": \"golang:1.12-alpine (alpine 3.11.3)\"\n },\n \"Other\": {\n \"CVE ID\": \"CVE-2021-28831\",\n \"CVE Title\": \"busybox: invalid free or segmentation fault via malformed gzip data\",\n \"PkgName\": \"ssl_client\",\n \"Installed Package\": \"1.31.1-r9\",\n \"Patched Package\": \"1.31.1-r10\",\n \"NvdCvssScoreV3\": \"7.5\",\n \"NvdCvssVectorV3\": \"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H\",\n \"NvdCvssScoreV2\": \"5\",\n \"NvdCvssVectorV2\": \"AV:N/AC:L/Au:N/C:N/I:N/A:P\"\n }\n }\n }\n ],\n \"RecordState\": \"ACTIVE\"\n }\n ]\n}", + "results": [ + { + "status": "failed", + "code_desc": "Resources: [Type: Container, Id: golang:1.12-alpine (alpine 3.11.3), Partition: aws, Region: us-east-1]", + "start_time": "2022-02-07T23:51:26.939749-05:00", + "message": "For package busybox, the current version that is installed is 1.31.1-r9. The package has been patched since version(s): 1.31.1-r10." + }, + { + "status": "failed", + "code_desc": "Resources: [Type: Container, Id: golang:1.12-alpine (alpine 3.11.3), Partition: aws, Region: us-east-1]", + "start_time": "2022-02-07T23:51:26.94787-05:00", + "message": "For package ssl_client, the current version that is installed is 1.31.1-r9. The package has been patched since version(s): 1.31.1-r10." + } + ] + }, + { + "id": "Trivy/CVE-2021-42378", + "title": "Trivy found a vulnerability to CVE-2021-42378 in container golang:1.12-alpine (alpine 3.11.3)", + "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], + "nist": [ + "SI-2", + "RA-5" + ] + }, + "impact": 0.7, + "desc": "A use-after-free in Busybox&#39;s awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the getvar_i function", + "descriptions": [ + { + "data": "More information on this vulnerability is provided in the hyperlink\nhttps://avd.aquasec.com/nvd/cve-2021-42378", + "label": "fix" + } + ], + "refs": [], + "source_location": {}, + "code": "{\n \"Findings\": [\n {\n \"SchemaVersion\": \"2018-10-08\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)/CVE-2021-42378\",\n \"ProductArn\": \"arn:aws:securityhub:us-east-1::product/aquasecurity/aquasecurity\",\n \"GeneratorId\": \"Trivy\",\n \"AwsAccountId\": \"123456789012\",\n \"Types\": [\n \"Software and Configuration Checks/Vulnerabilities/CVE\"\n ],\n \"CreatedAt\": \"2022-02-07T23:51:26.939999-05:00\",\n \"UpdatedAt\": \"2022-02-07T23:51:26.94001-05:00\",\n \"Severity\": {\n \"Label\": \"HIGH\"\n },\n \"Title\": \"Trivy found a vulnerability to CVE-2021-42378 in container golang:1.12-alpine (alpine 3.11.3)\",\n \"Description\": \"A use-after-free in Busybox's awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the getvar_i function\",\n \"Remediation\": {\n \"Recommendation\": {\n \"Text\": \"More information on this vulnerability is provided in the hyperlink\",\n \"Url\": \"https://avd.aquasec.com/nvd/cve-2021-42378\"\n }\n },\n \"ProductFields\": {\n \"Product Name\": \"Trivy\"\n },\n \"Resources\": [\n {\n \"Type\": \"Container\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)\",\n \"Partition\": \"aws\",\n \"Region\": \"us-east-1\",\n \"Details\": {\n \"Container\": {\n \"ImageName\": \"golang:1.12-alpine (alpine 3.11.3)\"\n },\n \"Other\": {\n \"CVE ID\": \"CVE-2021-42378\",\n \"CVE Title\": \"busybox: use-after-free in awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the getvar_i()\",\n \"PkgName\": \"busybox\",\n \"Installed Package\": \"1.31.1-r9\",\n \"Patched Package\": \"1.31.1-r11\",\n \"NvdCvssScoreV3\": \"7.2\",\n \"NvdCvssVectorV3\": \"CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H\",\n \"NvdCvssScoreV2\": \"6.5\",\n \"NvdCvssVectorV2\": \"AV:N/AC:L/Au:S/C:P/I:P/A:P\"\n }\n }\n }\n ],\n \"RecordState\": \"ACTIVE\"\n },\n {\n \"SchemaVersion\": \"2018-10-08\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)/CVE-2021-42378\",\n \"ProductArn\": \"arn:aws:securityhub:us-east-1::product/aquasecurity/aquasecurity\",\n \"GeneratorId\": \"Trivy\",\n \"AwsAccountId\": \"123456789012\",\n \"Types\": [\n \"Software and Configuration Checks/Vulnerabilities/CVE\"\n ],\n \"CreatedAt\": \"2022-02-07T23:51:26.948095-05:00\",\n \"UpdatedAt\": \"2022-02-07T23:51:26.948105-05:00\",\n \"Severity\": {\n \"Label\": \"HIGH\"\n },\n \"Title\": \"Trivy found a vulnerability to CVE-2021-42378 in container golang:1.12-alpine (alpine 3.11.3)\",\n \"Description\": \"A use-after-free in Busybox's awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the getvar_i function\",\n \"Remediation\": {\n \"Recommendation\": {\n \"Text\": \"More information on this vulnerability is provided in the hyperlink\",\n \"Url\": \"https://avd.aquasec.com/nvd/cve-2021-42378\"\n }\n },\n \"ProductFields\": {\n \"Product Name\": \"Trivy\"\n },\n \"Resources\": [\n {\n \"Type\": \"Container\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)\",\n \"Partition\": \"aws\",\n \"Region\": \"us-east-1\",\n \"Details\": {\n \"Container\": {\n \"ImageName\": \"golang:1.12-alpine (alpine 3.11.3)\"\n },\n \"Other\": {\n \"CVE ID\": \"CVE-2021-42378\",\n \"CVE Title\": \"busybox: use-after-free in awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the getvar_i()\",\n \"PkgName\": \"ssl_client\",\n \"Installed Package\": \"1.31.1-r9\",\n \"Patched Package\": \"1.31.1-r11\",\n \"NvdCvssScoreV3\": \"7.2\",\n \"NvdCvssVectorV3\": \"CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H\",\n \"NvdCvssScoreV2\": \"6.5\",\n \"NvdCvssVectorV2\": \"AV:N/AC:L/Au:S/C:P/I:P/A:P\"\n }\n }\n }\n ],\n \"RecordState\": \"ACTIVE\"\n }\n ]\n}", + "results": [ + { + "status": "failed", + "code_desc": "Resources: [Type: Container, Id: golang:1.12-alpine (alpine 3.11.3), Partition: aws, Region: us-east-1]", + "start_time": "2022-02-07T23:51:26.94001-05:00", + "message": "For package busybox, the current version that is installed is 1.31.1-r9. The package has been patched since version(s): 1.31.1-r11." + }, + { + "status": "failed", + "code_desc": "Resources: [Type: Container, Id: golang:1.12-alpine (alpine 3.11.3), Partition: aws, Region: us-east-1]", + "start_time": "2022-02-07T23:51:26.948105-05:00", + "message": "For package ssl_client, the current version that is installed is 1.31.1-r9. The package has been patched since version(s): 1.31.1-r11." + } + ] + }, + { + "id": "Trivy/CVE-2021-42379", + "title": "Trivy found a vulnerability to CVE-2021-42379 in container golang:1.12-alpine (alpine 3.11.3)", + "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], + "nist": [ + "SI-2", + "RA-5" + ] + }, + "impact": 0.7, + "desc": "A use-after-free in Busybox&#39;s awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the next_input_file function", + "descriptions": [ + { + "data": "More information on this vulnerability is provided in the hyperlink\nhttps://avd.aquasec.com/nvd/cve-2021-42379", + "label": "fix" + } + ], + "refs": [], + "source_location": {}, + "code": "{\n \"Findings\": [\n {\n \"SchemaVersion\": \"2018-10-08\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)/CVE-2021-42379\",\n \"ProductArn\": \"arn:aws:securityhub:us-east-1::product/aquasecurity/aquasecurity\",\n \"GeneratorId\": \"Trivy\",\n \"AwsAccountId\": \"123456789012\",\n \"Types\": [\n \"Software and Configuration Checks/Vulnerabilities/CVE\"\n ],\n \"CreatedAt\": \"2022-02-07T23:51:26.940267-05:00\",\n \"UpdatedAt\": \"2022-02-07T23:51:26.940279-05:00\",\n \"Severity\": {\n \"Label\": \"HIGH\"\n },\n \"Title\": \"Trivy found a vulnerability to CVE-2021-42379 in container golang:1.12-alpine (alpine 3.11.3)\",\n \"Description\": \"A use-after-free in Busybox's awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the next_input_file function\",\n \"Remediation\": {\n \"Recommendation\": {\n \"Text\": \"More information on this vulnerability is provided in the hyperlink\",\n \"Url\": \"https://avd.aquasec.com/nvd/cve-2021-42379\"\n }\n },\n \"ProductFields\": {\n \"Product Name\": \"Trivy\"\n },\n \"Resources\": [\n {\n \"Type\": \"Container\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)\",\n \"Partition\": \"aws\",\n \"Region\": \"us-east-1\",\n \"Details\": {\n \"Container\": {\n \"ImageName\": \"golang:1.12-alpine (alpine 3.11.3)\"\n },\n \"Other\": {\n \"CVE ID\": \"CVE-2021-42379\",\n \"CVE Title\": \"busybox: use-after-free in awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the next_input_file()\",\n \"PkgName\": \"busybox\",\n \"Installed Package\": \"1.31.1-r9\",\n \"Patched Package\": \"1.31.1-r11\",\n \"NvdCvssScoreV3\": \"7.2\",\n \"NvdCvssVectorV3\": \"CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H\",\n \"NvdCvssScoreV2\": \"6.5\",\n \"NvdCvssVectorV2\": \"AV:N/AC:L/Au:S/C:P/I:P/A:P\"\n }\n }\n }\n ],\n \"RecordState\": \"ACTIVE\"\n },\n {\n \"SchemaVersion\": \"2018-10-08\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)/CVE-2021-42379\",\n \"ProductArn\": \"arn:aws:securityhub:us-east-1::product/aquasecurity/aquasecurity\",\n \"GeneratorId\": \"Trivy\",\n \"AwsAccountId\": \"123456789012\",\n \"Types\": [\n \"Software and Configuration Checks/Vulnerabilities/CVE\"\n ],\n \"CreatedAt\": \"2022-02-07T23:51:26.948334-05:00\",\n \"UpdatedAt\": \"2022-02-07T23:51:26.948345-05:00\",\n \"Severity\": {\n \"Label\": \"HIGH\"\n },\n \"Title\": \"Trivy found a vulnerability to CVE-2021-42379 in container golang:1.12-alpine (alpine 3.11.3)\",\n \"Description\": \"A use-after-free in Busybox's awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the next_input_file function\",\n \"Remediation\": {\n \"Recommendation\": {\n \"Text\": \"More information on this vulnerability is provided in the hyperlink\",\n \"Url\": \"https://avd.aquasec.com/nvd/cve-2021-42379\"\n }\n },\n \"ProductFields\": {\n \"Product Name\": \"Trivy\"\n },\n \"Resources\": [\n {\n \"Type\": \"Container\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)\",\n \"Partition\": \"aws\",\n \"Region\": \"us-east-1\",\n \"Details\": {\n \"Container\": {\n \"ImageName\": \"golang:1.12-alpine (alpine 3.11.3)\"\n },\n \"Other\": {\n \"CVE ID\": \"CVE-2021-42379\",\n \"CVE Title\": \"busybox: use-after-free in awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the next_input_file()\",\n \"PkgName\": \"ssl_client\",\n \"Installed Package\": \"1.31.1-r9\",\n \"Patched Package\": \"1.31.1-r11\",\n \"NvdCvssScoreV3\": \"7.2\",\n \"NvdCvssVectorV3\": \"CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H\",\n \"NvdCvssScoreV2\": \"6.5\",\n \"NvdCvssVectorV2\": \"AV:N/AC:L/Au:S/C:P/I:P/A:P\"\n }\n }\n }\n ],\n \"RecordState\": \"ACTIVE\"\n }\n ]\n}", + "results": [ + { + "status": "failed", + "code_desc": "Resources: [Type: Container, Id: golang:1.12-alpine (alpine 3.11.3), Partition: aws, Region: us-east-1]", + "start_time": "2022-02-07T23:51:26.940279-05:00", + "message": "For package busybox, the current version that is installed is 1.31.1-r9. The package has been patched since version(s): 1.31.1-r11." + }, + { + "status": "failed", + "code_desc": "Resources: [Type: Container, Id: golang:1.12-alpine (alpine 3.11.3), Partition: aws, Region: us-east-1]", + "start_time": "2022-02-07T23:51:26.948345-05:00", + "message": "For package ssl_client, the current version that is installed is 1.31.1-r9. The package has been patched since version(s): 1.31.1-r11." + } + ] + }, + { + "id": "Trivy/CVE-2021-42380", + "title": "Trivy found a vulnerability to CVE-2021-42380 in container golang:1.12-alpine (alpine 3.11.3)", + "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], + "nist": [ + "SI-2", + "RA-5" + ] + }, + "impact": 0.7, + "desc": "A use-after-free in Busybox&#39;s awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the clrvar function", + "descriptions": [ + { + "data": "More information on this vulnerability is provided in the hyperlink\nhttps://avd.aquasec.com/nvd/cve-2021-42380", + "label": "fix" + } + ], + "refs": [], + "source_location": {}, + "code": "{\n \"Findings\": [\n {\n \"SchemaVersion\": \"2018-10-08\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)/CVE-2021-42380\",\n \"ProductArn\": \"arn:aws:securityhub:us-east-1::product/aquasecurity/aquasecurity\",\n \"GeneratorId\": \"Trivy\",\n \"AwsAccountId\": \"123456789012\",\n \"Types\": [\n \"Software and Configuration Checks/Vulnerabilities/CVE\"\n ],\n \"CreatedAt\": \"2022-02-07T23:51:26.940513-05:00\",\n \"UpdatedAt\": \"2022-02-07T23:51:26.940524-05:00\",\n \"Severity\": {\n \"Label\": \"HIGH\"\n },\n \"Title\": \"Trivy found a vulnerability to CVE-2021-42380 in container golang:1.12-alpine (alpine 3.11.3)\",\n \"Description\": \"A use-after-free in Busybox's awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the clrvar function\",\n \"Remediation\": {\n \"Recommendation\": {\n \"Text\": \"More information on this vulnerability is provided in the hyperlink\",\n \"Url\": \"https://avd.aquasec.com/nvd/cve-2021-42380\"\n }\n },\n \"ProductFields\": {\n \"Product Name\": \"Trivy\"\n },\n \"Resources\": [\n {\n \"Type\": \"Container\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)\",\n \"Partition\": \"aws\",\n \"Region\": \"us-east-1\",\n \"Details\": {\n \"Container\": {\n \"ImageName\": \"golang:1.12-alpine (alpine 3.11.3)\"\n },\n \"Other\": {\n \"CVE ID\": \"CVE-2021-42380\",\n \"CVE Title\": \"busybox: use-after-free in awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the clrvar()\",\n \"PkgName\": \"busybox\",\n \"Installed Package\": \"1.31.1-r9\",\n \"Patched Package\": \"1.31.1-r11\",\n \"NvdCvssScoreV3\": \"7.2\",\n \"NvdCvssVectorV3\": \"CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H\",\n \"NvdCvssScoreV2\": \"6.5\",\n \"NvdCvssVectorV2\": \"AV:N/AC:L/Au:S/C:P/I:P/A:P\"\n }\n }\n }\n ],\n \"RecordState\": \"ACTIVE\"\n },\n {\n \"SchemaVersion\": \"2018-10-08\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)/CVE-2021-42380\",\n \"ProductArn\": \"arn:aws:securityhub:us-east-1::product/aquasecurity/aquasecurity\",\n \"GeneratorId\": \"Trivy\",\n \"AwsAccountId\": \"123456789012\",\n \"Types\": [\n \"Software and Configuration Checks/Vulnerabilities/CVE\"\n ],\n \"CreatedAt\": \"2022-02-07T23:51:26.948574-05:00\",\n \"UpdatedAt\": \"2022-02-07T23:51:26.948585-05:00\",\n \"Severity\": {\n \"Label\": \"HIGH\"\n },\n \"Title\": \"Trivy found a vulnerability to CVE-2021-42380 in container golang:1.12-alpine (alpine 3.11.3)\",\n \"Description\": \"A use-after-free in Busybox's awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the clrvar function\",\n \"Remediation\": {\n \"Recommendation\": {\n \"Text\": \"More information on this vulnerability is provided in the hyperlink\",\n \"Url\": \"https://avd.aquasec.com/nvd/cve-2021-42380\"\n }\n },\n \"ProductFields\": {\n \"Product Name\": \"Trivy\"\n },\n \"Resources\": [\n {\n \"Type\": \"Container\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)\",\n \"Partition\": \"aws\",\n \"Region\": \"us-east-1\",\n \"Details\": {\n \"Container\": {\n \"ImageName\": \"golang:1.12-alpine (alpine 3.11.3)\"\n },\n \"Other\": {\n \"CVE ID\": \"CVE-2021-42380\",\n \"CVE Title\": \"busybox: use-after-free in awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the clrvar()\",\n \"PkgName\": \"ssl_client\",\n \"Installed Package\": \"1.31.1-r9\",\n \"Patched Package\": \"1.31.1-r11\",\n \"NvdCvssScoreV3\": \"7.2\",\n \"NvdCvssVectorV3\": \"CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H\",\n \"NvdCvssScoreV2\": \"6.5\",\n \"NvdCvssVectorV2\": \"AV:N/AC:L/Au:S/C:P/I:P/A:P\"\n }\n }\n }\n ],\n \"RecordState\": \"ACTIVE\"\n }\n ]\n}", + "results": [ + { + "status": "failed", + "code_desc": "Resources: [Type: Container, Id: golang:1.12-alpine (alpine 3.11.3), Partition: aws, Region: us-east-1]", + "start_time": "2022-02-07T23:51:26.940524-05:00", + "message": "For package busybox, the current version that is installed is 1.31.1-r9. The package has been patched since version(s): 1.31.1-r11." + }, + { + "status": "failed", + "code_desc": "Resources: [Type: Container, Id: golang:1.12-alpine (alpine 3.11.3), Partition: aws, Region: us-east-1]", + "start_time": "2022-02-07T23:51:26.948585-05:00", + "message": "For package ssl_client, the current version that is installed is 1.31.1-r9. The package has been patched since version(s): 1.31.1-r11." + } + ] + }, + { + "id": "Trivy/CVE-2021-42381", + "title": "Trivy found a vulnerability to CVE-2021-42381 in container golang:1.12-alpine (alpine 3.11.3)", + "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], + "nist": [ + "SI-2", + "RA-5" + ] + }, + "impact": 0.7, + "desc": "A use-after-free in Busybox&#39;s awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the hash_init function", + "descriptions": [ + { + "data": "More information on this vulnerability is provided in the hyperlink\nhttps://avd.aquasec.com/nvd/cve-2021-42381", + "label": "fix" + } + ], + "refs": [], + "source_location": {}, + "code": "{\n \"Findings\": [\n {\n \"SchemaVersion\": \"2018-10-08\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)/CVE-2021-42381\",\n \"ProductArn\": \"arn:aws:securityhub:us-east-1::product/aquasecurity/aquasecurity\",\n \"GeneratorId\": \"Trivy\",\n \"AwsAccountId\": \"123456789012\",\n \"Types\": [\n \"Software and Configuration Checks/Vulnerabilities/CVE\"\n ],\n \"CreatedAt\": \"2022-02-07T23:51:26.940781-05:00\",\n \"UpdatedAt\": \"2022-02-07T23:51:26.940792-05:00\",\n \"Severity\": {\n \"Label\": \"HIGH\"\n },\n \"Title\": \"Trivy found a vulnerability to CVE-2021-42381 in container golang:1.12-alpine (alpine 3.11.3)\",\n \"Description\": \"A use-after-free in Busybox's awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the hash_init function\",\n \"Remediation\": {\n \"Recommendation\": {\n \"Text\": \"More information on this vulnerability is provided in the hyperlink\",\n \"Url\": \"https://avd.aquasec.com/nvd/cve-2021-42381\"\n }\n },\n \"ProductFields\": {\n \"Product Name\": \"Trivy\"\n },\n \"Resources\": [\n {\n \"Type\": \"Container\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)\",\n \"Partition\": \"aws\",\n \"Region\": \"us-east-1\",\n \"Details\": {\n \"Container\": {\n \"ImageName\": \"golang:1.12-alpine (alpine 3.11.3)\"\n },\n \"Other\": {\n \"CVE ID\": \"CVE-2021-42381\",\n \"CVE Title\": \"busybox: use-after-free in awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the hash_init()\",\n \"PkgName\": \"busybox\",\n \"Installed Package\": \"1.31.1-r9\",\n \"Patched Package\": \"1.31.1-r11\",\n \"NvdCvssScoreV3\": \"7.2\",\n \"NvdCvssVectorV3\": \"CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H\",\n \"NvdCvssScoreV2\": \"6.5\",\n \"NvdCvssVectorV2\": \"AV:N/AC:L/Au:S/C:P/I:P/A:P\"\n }\n }\n }\n ],\n \"RecordState\": \"ACTIVE\"\n },\n {\n \"SchemaVersion\": \"2018-10-08\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)/CVE-2021-42381\",\n \"ProductArn\": \"arn:aws:securityhub:us-east-1::product/aquasecurity/aquasecurity\",\n \"GeneratorId\": \"Trivy\",\n \"AwsAccountId\": \"123456789012\",\n \"Types\": [\n \"Software and Configuration Checks/Vulnerabilities/CVE\"\n ],\n \"CreatedAt\": \"2022-02-07T23:51:26.948823-05:00\",\n \"UpdatedAt\": \"2022-02-07T23:51:26.948835-05:00\",\n \"Severity\": {\n \"Label\": \"HIGH\"\n },\n \"Title\": \"Trivy found a vulnerability to CVE-2021-42381 in container golang:1.12-alpine (alpine 3.11.3)\",\n \"Description\": \"A use-after-free in Busybox's awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the hash_init function\",\n \"Remediation\": {\n \"Recommendation\": {\n \"Text\": \"More information on this vulnerability is provided in the hyperlink\",\n \"Url\": \"https://avd.aquasec.com/nvd/cve-2021-42381\"\n }\n },\n \"ProductFields\": {\n \"Product Name\": \"Trivy\"\n },\n \"Resources\": [\n {\n \"Type\": \"Container\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)\",\n \"Partition\": \"aws\",\n \"Region\": \"us-east-1\",\n \"Details\": {\n \"Container\": {\n \"ImageName\": \"golang:1.12-alpine (alpine 3.11.3)\"\n },\n \"Other\": {\n \"CVE ID\": \"CVE-2021-42381\",\n \"CVE Title\": \"busybox: use-after-free in awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the hash_init()\",\n \"PkgName\": \"ssl_client\",\n \"Installed Package\": \"1.31.1-r9\",\n \"Patched Package\": \"1.31.1-r11\",\n \"NvdCvssScoreV3\": \"7.2\",\n \"NvdCvssVectorV3\": \"CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H\",\n \"NvdCvssScoreV2\": \"6.5\",\n \"NvdCvssVectorV2\": \"AV:N/AC:L/Au:S/C:P/I:P/A:P\"\n }\n }\n }\n ],\n \"RecordState\": \"ACTIVE\"\n }\n ]\n}", + "results": [ + { + "status": "failed", + "code_desc": "Resources: [Type: Container, Id: golang:1.12-alpine (alpine 3.11.3), Partition: aws, Region: us-east-1]", + "start_time": "2022-02-07T23:51:26.940792-05:00", + "message": "For package busybox, the current version that is installed is 1.31.1-r9. The package has been patched since version(s): 1.31.1-r11." + }, + { + "status": "failed", + "code_desc": "Resources: [Type: Container, Id: golang:1.12-alpine (alpine 3.11.3), Partition: aws, Region: us-east-1]", + "start_time": "2022-02-07T23:51:26.948835-05:00", + "message": "For package ssl_client, the current version that is installed is 1.31.1-r9. The package has been patched since version(s): 1.31.1-r11." + } + ] + }, + { + "id": "Trivy/CVE-2021-42382", + "title": "Trivy found a vulnerability to CVE-2021-42382 in container golang:1.12-alpine (alpine 3.11.3)", + "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], + "nist": [ + "SI-2", + "RA-5" + ] + }, + "impact": 0.7, + "desc": "A use-after-free in Busybox&#39;s awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the getvar_s function", + "descriptions": [ + { + "data": "More information on this vulnerability is provided in the hyperlink\nhttps://avd.aquasec.com/nvd/cve-2021-42382", + "label": "fix" + } + ], + "refs": [], + "source_location": {}, + "code": "{\n \"Findings\": [\n {\n \"SchemaVersion\": \"2018-10-08\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)/CVE-2021-42382\",\n \"ProductArn\": \"arn:aws:securityhub:us-east-1::product/aquasecurity/aquasecurity\",\n \"GeneratorId\": \"Trivy\",\n \"AwsAccountId\": \"123456789012\",\n \"Types\": [\n \"Software and Configuration Checks/Vulnerabilities/CVE\"\n ],\n \"CreatedAt\": \"2022-02-07T23:51:26.941027-05:00\",\n \"UpdatedAt\": \"2022-02-07T23:51:26.941038-05:00\",\n \"Severity\": {\n \"Label\": \"HIGH\"\n },\n \"Title\": \"Trivy found a vulnerability to CVE-2021-42382 in container golang:1.12-alpine (alpine 3.11.3)\",\n \"Description\": \"A use-after-free in Busybox's awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the getvar_s function\",\n \"Remediation\": {\n \"Recommendation\": {\n \"Text\": \"More information on this vulnerability is provided in the hyperlink\",\n \"Url\": \"https://avd.aquasec.com/nvd/cve-2021-42382\"\n }\n },\n \"ProductFields\": {\n \"Product Name\": \"Trivy\"\n },\n \"Resources\": [\n {\n \"Type\": \"Container\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)\",\n \"Partition\": \"aws\",\n \"Region\": \"us-east-1\",\n \"Details\": {\n \"Container\": {\n \"ImageName\": \"golang:1.12-alpine (alpine 3.11.3)\"\n },\n \"Other\": {\n \"CVE ID\": \"CVE-2021-42382\",\n \"CVE Title\": \"busybox: use-after-free in awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the getvar_s()\",\n \"PkgName\": \"busybox\",\n \"Installed Package\": \"1.31.1-r9\",\n \"Patched Package\": \"1.31.1-r11\",\n \"NvdCvssScoreV3\": \"7.2\",\n \"NvdCvssVectorV3\": \"CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H\",\n \"NvdCvssScoreV2\": \"6.5\",\n \"NvdCvssVectorV2\": \"AV:N/AC:L/Au:S/C:P/I:P/A:P\"\n }\n }\n }\n ],\n \"RecordState\": \"ACTIVE\"\n },\n {\n \"SchemaVersion\": \"2018-10-08\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)/CVE-2021-42382\",\n \"ProductArn\": \"arn:aws:securityhub:us-east-1::product/aquasecurity/aquasecurity\",\n \"GeneratorId\": \"Trivy\",\n \"AwsAccountId\": \"123456789012\",\n \"Types\": [\n \"Software and Configuration Checks/Vulnerabilities/CVE\"\n ],\n \"CreatedAt\": \"2022-02-07T23:51:26.949072-05:00\",\n \"UpdatedAt\": \"2022-02-07T23:51:26.949084-05:00\",\n \"Severity\": {\n \"Label\": \"HIGH\"\n },\n \"Title\": \"Trivy found a vulnerability to CVE-2021-42382 in container golang:1.12-alpine (alpine 3.11.3)\",\n \"Description\": \"A use-after-free in Busybox's awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the getvar_s function\",\n \"Remediation\": {\n \"Recommendation\": {\n \"Text\": \"More information on this vulnerability is provided in the hyperlink\",\n \"Url\": \"https://avd.aquasec.com/nvd/cve-2021-42382\"\n }\n },\n \"ProductFields\": {\n \"Product Name\": \"Trivy\"\n },\n \"Resources\": [\n {\n \"Type\": \"Container\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)\",\n \"Partition\": \"aws\",\n \"Region\": \"us-east-1\",\n \"Details\": {\n \"Container\": {\n \"ImageName\": \"golang:1.12-alpine (alpine 3.11.3)\"\n },\n \"Other\": {\n \"CVE ID\": \"CVE-2021-42382\",\n \"CVE Title\": \"busybox: use-after-free in awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the getvar_s()\",\n \"PkgName\": \"ssl_client\",\n \"Installed Package\": \"1.31.1-r9\",\n \"Patched Package\": \"1.31.1-r11\",\n \"NvdCvssScoreV3\": \"7.2\",\n \"NvdCvssVectorV3\": \"CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H\",\n \"NvdCvssScoreV2\": \"6.5\",\n \"NvdCvssVectorV2\": \"AV:N/AC:L/Au:S/C:P/I:P/A:P\"\n }\n }\n }\n ],\n \"RecordState\": \"ACTIVE\"\n }\n ]\n}", + "results": [ + { + "status": "failed", + "code_desc": "Resources: [Type: Container, Id: golang:1.12-alpine (alpine 3.11.3), Partition: aws, Region: us-east-1]", + "start_time": "2022-02-07T23:51:26.941038-05:00", + "message": "For package busybox, the current version that is installed is 1.31.1-r9. The package has been patched since version(s): 1.31.1-r11." + }, + { + "status": "failed", + "code_desc": "Resources: [Type: Container, Id: golang:1.12-alpine (alpine 3.11.3), Partition: aws, Region: us-east-1]", + "start_time": "2022-02-07T23:51:26.949084-05:00", + "message": "For package ssl_client, the current version that is installed is 1.31.1-r9. The package has been patched since version(s): 1.31.1-r11." + } + ] + }, + { + "id": "Trivy/CVE-2021-42383", + "title": "Trivy found a vulnerability to CVE-2021-42383 in container golang:1.12-alpine (alpine 3.11.3)", + "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], + "nist": [ + "SI-2", + "RA-5" + ] + }, + "impact": 0.7, + "desc": "A use-after-free in Busybox&#39;s awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the evaluate function", + "descriptions": [ + { + "data": "More information on this vulnerability is provided in the hyperlink\nhttps://avd.aquasec.com/nvd/cve-2021-42383", + "label": "fix" + } + ], + "refs": [], + "source_location": {}, + "code": "{\n \"Findings\": [\n {\n \"SchemaVersion\": \"2018-10-08\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)/CVE-2021-42383\",\n \"ProductArn\": \"arn:aws:securityhub:us-east-1::product/aquasecurity/aquasecurity\",\n \"GeneratorId\": \"Trivy\",\n \"AwsAccountId\": \"123456789012\",\n \"Types\": [\n \"Software and Configuration Checks/Vulnerabilities/CVE\"\n ],\n \"CreatedAt\": \"2022-02-07T23:51:26.941291-05:00\",\n \"UpdatedAt\": \"2022-02-07T23:51:26.941302-05:00\",\n \"Severity\": {\n \"Label\": \"HIGH\"\n },\n \"Title\": \"Trivy found a vulnerability to CVE-2021-42383 in container golang:1.12-alpine (alpine 3.11.3)\",\n \"Description\": \"A use-after-free in Busybox's awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the evaluate function\",\n \"Remediation\": {\n \"Recommendation\": {\n \"Text\": \"More information on this vulnerability is provided in the hyperlink\",\n \"Url\": \"https://avd.aquasec.com/nvd/cve-2021-42383\"\n }\n },\n \"ProductFields\": {\n \"Product Name\": \"Trivy\"\n },\n \"Resources\": [\n {\n \"Type\": \"Container\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)\",\n \"Partition\": \"aws\",\n \"Region\": \"us-east-1\",\n \"Details\": {\n \"Container\": {\n \"ImageName\": \"golang:1.12-alpine (alpine 3.11.3)\"\n },\n \"Other\": {\n \"CVE ID\": \"CVE-2021-42383\",\n \"CVE Title\": \"busybox: use-after-free in awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the evaluate()\",\n \"PkgName\": \"busybox\",\n \"Installed Package\": \"1.31.1-r9\",\n \"Patched Package\": \"1.31.1-r11\",\n \"NvdCvssScoreV3\": \"7.2\",\n \"NvdCvssVectorV3\": \"CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H\",\n \"NvdCvssScoreV2\": \"6.5\",\n \"NvdCvssVectorV2\": \"AV:N/AC:L/Au:S/C:P/I:P/A:P\"\n }\n }\n }\n ],\n \"RecordState\": \"ACTIVE\"\n },\n {\n \"SchemaVersion\": \"2018-10-08\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)/CVE-2021-42383\",\n \"ProductArn\": \"arn:aws:securityhub:us-east-1::product/aquasecurity/aquasecurity\",\n \"GeneratorId\": \"Trivy\",\n \"AwsAccountId\": \"123456789012\",\n \"Types\": [\n \"Software and Configuration Checks/Vulnerabilities/CVE\"\n ],\n \"CreatedAt\": \"2022-02-07T23:51:26.949319-05:00\",\n \"UpdatedAt\": \"2022-02-07T23:51:26.94933-05:00\",\n \"Severity\": {\n \"Label\": \"HIGH\"\n },\n \"Title\": \"Trivy found a vulnerability to CVE-2021-42383 in container golang:1.12-alpine (alpine 3.11.3)\",\n \"Description\": \"A use-after-free in Busybox's awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the evaluate function\",\n \"Remediation\": {\n \"Recommendation\": {\n \"Text\": \"More information on this vulnerability is provided in the hyperlink\",\n \"Url\": \"https://avd.aquasec.com/nvd/cve-2021-42383\"\n }\n },\n \"ProductFields\": {\n \"Product Name\": \"Trivy\"\n },\n \"Resources\": [\n {\n \"Type\": \"Container\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)\",\n \"Partition\": \"aws\",\n \"Region\": \"us-east-1\",\n \"Details\": {\n \"Container\": {\n \"ImageName\": \"golang:1.12-alpine (alpine 3.11.3)\"\n },\n \"Other\": {\n \"CVE ID\": \"CVE-2021-42383\",\n \"CVE Title\": \"busybox: use-after-free in awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the evaluate()\",\n \"PkgName\": \"ssl_client\",\n \"Installed Package\": \"1.31.1-r9\",\n \"Patched Package\": \"1.31.1-r11\",\n \"NvdCvssScoreV3\": \"7.2\",\n \"NvdCvssVectorV3\": \"CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H\",\n \"NvdCvssScoreV2\": \"6.5\",\n \"NvdCvssVectorV2\": \"AV:N/AC:L/Au:S/C:P/I:P/A:P\"\n }\n }\n }\n ],\n \"RecordState\": \"ACTIVE\"\n }\n ]\n}", + "results": [ + { + "status": "failed", + "code_desc": "Resources: [Type: Container, Id: golang:1.12-alpine (alpine 3.11.3), Partition: aws, Region: us-east-1]", + "start_time": "2022-02-07T23:51:26.941302-05:00", + "message": "For package busybox, the current version that is installed is 1.31.1-r9. The package has been patched since version(s): 1.31.1-r11." + }, + { + "status": "failed", + "code_desc": "Resources: [Type: Container, Id: golang:1.12-alpine (alpine 3.11.3), Partition: aws, Region: us-east-1]", + "start_time": "2022-02-07T23:51:26.94933-05:00", + "message": "For package ssl_client, the current version that is installed is 1.31.1-r9. The package has been patched since version(s): 1.31.1-r11." + } + ] + }, + { + "id": "Trivy/CVE-2021-42384", + "title": "Trivy found a vulnerability to CVE-2021-42384 in container golang:1.12-alpine (alpine 3.11.3)", + "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], + "nist": [ + "SI-2", + "RA-5" + ] + }, + "impact": 0.7, + "desc": "A use-after-free in Busybox&#39;s awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the handle_special function", + "descriptions": [ + { + "data": "More information on this vulnerability is provided in the hyperlink\nhttps://avd.aquasec.com/nvd/cve-2021-42384", + "label": "fix" + } + ], + "refs": [], + "source_location": {}, + "code": "{\n \"Findings\": [\n {\n \"SchemaVersion\": \"2018-10-08\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)/CVE-2021-42384\",\n \"ProductArn\": \"arn:aws:securityhub:us-east-1::product/aquasecurity/aquasecurity\",\n \"GeneratorId\": \"Trivy\",\n \"AwsAccountId\": \"123456789012\",\n \"Types\": [\n \"Software and Configuration Checks/Vulnerabilities/CVE\"\n ],\n \"CreatedAt\": \"2022-02-07T23:51:26.941549-05:00\",\n \"UpdatedAt\": \"2022-02-07T23:51:26.941561-05:00\",\n \"Severity\": {\n \"Label\": \"HIGH\"\n },\n \"Title\": \"Trivy found a vulnerability to CVE-2021-42384 in container golang:1.12-alpine (alpine 3.11.3)\",\n \"Description\": \"A use-after-free in Busybox's awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the handle_special function\",\n \"Remediation\": {\n \"Recommendation\": {\n \"Text\": \"More information on this vulnerability is provided in the hyperlink\",\n \"Url\": \"https://avd.aquasec.com/nvd/cve-2021-42384\"\n }\n },\n \"ProductFields\": {\n \"Product Name\": \"Trivy\"\n },\n \"Resources\": [\n {\n \"Type\": \"Container\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)\",\n \"Partition\": \"aws\",\n \"Region\": \"us-east-1\",\n \"Details\": {\n \"Container\": {\n \"ImageName\": \"golang:1.12-alpine (alpine 3.11.3)\"\n },\n \"Other\": {\n \"CVE ID\": \"CVE-2021-42384\",\n \"CVE Title\": \"busybox: use-after-free in awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the handle_special()\",\n \"PkgName\": \"busybox\",\n \"Installed Package\": \"1.31.1-r9\",\n \"Patched Package\": \"1.31.1-r11\",\n \"NvdCvssScoreV3\": \"7.2\",\n \"NvdCvssVectorV3\": \"CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H\",\n \"NvdCvssScoreV2\": \"6.5\",\n \"NvdCvssVectorV2\": \"AV:N/AC:L/Au:S/C:P/I:P/A:P\"\n }\n }\n }\n ],\n \"RecordState\": \"ACTIVE\"\n },\n {\n \"SchemaVersion\": \"2018-10-08\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)/CVE-2021-42384\",\n \"ProductArn\": \"arn:aws:securityhub:us-east-1::product/aquasecurity/aquasecurity\",\n \"GeneratorId\": \"Trivy\",\n \"AwsAccountId\": \"123456789012\",\n \"Types\": [\n \"Software and Configuration Checks/Vulnerabilities/CVE\"\n ],\n \"CreatedAt\": \"2022-02-07T23:51:26.949571-05:00\",\n \"UpdatedAt\": \"2022-02-07T23:51:26.949583-05:00\",\n \"Severity\": {\n \"Label\": \"HIGH\"\n },\n \"Title\": \"Trivy found a vulnerability to CVE-2021-42384 in container golang:1.12-alpine (alpine 3.11.3)\",\n \"Description\": \"A use-after-free in Busybox's awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the handle_special function\",\n \"Remediation\": {\n \"Recommendation\": {\n \"Text\": \"More information on this vulnerability is provided in the hyperlink\",\n \"Url\": \"https://avd.aquasec.com/nvd/cve-2021-42384\"\n }\n },\n \"ProductFields\": {\n \"Product Name\": \"Trivy\"\n },\n \"Resources\": [\n {\n \"Type\": \"Container\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)\",\n \"Partition\": \"aws\",\n \"Region\": \"us-east-1\",\n \"Details\": {\n \"Container\": {\n \"ImageName\": \"golang:1.12-alpine (alpine 3.11.3)\"\n },\n \"Other\": {\n \"CVE ID\": \"CVE-2021-42384\",\n \"CVE Title\": \"busybox: use-after-free in awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the handle_special()\",\n \"PkgName\": \"ssl_client\",\n \"Installed Package\": \"1.31.1-r9\",\n \"Patched Package\": \"1.31.1-r11\",\n \"NvdCvssScoreV3\": \"7.2\",\n \"NvdCvssVectorV3\": \"CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H\",\n \"NvdCvssScoreV2\": \"6.5\",\n \"NvdCvssVectorV2\": \"AV:N/AC:L/Au:S/C:P/I:P/A:P\"\n }\n }\n }\n ],\n \"RecordState\": \"ACTIVE\"\n }\n ]\n}", + "results": [ + { + "status": "failed", + "code_desc": "Resources: [Type: Container, Id: golang:1.12-alpine (alpine 3.11.3), Partition: aws, Region: us-east-1]", + "start_time": "2022-02-07T23:51:26.941561-05:00", + "message": "For package busybox, the current version that is installed is 1.31.1-r9. The package has been patched since version(s): 1.31.1-r11." + }, + { + "status": "failed", + "code_desc": "Resources: [Type: Container, Id: golang:1.12-alpine (alpine 3.11.3), Partition: aws, Region: us-east-1]", + "start_time": "2022-02-07T23:51:26.949583-05:00", + "message": "For package ssl_client, the current version that is installed is 1.31.1-r9. The package has been patched since version(s): 1.31.1-r11." + } + ] + }, + { + "id": "Trivy/CVE-2021-42385", + "title": "Trivy found a vulnerability to CVE-2021-42385 in container golang:1.12-alpine (alpine 3.11.3)", + "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], + "nist": [ + "SI-2", + "RA-5" + ] + }, + "impact": 0.7, + "desc": "A use-after-free in Busybox&#39;s awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the evaluate function", + "descriptions": [ + { + "data": "More information on this vulnerability is provided in the hyperlink\nhttps://avd.aquasec.com/nvd/cve-2021-42385", + "label": "fix" + } + ], + "refs": [], + "source_location": {}, + "code": "{\n \"Findings\": [\n {\n \"SchemaVersion\": \"2018-10-08\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)/CVE-2021-42385\",\n \"ProductArn\": \"arn:aws:securityhub:us-east-1::product/aquasecurity/aquasecurity\",\n \"GeneratorId\": \"Trivy\",\n \"AwsAccountId\": \"123456789012\",\n \"Types\": [\n \"Software and Configuration Checks/Vulnerabilities/CVE\"\n ],\n \"CreatedAt\": \"2022-02-07T23:51:26.941804-05:00\",\n \"UpdatedAt\": \"2022-02-07T23:51:26.941815-05:00\",\n \"Severity\": {\n \"Label\": \"HIGH\"\n },\n \"Title\": \"Trivy found a vulnerability to CVE-2021-42385 in container golang:1.12-alpine (alpine 3.11.3)\",\n \"Description\": \"A use-after-free in Busybox's awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the evaluate function\",\n \"Remediation\": {\n \"Recommendation\": {\n \"Text\": \"More information on this vulnerability is provided in the hyperlink\",\n \"Url\": \"https://avd.aquasec.com/nvd/cve-2021-42385\"\n }\n },\n \"ProductFields\": {\n \"Product Name\": \"Trivy\"\n },\n \"Resources\": [\n {\n \"Type\": \"Container\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)\",\n \"Partition\": \"aws\",\n \"Region\": \"us-east-1\",\n \"Details\": {\n \"Container\": {\n \"ImageName\": \"golang:1.12-alpine (alpine 3.11.3)\"\n },\n \"Other\": {\n \"CVE ID\": \"CVE-2021-42385\",\n \"CVE Title\": \"busybox: use-after-free in awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the evaluate()\",\n \"PkgName\": \"busybox\",\n \"Installed Package\": \"1.31.1-r9\",\n \"Patched Package\": \"1.31.1-r11\",\n \"NvdCvssScoreV3\": \"7.2\",\n \"NvdCvssVectorV3\": \"CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H\",\n \"NvdCvssScoreV2\": \"6.5\",\n \"NvdCvssVectorV2\": \"AV:N/AC:L/Au:S/C:P/I:P/A:P\"\n }\n }\n }\n ],\n \"RecordState\": \"ACTIVE\"\n },\n {\n \"SchemaVersion\": \"2018-10-08\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)/CVE-2021-42385\",\n \"ProductArn\": \"arn:aws:securityhub:us-east-1::product/aquasecurity/aquasecurity\",\n \"GeneratorId\": \"Trivy\",\n \"AwsAccountId\": \"123456789012\",\n \"Types\": [\n \"Software and Configuration Checks/Vulnerabilities/CVE\"\n ],\n \"CreatedAt\": \"2022-02-07T23:51:26.94982-05:00\",\n \"UpdatedAt\": \"2022-02-07T23:51:26.949831-05:00\",\n \"Severity\": {\n \"Label\": \"HIGH\"\n },\n \"Title\": \"Trivy found a vulnerability to CVE-2021-42385 in container golang:1.12-alpine (alpine 3.11.3)\",\n \"Description\": \"A use-after-free in Busybox's awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the evaluate function\",\n \"Remediation\": {\n \"Recommendation\": {\n \"Text\": \"More information on this vulnerability is provided in the hyperlink\",\n \"Url\": \"https://avd.aquasec.com/nvd/cve-2021-42385\"\n }\n },\n \"ProductFields\": {\n \"Product Name\": \"Trivy\"\n },\n \"Resources\": [\n {\n \"Type\": \"Container\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)\",\n \"Partition\": \"aws\",\n \"Region\": \"us-east-1\",\n \"Details\": {\n \"Container\": {\n \"ImageName\": \"golang:1.12-alpine (alpine 3.11.3)\"\n },\n \"Other\": {\n \"CVE ID\": \"CVE-2021-42385\",\n \"CVE Title\": \"busybox: use-after-free in awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the evaluate()\",\n \"PkgName\": \"ssl_client\",\n \"Installed Package\": \"1.31.1-r9\",\n \"Patched Package\": \"1.31.1-r11\",\n \"NvdCvssScoreV3\": \"7.2\",\n \"NvdCvssVectorV3\": \"CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H\",\n \"NvdCvssScoreV2\": \"6.5\",\n \"NvdCvssVectorV2\": \"AV:N/AC:L/Au:S/C:P/I:P/A:P\"\n }\n }\n }\n ],\n \"RecordState\": \"ACTIVE\"\n }\n ]\n}", + "results": [ + { + "status": "failed", + "code_desc": "Resources: [Type: Container, Id: golang:1.12-alpine (alpine 3.11.3), Partition: aws, Region: us-east-1]", + "start_time": "2022-02-07T23:51:26.941815-05:00", + "message": "For package busybox, the current version that is installed is 1.31.1-r9. The package has been patched since version(s): 1.31.1-r11." + }, + { + "status": "failed", + "code_desc": "Resources: [Type: Container, Id: golang:1.12-alpine (alpine 3.11.3), Partition: aws, Region: us-east-1]", + "start_time": "2022-02-07T23:51:26.949831-05:00", + "message": "For package ssl_client, the current version that is installed is 1.31.1-r9. The package has been patched since version(s): 1.31.1-r11." + } + ] + }, + { + "id": "Trivy/CVE-2021-42386", + "title": "Trivy found a vulnerability to CVE-2021-42386 in container golang:1.12-alpine (alpine 3.11.3)", + "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], + "nist": [ + "SI-2", + "RA-5" + ] + }, + "impact": 0.7, + "desc": "A use-after-free in Busybox&#39;s awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the nvalloc function", + "descriptions": [ + { + "data": "More information on this vulnerability is provided in the hyperlink\nhttps://avd.aquasec.com/nvd/cve-2021-42386", + "label": "fix" + } + ], + "refs": [], + "source_location": {}, + "code": "{\n \"Findings\": [\n {\n \"SchemaVersion\": \"2018-10-08\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)/CVE-2021-42386\",\n \"ProductArn\": \"arn:aws:securityhub:us-east-1::product/aquasecurity/aquasecurity\",\n \"GeneratorId\": \"Trivy\",\n \"AwsAccountId\": \"123456789012\",\n \"Types\": [\n \"Software and Configuration Checks/Vulnerabilities/CVE\"\n ],\n \"CreatedAt\": \"2022-02-07T23:51:26.942066-05:00\",\n \"UpdatedAt\": \"2022-02-07T23:51:26.942077-05:00\",\n \"Severity\": {\n \"Label\": \"HIGH\"\n },\n \"Title\": \"Trivy found a vulnerability to CVE-2021-42386 in container golang:1.12-alpine (alpine 3.11.3)\",\n \"Description\": \"A use-after-free in Busybox's awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the nvalloc function\",\n \"Remediation\": {\n \"Recommendation\": {\n \"Text\": \"More information on this vulnerability is provided in the hyperlink\",\n \"Url\": \"https://avd.aquasec.com/nvd/cve-2021-42386\"\n }\n },\n \"ProductFields\": {\n \"Product Name\": \"Trivy\"\n },\n \"Resources\": [\n {\n \"Type\": \"Container\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)\",\n \"Partition\": \"aws\",\n \"Region\": \"us-east-1\",\n \"Details\": {\n \"Container\": {\n \"ImageName\": \"golang:1.12-alpine (alpine 3.11.3)\"\n },\n \"Other\": {\n \"CVE ID\": \"CVE-2021-42386\",\n \"CVE Title\": \"busybox: use-after-free in awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the nvalloc()\",\n \"PkgName\": \"busybox\",\n \"Installed Package\": \"1.31.1-r9\",\n \"Patched Package\": \"1.31.1-r11\",\n \"NvdCvssScoreV3\": \"7.2\",\n \"NvdCvssVectorV3\": \"CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H\",\n \"NvdCvssScoreV2\": \"6.5\",\n \"NvdCvssVectorV2\": \"AV:N/AC:L/Au:S/C:P/I:P/A:P\"\n }\n }\n }\n ],\n \"RecordState\": \"ACTIVE\"\n },\n {\n \"SchemaVersion\": \"2018-10-08\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)/CVE-2021-42386\",\n \"ProductArn\": \"arn:aws:securityhub:us-east-1::product/aquasecurity/aquasecurity\",\n \"GeneratorId\": \"Trivy\",\n \"AwsAccountId\": \"123456789012\",\n \"Types\": [\n \"Software and Configuration Checks/Vulnerabilities/CVE\"\n ],\n \"CreatedAt\": \"2022-02-07T23:51:26.95006-05:00\",\n \"UpdatedAt\": \"2022-02-07T23:51:26.950071-05:00\",\n \"Severity\": {\n \"Label\": \"HIGH\"\n },\n \"Title\": \"Trivy found a vulnerability to CVE-2021-42386 in container golang:1.12-alpine (alpine 3.11.3)\",\n \"Description\": \"A use-after-free in Busybox's awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the nvalloc function\",\n \"Remediation\": {\n \"Recommendation\": {\n \"Text\": \"More information on this vulnerability is provided in the hyperlink\",\n \"Url\": \"https://avd.aquasec.com/nvd/cve-2021-42386\"\n }\n },\n \"ProductFields\": {\n \"Product Name\": \"Trivy\"\n },\n \"Resources\": [\n {\n \"Type\": \"Container\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)\",\n \"Partition\": \"aws\",\n \"Region\": \"us-east-1\",\n \"Details\": {\n \"Container\": {\n \"ImageName\": \"golang:1.12-alpine (alpine 3.11.3)\"\n },\n \"Other\": {\n \"CVE ID\": \"CVE-2021-42386\",\n \"CVE Title\": \"busybox: use-after-free in awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the nvalloc()\",\n \"PkgName\": \"ssl_client\",\n \"Installed Package\": \"1.31.1-r9\",\n \"Patched Package\": \"1.31.1-r11\",\n \"NvdCvssScoreV3\": \"7.2\",\n \"NvdCvssVectorV3\": \"CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H\",\n \"NvdCvssScoreV2\": \"6.5\",\n \"NvdCvssVectorV2\": \"AV:N/AC:L/Au:S/C:P/I:P/A:P\"\n }\n }\n }\n ],\n \"RecordState\": \"ACTIVE\"\n }\n ]\n}", + "results": [ + { + "status": "failed", + "code_desc": "Resources: [Type: Container, Id: golang:1.12-alpine (alpine 3.11.3), Partition: aws, Region: us-east-1]", + "start_time": "2022-02-07T23:51:26.942077-05:00", + "message": "For package busybox, the current version that is installed is 1.31.1-r9. The package has been patched since version(s): 1.31.1-r11." + }, + { + "status": "failed", + "code_desc": "Resources: [Type: Container, Id: golang:1.12-alpine (alpine 3.11.3), Partition: aws, Region: us-east-1]", + "start_time": "2022-02-07T23:51:26.950071-05:00", + "message": "For package ssl_client, the current version that is installed is 1.31.1-r9. The package has been patched since version(s): 1.31.1-r11." + } + ] + }, + { + "id": "Trivy/CVE-2021-42374", + "title": "Trivy found a vulnerability to CVE-2021-42374 in container golang:1.12-alpine (alpine 3.11.3)", + "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], + "nist": [ + "SI-2", + "RA-5" + ] + }, + "impact": 0.5, + "desc": "An out-of-bounds heap read in Busybox&#39;s unlzma applet leads to information leak and denial of service when crafted LZMA-compressed input is decompressed. This can be triggered by any applet/format that", + "descriptions": [ + { + "data": "More information on this vulnerability is provided in the hyperlink\nhttps://avd.aquasec.com/nvd/cve-2021-42374", + "label": "fix" + } + ], + "refs": [], + "source_location": {}, + "code": "{\n \"Findings\": [\n {\n \"SchemaVersion\": \"2018-10-08\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)/CVE-2021-42374\",\n \"ProductArn\": \"arn:aws:securityhub:us-east-1::product/aquasecurity/aquasecurity\",\n \"GeneratorId\": \"Trivy\",\n \"AwsAccountId\": \"123456789012\",\n \"Types\": [\n \"Software and Configuration Checks/Vulnerabilities/CVE\"\n ],\n \"CreatedAt\": \"2022-02-07T23:51:26.942317-05:00\",\n \"UpdatedAt\": \"2022-02-07T23:51:26.942328-05:00\",\n \"Severity\": {\n \"Label\": \"MEDIUM\"\n },\n \"Title\": \"Trivy found a vulnerability to CVE-2021-42374 in container golang:1.12-alpine (alpine 3.11.3)\",\n \"Description\": \"An out-of-bounds heap read in Busybox's unlzma applet leads to information leak and denial of service when crafted LZMA-compressed input is decompressed. This can be triggered by any applet/format that\",\n \"Remediation\": {\n \"Recommendation\": {\n \"Text\": \"More information on this vulnerability is provided in the hyperlink\",\n \"Url\": \"https://avd.aquasec.com/nvd/cve-2021-42374\"\n }\n },\n \"ProductFields\": {\n \"Product Name\": \"Trivy\"\n },\n \"Resources\": [\n {\n \"Type\": \"Container\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)\",\n \"Partition\": \"aws\",\n \"Region\": \"us-east-1\",\n \"Details\": {\n \"Container\": {\n \"ImageName\": \"golang:1.12-alpine (alpine 3.11.3)\"\n },\n \"Other\": {\n \"CVE ID\": \"CVE-2021-42374\",\n \"CVE Title\": \"busybox: out-of-bounds read in unlzma applet leads to information leak and denial of service when crafted LZMA-compressed input is decompressed\",\n \"PkgName\": \"busybox\",\n \"Installed Package\": \"1.31.1-r9\",\n \"Patched Package\": \"1.31.1-r11\",\n \"NvdCvssScoreV3\": \"5.3\",\n \"NvdCvssVectorV3\": \"CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:L/I:N/A:H\",\n \"NvdCvssScoreV2\": \"3.3\",\n \"NvdCvssVectorV2\": \"AV:L/AC:M/Au:N/C:P/I:N/A:P\"\n }\n }\n }\n ],\n \"RecordState\": \"ACTIVE\"\n },\n {\n \"SchemaVersion\": \"2018-10-08\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)/CVE-2021-42374\",\n \"ProductArn\": \"arn:aws:securityhub:us-east-1::product/aquasecurity/aquasecurity\",\n \"GeneratorId\": \"Trivy\",\n \"AwsAccountId\": \"123456789012\",\n \"Types\": [\n \"Software and Configuration Checks/Vulnerabilities/CVE\"\n ],\n \"CreatedAt\": \"2022-02-07T23:51:26.950295-05:00\",\n \"UpdatedAt\": \"2022-02-07T23:51:26.950306-05:00\",\n \"Severity\": {\n \"Label\": \"MEDIUM\"\n },\n \"Title\": \"Trivy found a vulnerability to CVE-2021-42374 in container golang:1.12-alpine (alpine 3.11.3)\",\n \"Description\": \"An out-of-bounds heap read in Busybox's unlzma applet leads to information leak and denial of service when crafted LZMA-compressed input is decompressed. This can be triggered by any applet/format that\",\n \"Remediation\": {\n \"Recommendation\": {\n \"Text\": \"More information on this vulnerability is provided in the hyperlink\",\n \"Url\": \"https://avd.aquasec.com/nvd/cve-2021-42374\"\n }\n },\n \"ProductFields\": {\n \"Product Name\": \"Trivy\"\n },\n \"Resources\": [\n {\n \"Type\": \"Container\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)\",\n \"Partition\": \"aws\",\n \"Region\": \"us-east-1\",\n \"Details\": {\n \"Container\": {\n \"ImageName\": \"golang:1.12-alpine (alpine 3.11.3)\"\n },\n \"Other\": {\n \"CVE ID\": \"CVE-2021-42374\",\n \"CVE Title\": \"busybox: out-of-bounds read in unlzma applet leads to information leak and denial of service when crafted LZMA-compressed input is decompressed\",\n \"PkgName\": \"ssl_client\",\n \"Installed Package\": \"1.31.1-r9\",\n \"Patched Package\": \"1.31.1-r11\",\n \"NvdCvssScoreV3\": \"5.3\",\n \"NvdCvssVectorV3\": \"CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:L/I:N/A:H\",\n \"NvdCvssScoreV2\": \"3.3\",\n \"NvdCvssVectorV2\": \"AV:L/AC:M/Au:N/C:P/I:N/A:P\"\n }\n }\n }\n ],\n \"RecordState\": \"ACTIVE\"\n }\n ]\n}", + "results": [ + { + "status": "failed", + "code_desc": "Resources: [Type: Container, Id: golang:1.12-alpine (alpine 3.11.3), Partition: aws, Region: us-east-1]", + "start_time": "2022-02-07T23:51:26.942328-05:00", + "message": "For package busybox, the current version that is installed is 1.31.1-r9. The package has been patched since version(s): 1.31.1-r11." + }, + { + "status": "failed", + "code_desc": "Resources: [Type: Container, Id: golang:1.12-alpine (alpine 3.11.3), Partition: aws, Region: us-east-1]", + "start_time": "2022-02-07T23:51:26.950306-05:00", + "message": "For package ssl_client, the current version that is installed is 1.31.1-r9. The package has been patched since version(s): 1.31.1-r11." + } + ] + }, + { + "id": "Trivy/CVE-2021-3711", + "title": "Trivy found a vulnerability to CVE-2021-3711 in container golang:1.12-alpine (alpine 3.11.3)", + "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], + "nist": [ + "SI-2", + "RA-5" + ] + }, + "impact": 0.9, + "desc": "In order to decrypt SM2 encrypted data an application is expected to call the API function EVP_PKEY_decrypt(). Typically an application will call this function twice. The first time, on entry, the &#34;out&#34; parameter can be NULL and, on exit, the &#34;outlen&#34; parameter is populated with the buffer size required to hold the decrypted plaintext. The application can then allocate a sufficiently sized buffer and call EVP_PKEY_decrypt() again, but this time passing a non-NULL value for the &#34;out&#34; parameter. A bug in the implementation of the SM2 decryption code means that the calculation of the buffer size required to hold the plaintext returned by the first call to EVP_PKEY_decrypt() can be smaller than the actual size required by the second call. This can lead to a buffer overflow when EVP_PKEY_decrypt() is called by the application a second time with a buffer that is too small. A malicious attacker who is able present SM2 content for decryption to an application could cause attacker chosen data to overflow the buffer ..", + "descriptions": [ + { + "data": "More information on this vulnerability is provided in the hyperlink\nhttps://avd.aquasec.com/nvd/cve-2021-3711", + "label": "fix" + } + ], + "refs": [], + "source_location": {}, + "code": "{\n \"Findings\": [\n {\n \"SchemaVersion\": \"2018-10-08\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)/CVE-2021-3711\",\n \"ProductArn\": \"arn:aws:securityhub:us-east-1::product/aquasecurity/aquasecurity\",\n \"GeneratorId\": \"Trivy\",\n \"AwsAccountId\": \"123456789012\",\n \"Types\": [\n \"Software and Configuration Checks/Vulnerabilities/CVE\"\n ],\n \"CreatedAt\": \"2022-02-07T23:51:26.942596-05:00\",\n \"UpdatedAt\": \"2022-02-07T23:51:26.942607-05:00\",\n \"Severity\": {\n \"Label\": \"CRITICAL\"\n },\n \"Title\": \"Trivy found a vulnerability to CVE-2021-3711 in container golang:1.12-alpine (alpine 3.11.3)\",\n \"Description\": \"In order to decrypt SM2 encrypted data an application is expected to call the API function EVP_PKEY_decrypt(). Typically an application will call this function twice. The first time, on entry, the "out" parameter can be NULL and, on exit, the "outlen" parameter is populated with the buffer size required to hold the decrypted plaintext. The application can then allocate a sufficiently sized buffer and call EVP_PKEY_decrypt() again, but this time passing a non-NULL value for the "out" parameter. A bug in the implementation of the SM2 decryption code means that the calculation of the buffer size required to hold the plaintext returned by the first call to EVP_PKEY_decrypt() can be smaller than the actual size required by the second call. This can lead to a buffer overflow when EVP_PKEY_decrypt() is called by the application a second time with a buffer that is too small. A malicious attacker who is able present SM2 content for decryption to an application could cause attacker chosen data to overflow the buffer ..\",\n \"Remediation\": {\n \"Recommendation\": {\n \"Text\": \"More information on this vulnerability is provided in the hyperlink\",\n \"Url\": \"https://avd.aquasec.com/nvd/cve-2021-3711\"\n }\n },\n \"ProductFields\": {\n \"Product Name\": \"Trivy\"\n },\n \"Resources\": [\n {\n \"Type\": \"Container\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)\",\n \"Partition\": \"aws\",\n \"Region\": \"us-east-1\",\n \"Details\": {\n \"Container\": {\n \"ImageName\": \"golang:1.12-alpine (alpine 3.11.3)\"\n },\n \"Other\": {\n \"CVE ID\": \"CVE-2021-3711\",\n \"CVE Title\": \"openssl: SM2 Decryption Buffer Overflow\",\n \"PkgName\": \"libcrypto1.1\",\n \"Installed Package\": \"1.1.1d-r3\",\n \"Patched Package\": \"1.1.1l-r0\",\n \"NvdCvssScoreV3\": \"9.8\",\n \"NvdCvssVectorV3\": \"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H\",\n \"NvdCvssScoreV2\": \"7.5\",\n \"NvdCvssVectorV2\": \"AV:N/AC:L/Au:N/C:P/I:P/A:P\"\n }\n }\n }\n ],\n \"RecordState\": \"ACTIVE\"\n },\n {\n \"SchemaVersion\": \"2018-10-08\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)/CVE-2021-3711\",\n \"ProductArn\": \"arn:aws:securityhub:us-east-1::product/aquasecurity/aquasecurity\",\n \"GeneratorId\": \"Trivy\",\n \"AwsAccountId\": \"123456789012\",\n \"Types\": [\n \"Software and Configuration Checks/Vulnerabilities/CVE\"\n ],\n \"CreatedAt\": \"2022-02-07T23:51:26.945044-05:00\",\n \"UpdatedAt\": \"2022-02-07T23:51:26.945056-05:00\",\n \"Severity\": {\n \"Label\": \"CRITICAL\"\n },\n \"Title\": \"Trivy found a vulnerability to CVE-2021-3711 in container golang:1.12-alpine (alpine 3.11.3)\",\n \"Description\": \"In order to decrypt SM2 encrypted data an application is expected to call the API function EVP_PKEY_decrypt(). Typically an application will call this function twice. The first time, on entry, the "out" parameter can be NULL and, on exit, the "outlen" parameter is populated with the buffer size required to hold the decrypted plaintext. The application can then allocate a sufficiently sized buffer and call EVP_PKEY_decrypt() again, but this time passing a non-NULL value for the "out" parameter. A bug in the implementation of the SM2 decryption code means that the calculation of the buffer size required to hold the plaintext returned by the first call to EVP_PKEY_decrypt() can be smaller than the actual size required by the second call. This can lead to a buffer overflow when EVP_PKEY_decrypt() is called by the application a second time with a buffer that is too small. A malicious attacker who is able present SM2 content for decryption to an application could cause attacker chosen data to overflow the buffer ..\",\n \"Remediation\": {\n \"Recommendation\": {\n \"Text\": \"More information on this vulnerability is provided in the hyperlink\",\n \"Url\": \"https://avd.aquasec.com/nvd/cve-2021-3711\"\n }\n },\n \"ProductFields\": {\n \"Product Name\": \"Trivy\"\n },\n \"Resources\": [\n {\n \"Type\": \"Container\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)\",\n \"Partition\": \"aws\",\n \"Region\": \"us-east-1\",\n \"Details\": {\n \"Container\": {\n \"ImageName\": \"golang:1.12-alpine (alpine 3.11.3)\"\n },\n \"Other\": {\n \"CVE ID\": \"CVE-2021-3711\",\n \"CVE Title\": \"openssl: SM2 Decryption Buffer Overflow\",\n \"PkgName\": \"libssl1.1\",\n \"Installed Package\": \"1.1.1d-r3\",\n \"Patched Package\": \"1.1.1l-r0\",\n \"NvdCvssScoreV3\": \"9.8\",\n \"NvdCvssVectorV3\": \"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H\",\n \"NvdCvssScoreV2\": \"7.5\",\n \"NvdCvssVectorV2\": \"AV:N/AC:L/Au:N/C:P/I:P/A:P\"\n }\n }\n }\n ],\n \"RecordState\": \"ACTIVE\"\n }\n ]\n}", + "results": [ + { + "status": "failed", + "code_desc": "Resources: [Type: Container, Id: golang:1.12-alpine (alpine 3.11.3), Partition: aws, Region: us-east-1]", + "start_time": "2022-02-07T23:51:26.942607-05:00", + "message": "For package libcrypto1.1, the current version that is installed is 1.1.1d-r3. The package has been patched since version(s): 1.1.1l-r0." + }, + { + "status": "failed", + "code_desc": "Resources: [Type: Container, Id: golang:1.12-alpine (alpine 3.11.3), Partition: aws, Region: us-east-1]", + "start_time": "2022-02-07T23:51:26.945056-05:00", + "message": "For package libssl1.1, the current version that is installed is 1.1.1d-r3. The package has been patched since version(s): 1.1.1l-r0." + } + ] + }, + { + "id": "Trivy/CVE-2020-1967", + "title": "Trivy found a vulnerability to CVE-2020-1967 in container golang:1.12-alpine (alpine 3.11.3)", + "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], + "nist": [ + "SI-2", + "RA-5" + ] + }, + "impact": 0.7, + "desc": "Server or client applications that call the SSL_check_chain() function during or after a TLS 1.3 handshake may crash due to a NULL pointer dereference as a result of incorrect handling of the &#34;signature_algorithms_cert&#34; TLS extension. The crash occurs if an invalid or unrecognised signature algorithm is received from the peer. This could be exploited by a malicious peer in a Denial of Service attack. OpenSSL version 1.1.1d, 1.1.1e, and 1.1.1f are affected by this issue. This issue did not affect OpenSSL versions prior to 1.1.1d. Fixed in OpenSSL 1.1.1g (Affected 1.1.1d-1.1.1f).", + "descriptions": [ + { + "data": "More information on this vulnerability is provided in the hyperlink\nhttps://avd.aquasec.com/nvd/cve-2020-1967", + "label": "fix" + } + ], + "refs": [], + "source_location": {}, + "code": "{\n \"Findings\": [\n {\n \"SchemaVersion\": \"2018-10-08\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)/CVE-2020-1967\",\n \"ProductArn\": \"arn:aws:securityhub:us-east-1::product/aquasecurity/aquasecurity\",\n \"GeneratorId\": \"Trivy\",\n \"AwsAccountId\": \"123456789012\",\n \"Types\": [\n \"Software and Configuration Checks/Vulnerabilities/CVE\"\n ],\n \"CreatedAt\": \"2022-02-07T23:51:26.942873-05:00\",\n \"UpdatedAt\": \"2022-02-07T23:51:26.942885-05:00\",\n \"Severity\": {\n \"Label\": \"HIGH\"\n },\n \"Title\": \"Trivy found a vulnerability to CVE-2020-1967 in container golang:1.12-alpine (alpine 3.11.3)\",\n \"Description\": \"Server or client applications that call the SSL_check_chain() function during or after a TLS 1.3 handshake may crash due to a NULL pointer dereference as a result of incorrect handling of the "signature_algorithms_cert" TLS extension. The crash occurs if an invalid or unrecognised signature algorithm is received from the peer. This could be exploited by a malicious peer in a Denial of Service attack. OpenSSL version 1.1.1d, 1.1.1e, and 1.1.1f are affected by this issue. This issue did not affect OpenSSL versions prior to 1.1.1d. Fixed in OpenSSL 1.1.1g (Affected 1.1.1d-1.1.1f).\",\n \"Remediation\": {\n \"Recommendation\": {\n \"Text\": \"More information on this vulnerability is provided in the hyperlink\",\n \"Url\": \"https://avd.aquasec.com/nvd/cve-2020-1967\"\n }\n },\n \"ProductFields\": {\n \"Product Name\": \"Trivy\"\n },\n \"Resources\": [\n {\n \"Type\": \"Container\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)\",\n \"Partition\": \"aws\",\n \"Region\": \"us-east-1\",\n \"Details\": {\n \"Container\": {\n \"ImageName\": \"golang:1.12-alpine (alpine 3.11.3)\"\n },\n \"Other\": {\n \"CVE ID\": \"CVE-2020-1967\",\n \"CVE Title\": \"openssl: Segmentation fault in SSL_check_chain causes denial of service\",\n \"PkgName\": \"libcrypto1.1\",\n \"Installed Package\": \"1.1.1d-r3\",\n \"Patched Package\": \"1.1.1g-r0\",\n \"NvdCvssScoreV3\": \"7.5\",\n \"NvdCvssVectorV3\": \"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H\",\n \"NvdCvssScoreV2\": \"5\",\n \"NvdCvssVectorV2\": \"AV:N/AC:L/Au:N/C:N/I:N/A:P\"\n }\n }\n }\n ],\n \"RecordState\": \"ACTIVE\"\n },\n {\n \"SchemaVersion\": \"2018-10-08\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)/CVE-2020-1967\",\n \"ProductArn\": \"arn:aws:securityhub:us-east-1::product/aquasecurity/aquasecurity\",\n \"GeneratorId\": \"Trivy\",\n \"AwsAccountId\": \"123456789012\",\n \"Types\": [\n \"Software and Configuration Checks/Vulnerabilities/CVE\"\n ],\n \"CreatedAt\": \"2022-02-07T23:51:26.945309-05:00\",\n \"UpdatedAt\": \"2022-02-07T23:51:26.94532-05:00\",\n \"Severity\": {\n \"Label\": \"HIGH\"\n },\n \"Title\": \"Trivy found a vulnerability to CVE-2020-1967 in container golang:1.12-alpine (alpine 3.11.3)\",\n \"Description\": \"Server or client applications that call the SSL_check_chain() function during or after a TLS 1.3 handshake may crash due to a NULL pointer dereference as a result of incorrect handling of the "signature_algorithms_cert" TLS extension. The crash occurs if an invalid or unrecognised signature algorithm is received from the peer. This could be exploited by a malicious peer in a Denial of Service attack. OpenSSL version 1.1.1d, 1.1.1e, and 1.1.1f are affected by this issue. This issue did not affect OpenSSL versions prior to 1.1.1d. Fixed in OpenSSL 1.1.1g (Affected 1.1.1d-1.1.1f).\",\n \"Remediation\": {\n \"Recommendation\": {\n \"Text\": \"More information on this vulnerability is provided in the hyperlink\",\n \"Url\": \"https://avd.aquasec.com/nvd/cve-2020-1967\"\n }\n },\n \"ProductFields\": {\n \"Product Name\": \"Trivy\"\n },\n \"Resources\": [\n {\n \"Type\": \"Container\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)\",\n \"Partition\": \"aws\",\n \"Region\": \"us-east-1\",\n \"Details\": {\n \"Container\": {\n \"ImageName\": \"golang:1.12-alpine (alpine 3.11.3)\"\n },\n \"Other\": {\n \"CVE ID\": \"CVE-2020-1967\",\n \"CVE Title\": \"openssl: Segmentation fault in SSL_check_chain causes denial of service\",\n \"PkgName\": \"libssl1.1\",\n \"Installed Package\": \"1.1.1d-r3\",\n \"Patched Package\": \"1.1.1g-r0\",\n \"NvdCvssScoreV3\": \"7.5\",\n \"NvdCvssVectorV3\": \"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H\",\n \"NvdCvssScoreV2\": \"5\",\n \"NvdCvssVectorV2\": \"AV:N/AC:L/Au:N/C:N/I:N/A:P\"\n }\n }\n }\n ],\n \"RecordState\": \"ACTIVE\"\n }\n ]\n}", + "results": [ + { + "status": "failed", + "code_desc": "Resources: [Type: Container, Id: golang:1.12-alpine (alpine 3.11.3), Partition: aws, Region: us-east-1]", + "start_time": "2022-02-07T23:51:26.942885-05:00", + "message": "For package libcrypto1.1, the current version that is installed is 1.1.1d-r3. The package has been patched since version(s): 1.1.1g-r0." + }, + { + "status": "failed", + "code_desc": "Resources: [Type: Container, Id: golang:1.12-alpine (alpine 3.11.3), Partition: aws, Region: us-east-1]", + "start_time": "2022-02-07T23:51:26.94532-05:00", + "message": "For package libssl1.1, the current version that is installed is 1.1.1d-r3. The package has been patched since version(s): 1.1.1g-r0." + } + ] + }, + { + "id": "Trivy/CVE-2021-23840", + "title": "Trivy found a vulnerability to CVE-2021-23840 in container golang:1.12-alpine (alpine 3.11.3)", + "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], + "nist": [ + "SI-2", + "RA-5" + ] + }, + "impact": 0.7, + "desc": "Calls to EVP_CipherUpdate, EVP_EncryptUpdate and EVP_DecryptUpdate may overflow the output length argument in some cases where the input length is close to the maximum permissable length for an integer on the platform. In such cases the return value from the function call will be 1 (indicating success), but the output length value will be negative. This could cause applications to behave incorrectly or crash. OpenSSL versions 1.1.1i and below are affected by this issue. Users of these versions should upgrade to OpenSSL 1.1.1j. OpenSSL versions 1.0.2x and below are affected by this issue. However OpenSSL 1.0.2 is out of support and no longer receiving public updates. Premium support customers of OpenSSL 1.0.2 should upgrade to 1.0.2y. Other users should upgrade to 1.1.1j. Fixed in OpenSSL 1.1.1j (Affected 1.1.1-1.1.1i). Fixed in OpenSSL 1.0.2y (Affected 1.0.2-1.0.2x).", + "descriptions": [ + { + "data": "More information on this vulnerability is provided in the hyperlink\nhttps://avd.aquasec.com/nvd/cve-2021-23840", + "label": "fix" + } + ], + "refs": [], + "source_location": {}, + "code": "{\n \"Findings\": [\n {\n \"SchemaVersion\": \"2018-10-08\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)/CVE-2021-23840\",\n \"ProductArn\": \"arn:aws:securityhub:us-east-1::product/aquasecurity/aquasecurity\",\n \"GeneratorId\": \"Trivy\",\n \"AwsAccountId\": \"123456789012\",\n \"Types\": [\n \"Software and Configuration Checks/Vulnerabilities/CVE\"\n ],\n \"CreatedAt\": \"2022-02-07T23:51:26.943143-05:00\",\n \"UpdatedAt\": \"2022-02-07T23:51:26.943155-05:00\",\n \"Severity\": {\n \"Label\": \"HIGH\"\n },\n \"Title\": \"Trivy found a vulnerability to CVE-2021-23840 in container golang:1.12-alpine (alpine 3.11.3)\",\n \"Description\": \"Calls to EVP_CipherUpdate, EVP_EncryptUpdate and EVP_DecryptUpdate may overflow the output length argument in some cases where the input length is close to the maximum permissable length for an integer on the platform. In such cases the return value from the function call will be 1 (indicating success), but the output length value will be negative. This could cause applications to behave incorrectly or crash. OpenSSL versions 1.1.1i and below are affected by this issue. Users of these versions should upgrade to OpenSSL 1.1.1j. OpenSSL versions 1.0.2x and below are affected by this issue. However OpenSSL 1.0.2 is out of support and no longer receiving public updates. Premium support customers of OpenSSL 1.0.2 should upgrade to 1.0.2y. Other users should upgrade to 1.1.1j. Fixed in OpenSSL 1.1.1j (Affected 1.1.1-1.1.1i). Fixed in OpenSSL 1.0.2y (Affected 1.0.2-1.0.2x).\",\n \"Remediation\": {\n \"Recommendation\": {\n \"Text\": \"More information on this vulnerability is provided in the hyperlink\",\n \"Url\": \"https://avd.aquasec.com/nvd/cve-2021-23840\"\n }\n },\n \"ProductFields\": {\n \"Product Name\": \"Trivy\"\n },\n \"Resources\": [\n {\n \"Type\": \"Container\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)\",\n \"Partition\": \"aws\",\n \"Region\": \"us-east-1\",\n \"Details\": {\n \"Container\": {\n \"ImageName\": \"golang:1.12-alpine (alpine 3.11.3)\"\n },\n \"Other\": {\n \"CVE ID\": \"CVE-2021-23840\",\n \"CVE Title\": \"openssl: integer overflow in CipherUpdate\",\n \"PkgName\": \"libcrypto1.1\",\n \"Installed Package\": \"1.1.1d-r3\",\n \"Patched Package\": \"1.1.1j-r0\",\n \"NvdCvssScoreV3\": \"7.5\",\n \"NvdCvssVectorV3\": \"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H\",\n \"NvdCvssScoreV2\": \"5\",\n \"NvdCvssVectorV2\": \"AV:N/AC:L/Au:N/C:N/I:N/A:P\"\n }\n }\n }\n ],\n \"RecordState\": \"ACTIVE\"\n },\n {\n \"SchemaVersion\": \"2018-10-08\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)/CVE-2021-23840\",\n \"ProductArn\": \"arn:aws:securityhub:us-east-1::product/aquasecurity/aquasecurity\",\n \"GeneratorId\": \"Trivy\",\n \"AwsAccountId\": \"123456789012\",\n \"Types\": [\n \"Software and Configuration Checks/Vulnerabilities/CVE\"\n ],\n \"CreatedAt\": \"2022-02-07T23:51:26.945568-05:00\",\n \"UpdatedAt\": \"2022-02-07T23:51:26.94558-05:00\",\n \"Severity\": {\n \"Label\": \"HIGH\"\n },\n \"Title\": \"Trivy found a vulnerability to CVE-2021-23840 in container golang:1.12-alpine (alpine 3.11.3)\",\n \"Description\": \"Calls to EVP_CipherUpdate, EVP_EncryptUpdate and EVP_DecryptUpdate may overflow the output length argument in some cases where the input length is close to the maximum permissable length for an integer on the platform. In such cases the return value from the function call will be 1 (indicating success), but the output length value will be negative. This could cause applications to behave incorrectly or crash. OpenSSL versions 1.1.1i and below are affected by this issue. Users of these versions should upgrade to OpenSSL 1.1.1j. OpenSSL versions 1.0.2x and below are affected by this issue. However OpenSSL 1.0.2 is out of support and no longer receiving public updates. Premium support customers of OpenSSL 1.0.2 should upgrade to 1.0.2y. Other users should upgrade to 1.1.1j. Fixed in OpenSSL 1.1.1j (Affected 1.1.1-1.1.1i). Fixed in OpenSSL 1.0.2y (Affected 1.0.2-1.0.2x).\",\n \"Remediation\": {\n \"Recommendation\": {\n \"Text\": \"More information on this vulnerability is provided in the hyperlink\",\n \"Url\": \"https://avd.aquasec.com/nvd/cve-2021-23840\"\n }\n },\n \"ProductFields\": {\n \"Product Name\": \"Trivy\"\n },\n \"Resources\": [\n {\n \"Type\": \"Container\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)\",\n \"Partition\": \"aws\",\n \"Region\": \"us-east-1\",\n \"Details\": {\n \"Container\": {\n \"ImageName\": \"golang:1.12-alpine (alpine 3.11.3)\"\n },\n \"Other\": {\n \"CVE ID\": \"CVE-2021-23840\",\n \"CVE Title\": \"openssl: integer overflow in CipherUpdate\",\n \"PkgName\": \"libssl1.1\",\n \"Installed Package\": \"1.1.1d-r3\",\n \"Patched Package\": \"1.1.1j-r0\",\n \"NvdCvssScoreV3\": \"7.5\",\n \"NvdCvssVectorV3\": \"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H\",\n \"NvdCvssScoreV2\": \"5\",\n \"NvdCvssVectorV2\": \"AV:N/AC:L/Au:N/C:N/I:N/A:P\"\n }\n }\n }\n ],\n \"RecordState\": \"ACTIVE\"\n }\n ]\n}", + "results": [ + { + "status": "failed", + "code_desc": "Resources: [Type: Container, Id: golang:1.12-alpine (alpine 3.11.3), Partition: aws, Region: us-east-1]", + "start_time": "2022-02-07T23:51:26.943155-05:00", + "message": "For package libcrypto1.1, the current version that is installed is 1.1.1d-r3. The package has been patched since version(s): 1.1.1j-r0." + }, + { + "status": "failed", + "code_desc": "Resources: [Type: Container, Id: golang:1.12-alpine (alpine 3.11.3), Partition: aws, Region: us-east-1]", + "start_time": "2022-02-07T23:51:26.94558-05:00", + "message": "For package libssl1.1, the current version that is installed is 1.1.1d-r3. The package has been patched since version(s): 1.1.1j-r0." + } + ] + }, + { + "id": "Trivy/CVE-2021-3450", + "title": "Trivy found a vulnerability to CVE-2021-3450 in container golang:1.12-alpine (alpine 3.11.3)", + "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], + "nist": [ + "SI-2", + "RA-5" + ] + }, + "impact": 0.7, + "desc": "The X509_V_FLAG_X509_STRICT flag enables additional security checks of the certificates present in a certificate chain. It is not set by default. Starting from OpenSSL version 1.1.1h a check to disallow certificates in the chain that have explicitly encoded elliptic curve parameters was added as an additional strict check. An error in the implementation of this check meant that the result of a previous check to confirm that certificates in the chain are valid CA certificates was overwritten. This effectively bypasses the check that non-CA certificates must not be able to issue other certificates. If a &#34;purpose&#34; has been configured then there is a subsequent opportunity for checks that the certificate is a valid CA. All of the named &#34;purpose&#34; values implemented in libcrypto perform this check. Therefore, where a purpose is set the certificate chain will still be rejected even when the strict flag has been used. A purpose is set by default in libssl client and server certificate verification routines, but it ..", + "descriptions": [ + { + "data": "More information on this vulnerability is provided in the hyperlink\nhttps://avd.aquasec.com/nvd/cve-2021-3450", + "label": "fix" + } + ], + "refs": [], + "source_location": {}, + "code": "{\n \"Findings\": [\n {\n \"SchemaVersion\": \"2018-10-08\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)/CVE-2021-3450\",\n \"ProductArn\": \"arn:aws:securityhub:us-east-1::product/aquasecurity/aquasecurity\",\n \"GeneratorId\": \"Trivy\",\n \"AwsAccountId\": \"123456789012\",\n \"Types\": [\n \"Software and Configuration Checks/Vulnerabilities/CVE\"\n ],\n \"CreatedAt\": \"2022-02-07T23:51:26.943427-05:00\",\n \"UpdatedAt\": \"2022-02-07T23:51:26.943438-05:00\",\n \"Severity\": {\n \"Label\": \"HIGH\"\n },\n \"Title\": \"Trivy found a vulnerability to CVE-2021-3450 in container golang:1.12-alpine (alpine 3.11.3)\",\n \"Description\": \"The X509_V_FLAG_X509_STRICT flag enables additional security checks of the certificates present in a certificate chain. It is not set by default. Starting from OpenSSL version 1.1.1h a check to disallow certificates in the chain that have explicitly encoded elliptic curve parameters was added as an additional strict check. An error in the implementation of this check meant that the result of a previous check to confirm that certificates in the chain are valid CA certificates was overwritten. This effectively bypasses the check that non-CA certificates must not be able to issue other certificates. If a "purpose" has been configured then there is a subsequent opportunity for checks that the certificate is a valid CA. All of the named "purpose" values implemented in libcrypto perform this check. Therefore, where a purpose is set the certificate chain will still be rejected even when the strict flag has been used. A purpose is set by default in libssl client and server certificate verification routines, but it ..\",\n \"Remediation\": {\n \"Recommendation\": {\n \"Text\": \"More information on this vulnerability is provided in the hyperlink\",\n \"Url\": \"https://avd.aquasec.com/nvd/cve-2021-3450\"\n }\n },\n \"ProductFields\": {\n \"Product Name\": \"Trivy\"\n },\n \"Resources\": [\n {\n \"Type\": \"Container\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)\",\n \"Partition\": \"aws\",\n \"Region\": \"us-east-1\",\n \"Details\": {\n \"Container\": {\n \"ImageName\": \"golang:1.12-alpine (alpine 3.11.3)\"\n },\n \"Other\": {\n \"CVE ID\": \"CVE-2021-3450\",\n \"CVE Title\": \"openssl: CA certificate check bypass with X509_V_FLAG_X509_STRICT\",\n \"PkgName\": \"libcrypto1.1\",\n \"Installed Package\": \"1.1.1d-r3\",\n \"Patched Package\": \"1.1.1k-r0\",\n \"NvdCvssScoreV3\": \"7.4\",\n \"NvdCvssVectorV3\": \"CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:N\",\n \"NvdCvssScoreV2\": \"5.8\",\n \"NvdCvssVectorV2\": \"AV:N/AC:M/Au:N/C:P/I:P/A:N\"\n }\n }\n }\n ],\n \"RecordState\": \"ACTIVE\"\n },\n {\n \"SchemaVersion\": \"2018-10-08\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)/CVE-2021-3450\",\n \"ProductArn\": \"arn:aws:securityhub:us-east-1::product/aquasecurity/aquasecurity\",\n \"GeneratorId\": \"Trivy\",\n \"AwsAccountId\": \"123456789012\",\n \"Types\": [\n \"Software and Configuration Checks/Vulnerabilities/CVE\"\n ],\n \"CreatedAt\": \"2022-02-07T23:51:26.945826-05:00\",\n \"UpdatedAt\": \"2022-02-07T23:51:26.945838-05:00\",\n \"Severity\": {\n \"Label\": \"HIGH\"\n },\n \"Title\": \"Trivy found a vulnerability to CVE-2021-3450 in container golang:1.12-alpine (alpine 3.11.3)\",\n \"Description\": \"The X509_V_FLAG_X509_STRICT flag enables additional security checks of the certificates present in a certificate chain. It is not set by default. Starting from OpenSSL version 1.1.1h a check to disallow certificates in the chain that have explicitly encoded elliptic curve parameters was added as an additional strict check. An error in the implementation of this check meant that the result of a previous check to confirm that certificates in the chain are valid CA certificates was overwritten. This effectively bypasses the check that non-CA certificates must not be able to issue other certificates. If a "purpose" has been configured then there is a subsequent opportunity for checks that the certificate is a valid CA. All of the named "purpose" values implemented in libcrypto perform this check. Therefore, where a purpose is set the certificate chain will still be rejected even when the strict flag has been used. A purpose is set by default in libssl client and server certificate verification routines, but it ..\",\n \"Remediation\": {\n \"Recommendation\": {\n \"Text\": \"More information on this vulnerability is provided in the hyperlink\",\n \"Url\": \"https://avd.aquasec.com/nvd/cve-2021-3450\"\n }\n },\n \"ProductFields\": {\n \"Product Name\": \"Trivy\"\n },\n \"Resources\": [\n {\n \"Type\": \"Container\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)\",\n \"Partition\": \"aws\",\n \"Region\": \"us-east-1\",\n \"Details\": {\n \"Container\": {\n \"ImageName\": \"golang:1.12-alpine (alpine 3.11.3)\"\n },\n \"Other\": {\n \"CVE ID\": \"CVE-2021-3450\",\n \"CVE Title\": \"openssl: CA certificate check bypass with X509_V_FLAG_X509_STRICT\",\n \"PkgName\": \"libssl1.1\",\n \"Installed Package\": \"1.1.1d-r3\",\n \"Patched Package\": \"1.1.1k-r0\",\n \"NvdCvssScoreV3\": \"7.4\",\n \"NvdCvssVectorV3\": \"CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:N\",\n \"NvdCvssScoreV2\": \"5.8\",\n \"NvdCvssVectorV2\": \"AV:N/AC:M/Au:N/C:P/I:P/A:N\"\n }\n }\n }\n ],\n \"RecordState\": \"ACTIVE\"\n }\n ]\n}", + "results": [ + { + "status": "failed", + "code_desc": "Resources: [Type: Container, Id: golang:1.12-alpine (alpine 3.11.3), Partition: aws, Region: us-east-1]", + "start_time": "2022-02-07T23:51:26.943438-05:00", + "message": "For package libcrypto1.1, the current version that is installed is 1.1.1d-r3. The package has been patched since version(s): 1.1.1k-r0." + }, + { + "status": "failed", + "code_desc": "Resources: [Type: Container, Id: golang:1.12-alpine (alpine 3.11.3), Partition: aws, Region: us-east-1]", + "start_time": "2022-02-07T23:51:26.945838-05:00", + "message": "For package libssl1.1, the current version that is installed is 1.1.1d-r3. The package has been patched since version(s): 1.1.1k-r0." + } + ] + }, + { + "id": "Trivy/CVE-2021-3712", + "title": "Trivy found a vulnerability to CVE-2021-3712 in container golang:1.12-alpine (alpine 3.11.3)", + "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], + "nist": [ + "SI-2", + "RA-5" + ] + }, + "impact": 0.7, + "desc": "ASN.1 strings are represented internally within OpenSSL as an ASN1_STRING structure which contains a buffer holding the string data and a field holding the buffer length. This contrasts with normal C strings which are repesented as a buffer for the string data which is terminated with a NUL (0) byte. Although not a strict requirement, ASN.1 strings that are parsed using OpenSSL&#39;s own &#34;d2i&#34; functions (and other similar parsing functions) as well as any string whose value has been set with the ASN1_STRING_set() function will additionally NUL terminate the byte array in the ASN1_STRING structure. However, it is possible for applications to directly construct valid ASN1_STRING structures which do not NUL terminate the byte array by directly setting the &#34;data&#34; and &#34;length&#34; fields in the ASN1_STRING array. This can also happen by using the ASN1_STRING_set0() function. Numerous OpenSSL functions that print ASN.1 data have been found to assume that the ASN1_STRING byte array will be NUL terminated, even though thi ..", + "descriptions": [ + { + "data": "More information on this vulnerability is provided in the hyperlink\nhttps://avd.aquasec.com/nvd/cve-2021-3712", + "label": "fix" + } + ], + "refs": [], + "source_location": {}, + "code": "{\n \"Findings\": [\n {\n \"SchemaVersion\": \"2018-10-08\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)/CVE-2021-3712\",\n \"ProductArn\": \"arn:aws:securityhub:us-east-1::product/aquasecurity/aquasecurity\",\n \"GeneratorId\": \"Trivy\",\n \"AwsAccountId\": \"123456789012\",\n \"Types\": [\n \"Software and Configuration Checks/Vulnerabilities/CVE\"\n ],\n \"CreatedAt\": \"2022-02-07T23:51:26.943699-05:00\",\n \"UpdatedAt\": \"2022-02-07T23:51:26.94371-05:00\",\n \"Severity\": {\n \"Label\": \"HIGH\"\n },\n \"Title\": \"Trivy found a vulnerability to CVE-2021-3712 in container golang:1.12-alpine (alpine 3.11.3)\",\n \"Description\": \"ASN.1 strings are represented internally within OpenSSL as an ASN1_STRING structure which contains a buffer holding the string data and a field holding the buffer length. This contrasts with normal C strings which are repesented as a buffer for the string data which is terminated with a NUL (0) byte. Although not a strict requirement, ASN.1 strings that are parsed using OpenSSL's own "d2i" functions (and other similar parsing functions) as well as any string whose value has been set with the ASN1_STRING_set() function will additionally NUL terminate the byte array in the ASN1_STRING structure. However, it is possible for applications to directly construct valid ASN1_STRING structures which do not NUL terminate the byte array by directly setting the "data" and "length" fields in the ASN1_STRING array. This can also happen by using the ASN1_STRING_set0() function. Numerous OpenSSL functions that print ASN.1 data have been found to assume that the ASN1_STRING byte array will be NUL terminated, even though thi ..\",\n \"Remediation\": {\n \"Recommendation\": {\n \"Text\": \"More information on this vulnerability is provided in the hyperlink\",\n \"Url\": \"https://avd.aquasec.com/nvd/cve-2021-3712\"\n }\n },\n \"ProductFields\": {\n \"Product Name\": \"Trivy\"\n },\n \"Resources\": [\n {\n \"Type\": \"Container\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)\",\n \"Partition\": \"aws\",\n \"Region\": \"us-east-1\",\n \"Details\": {\n \"Container\": {\n \"ImageName\": \"golang:1.12-alpine (alpine 3.11.3)\"\n },\n \"Other\": {\n \"CVE ID\": \"CVE-2021-3712\",\n \"CVE Title\": \"openssl: Read buffer overruns processing ASN.1 strings\",\n \"PkgName\": \"libcrypto1.1\",\n \"Installed Package\": \"1.1.1d-r3\",\n \"Patched Package\": \"1.1.1l-r0\",\n \"NvdCvssScoreV3\": \"7.4\",\n \"NvdCvssVectorV3\": \"CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:H\",\n \"NvdCvssScoreV2\": \"5.8\",\n \"NvdCvssVectorV2\": \"AV:N/AC:M/Au:N/C:P/I:N/A:P\"\n }\n }\n }\n ],\n \"RecordState\": \"ACTIVE\"\n },\n {\n \"SchemaVersion\": \"2018-10-08\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)/CVE-2021-3712\",\n \"ProductArn\": \"arn:aws:securityhub:us-east-1::product/aquasecurity/aquasecurity\",\n \"GeneratorId\": \"Trivy\",\n \"AwsAccountId\": \"123456789012\",\n \"Types\": [\n \"Software and Configuration Checks/Vulnerabilities/CVE\"\n ],\n \"CreatedAt\": \"2022-02-07T23:51:26.9461-05:00\",\n \"UpdatedAt\": \"2022-02-07T23:51:26.946111-05:00\",\n \"Severity\": {\n \"Label\": \"HIGH\"\n },\n \"Title\": \"Trivy found a vulnerability to CVE-2021-3712 in container golang:1.12-alpine (alpine 3.11.3)\",\n \"Description\": \"ASN.1 strings are represented internally within OpenSSL as an ASN1_STRING structure which contains a buffer holding the string data and a field holding the buffer length. This contrasts with normal C strings which are repesented as a buffer for the string data which is terminated with a NUL (0) byte. Although not a strict requirement, ASN.1 strings that are parsed using OpenSSL's own "d2i" functions (and other similar parsing functions) as well as any string whose value has been set with the ASN1_STRING_set() function will additionally NUL terminate the byte array in the ASN1_STRING structure. However, it is possible for applications to directly construct valid ASN1_STRING structures which do not NUL terminate the byte array by directly setting the "data" and "length" fields in the ASN1_STRING array. This can also happen by using the ASN1_STRING_set0() function. Numerous OpenSSL functions that print ASN.1 data have been found to assume that the ASN1_STRING byte array will be NUL terminated, even though thi ..\",\n \"Remediation\": {\n \"Recommendation\": {\n \"Text\": \"More information on this vulnerability is provided in the hyperlink\",\n \"Url\": \"https://avd.aquasec.com/nvd/cve-2021-3712\"\n }\n },\n \"ProductFields\": {\n \"Product Name\": \"Trivy\"\n },\n \"Resources\": [\n {\n \"Type\": \"Container\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)\",\n \"Partition\": \"aws\",\n \"Region\": \"us-east-1\",\n \"Details\": {\n \"Container\": {\n \"ImageName\": \"golang:1.12-alpine (alpine 3.11.3)\"\n },\n \"Other\": {\n \"CVE ID\": \"CVE-2021-3712\",\n \"CVE Title\": \"openssl: Read buffer overruns processing ASN.1 strings\",\n \"PkgName\": \"libssl1.1\",\n \"Installed Package\": \"1.1.1d-r3\",\n \"Patched Package\": \"1.1.1l-r0\",\n \"NvdCvssScoreV3\": \"7.4\",\n \"NvdCvssVectorV3\": \"CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:H\",\n \"NvdCvssScoreV2\": \"5.8\",\n \"NvdCvssVectorV2\": \"AV:N/AC:M/Au:N/C:P/I:N/A:P\"\n }\n }\n }\n ],\n \"RecordState\": \"ACTIVE\"\n }\n ]\n}", + "results": [ + { + "status": "failed", + "code_desc": "Resources: [Type: Container, Id: golang:1.12-alpine (alpine 3.11.3), Partition: aws, Region: us-east-1]", + "start_time": "2022-02-07T23:51:26.94371-05:00", + "message": "For package libcrypto1.1, the current version that is installed is 1.1.1d-r3. The package has been patched since version(s): 1.1.1l-r0." + }, + { + "status": "failed", + "code_desc": "Resources: [Type: Container, Id: golang:1.12-alpine (alpine 3.11.3), Partition: aws, Region: us-east-1]", + "start_time": "2022-02-07T23:51:26.946111-05:00", + "message": "For package libssl1.1, the current version that is installed is 1.1.1d-r3. The package has been patched since version(s): 1.1.1l-r0." + } + ] + }, + { + "id": "Trivy/CVE-2020-1971", + "title": "Trivy found a vulnerability to CVE-2020-1971 in container golang:1.12-alpine (alpine 3.11.3)", + "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], + "nist": [ + "SI-2", + "RA-5" + ] + }, + "impact": 0.5, + "desc": "The X.509 GeneralName type is a generic type for representing different types of names. One of those name types is known as EDIPartyName. OpenSSL provides a function GENERAL_NAME_cmp which compares different instances of a GENERAL_NAME to see if they are equal or not. This function behaves incorrectly when both GENERAL_NAMEs contain an EDIPARTYNAME. A NULL pointer dereference and a crash may occur leading to a possible denial of service attack. OpenSSL itself uses the GENERAL_NAME_cmp function for two purposes: 1) Comparing CRL distribution point names between an available CRL and a CRL distribution point embedded in an X509 certificate 2) When verifying that a timestamp response token signer matches the timestamp authority name (exposed via the API functions TS_RESP_verify_response and TS_RESP_verify_token) If an attacker can control both items being compared then that attacker could trigger a crash. For example if the attacker can trick a client or server into checking a malicious certificate against a m ..", + "descriptions": [ + { + "data": "More information on this vulnerability is provided in the hyperlink\nhttps://avd.aquasec.com/nvd/cve-2020-1971", + "label": "fix" + } + ], + "refs": [], + "source_location": {}, + "code": "{\n \"Findings\": [\n {\n \"SchemaVersion\": \"2018-10-08\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)/CVE-2020-1971\",\n \"ProductArn\": \"arn:aws:securityhub:us-east-1::product/aquasecurity/aquasecurity\",\n \"GeneratorId\": \"Trivy\",\n \"AwsAccountId\": \"123456789012\",\n \"Types\": [\n \"Software and Configuration Checks/Vulnerabilities/CVE\"\n ],\n \"CreatedAt\": \"2022-02-07T23:51:26.943965-05:00\",\n \"UpdatedAt\": \"2022-02-07T23:51:26.943977-05:00\",\n \"Severity\": {\n \"Label\": \"MEDIUM\"\n },\n \"Title\": \"Trivy found a vulnerability to CVE-2020-1971 in container golang:1.12-alpine (alpine 3.11.3)\",\n \"Description\": \"The X.509 GeneralName type is a generic type for representing different types of names. One of those name types is known as EDIPartyName. OpenSSL provides a function GENERAL_NAME_cmp which compares different instances of a GENERAL_NAME to see if they are equal or not. This function behaves incorrectly when both GENERAL_NAMEs contain an EDIPARTYNAME. A NULL pointer dereference and a crash may occur leading to a possible denial of service attack. OpenSSL itself uses the GENERAL_NAME_cmp function for two purposes: 1) Comparing CRL distribution point names between an available CRL and a CRL distribution point embedded in an X509 certificate 2) When verifying that a timestamp response token signer matches the timestamp authority name (exposed via the API functions TS_RESP_verify_response and TS_RESP_verify_token) If an attacker can control both items being compared then that attacker could trigger a crash. For example if the attacker can trick a client or server into checking a malicious certificate against a m ..\",\n \"Remediation\": {\n \"Recommendation\": {\n \"Text\": \"More information on this vulnerability is provided in the hyperlink\",\n \"Url\": \"https://avd.aquasec.com/nvd/cve-2020-1971\"\n }\n },\n \"ProductFields\": {\n \"Product Name\": \"Trivy\"\n },\n \"Resources\": [\n {\n \"Type\": \"Container\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)\",\n \"Partition\": \"aws\",\n \"Region\": \"us-east-1\",\n \"Details\": {\n \"Container\": {\n \"ImageName\": \"golang:1.12-alpine (alpine 3.11.3)\"\n },\n \"Other\": {\n \"CVE ID\": \"CVE-2020-1971\",\n \"CVE Title\": \"openssl: EDIPARTYNAME NULL pointer de-reference\",\n \"PkgName\": \"libcrypto1.1\",\n \"Installed Package\": \"1.1.1d-r3\",\n \"Patched Package\": \"1.1.1i-r0\",\n \"NvdCvssScoreV3\": \"5.9\",\n \"NvdCvssVectorV3\": \"CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H\",\n \"NvdCvssScoreV2\": \"4.3\",\n \"NvdCvssVectorV2\": \"AV:N/AC:M/Au:N/C:N/I:N/A:P\"\n }\n }\n }\n ],\n \"RecordState\": \"ACTIVE\"\n },\n {\n \"SchemaVersion\": \"2018-10-08\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)/CVE-2020-1971\",\n \"ProductArn\": \"arn:aws:securityhub:us-east-1::product/aquasecurity/aquasecurity\",\n \"GeneratorId\": \"Trivy\",\n \"AwsAccountId\": \"123456789012\",\n \"Types\": [\n \"Software and Configuration Checks/Vulnerabilities/CVE\"\n ],\n \"CreatedAt\": \"2022-02-07T23:51:26.946379-05:00\",\n \"UpdatedAt\": \"2022-02-07T23:51:26.94639-05:00\",\n \"Severity\": {\n \"Label\": \"MEDIUM\"\n },\n \"Title\": \"Trivy found a vulnerability to CVE-2020-1971 in container golang:1.12-alpine (alpine 3.11.3)\",\n \"Description\": \"The X.509 GeneralName type is a generic type for representing different types of names. One of those name types is known as EDIPartyName. OpenSSL provides a function GENERAL_NAME_cmp which compares different instances of a GENERAL_NAME to see if they are equal or not. This function behaves incorrectly when both GENERAL_NAMEs contain an EDIPARTYNAME. A NULL pointer dereference and a crash may occur leading to a possible denial of service attack. OpenSSL itself uses the GENERAL_NAME_cmp function for two purposes: 1) Comparing CRL distribution point names between an available CRL and a CRL distribution point embedded in an X509 certificate 2) When verifying that a timestamp response token signer matches the timestamp authority name (exposed via the API functions TS_RESP_verify_response and TS_RESP_verify_token) If an attacker can control both items being compared then that attacker could trigger a crash. For example if the attacker can trick a client or server into checking a malicious certificate against a m ..\",\n \"Remediation\": {\n \"Recommendation\": {\n \"Text\": \"More information on this vulnerability is provided in the hyperlink\",\n \"Url\": \"https://avd.aquasec.com/nvd/cve-2020-1971\"\n }\n },\n \"ProductFields\": {\n \"Product Name\": \"Trivy\"\n },\n \"Resources\": [\n {\n \"Type\": \"Container\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)\",\n \"Partition\": \"aws\",\n \"Region\": \"us-east-1\",\n \"Details\": {\n \"Container\": {\n \"ImageName\": \"golang:1.12-alpine (alpine 3.11.3)\"\n },\n \"Other\": {\n \"CVE ID\": \"CVE-2020-1971\",\n \"CVE Title\": \"openssl: EDIPARTYNAME NULL pointer de-reference\",\n \"PkgName\": \"libssl1.1\",\n \"Installed Package\": \"1.1.1d-r3\",\n \"Patched Package\": \"1.1.1i-r0\",\n \"NvdCvssScoreV3\": \"5.9\",\n \"NvdCvssVectorV3\": \"CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H\",\n \"NvdCvssScoreV2\": \"4.3\",\n \"NvdCvssVectorV2\": \"AV:N/AC:M/Au:N/C:N/I:N/A:P\"\n }\n }\n }\n ],\n \"RecordState\": \"ACTIVE\"\n }\n ]\n}", + "results": [ + { + "status": "failed", + "code_desc": "Resources: [Type: Container, Id: golang:1.12-alpine (alpine 3.11.3), Partition: aws, Region: us-east-1]", + "start_time": "2022-02-07T23:51:26.943977-05:00", + "message": "For package libcrypto1.1, the current version that is installed is 1.1.1d-r3. The package has been patched since version(s): 1.1.1i-r0." + }, + { + "status": "failed", + "code_desc": "Resources: [Type: Container, Id: golang:1.12-alpine (alpine 3.11.3), Partition: aws, Region: us-east-1]", + "start_time": "2022-02-07T23:51:26.94639-05:00", + "message": "For package libssl1.1, the current version that is installed is 1.1.1d-r3. The package has been patched since version(s): 1.1.1i-r0." + } + ] + }, + { + "id": "Trivy/CVE-2021-23841", + "title": "Trivy found a vulnerability to CVE-2021-23841 in container golang:1.12-alpine (alpine 3.11.3)", + "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], + "nist": [ + "SI-2", + "RA-5" + ] + }, + "impact": 0.5, + "desc": "The OpenSSL public API function X509_issuer_and_serial_hash() attempts to create a unique hash value based on the issuer and serial number data contained within an X509 certificate. However it fails to correctly handle any errors that may occur while parsing the issuer field (which might occur if the issuer field is maliciously constructed). This may subsequently result in a NULL pointer deref and a crash leading to a potential denial of service attack. The function X509_issuer_and_serial_hash() is never directly called by OpenSSL itself so applications are only vulnerable if they use this function directly and they use it on certificates that may have been obtained from untrusted sources. OpenSSL versions 1.1.1i and below are affected by this issue. Users of these versions should upgrade to OpenSSL 1.1.1j. OpenSSL versions 1.0.2x and below are affected by this issue. However OpenSSL 1.0.2 is out of support and no longer receiving public updates. Premium support customers of OpenSSL 1.0.2 should upgrade to ..", + "descriptions": [ + { + "data": "More information on this vulnerability is provided in the hyperlink\nhttps://avd.aquasec.com/nvd/cve-2021-23841", + "label": "fix" + } + ], + "refs": [], + "source_location": {}, + "code": "{\n \"Findings\": [\n {\n \"SchemaVersion\": \"2018-10-08\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)/CVE-2021-23841\",\n \"ProductArn\": \"arn:aws:securityhub:us-east-1::product/aquasecurity/aquasecurity\",\n \"GeneratorId\": \"Trivy\",\n \"AwsAccountId\": \"123456789012\",\n \"Types\": [\n \"Software and Configuration Checks/Vulnerabilities/CVE\"\n ],\n \"CreatedAt\": \"2022-02-07T23:51:26.944234-05:00\",\n \"UpdatedAt\": \"2022-02-07T23:51:26.944245-05:00\",\n \"Severity\": {\n \"Label\": \"MEDIUM\"\n },\n \"Title\": \"Trivy found a vulnerability to CVE-2021-23841 in container golang:1.12-alpine (alpine 3.11.3)\",\n \"Description\": \"The OpenSSL public API function X509_issuer_and_serial_hash() attempts to create a unique hash value based on the issuer and serial number data contained within an X509 certificate. However it fails to correctly handle any errors that may occur while parsing the issuer field (which might occur if the issuer field is maliciously constructed). This may subsequently result in a NULL pointer deref and a crash leading to a potential denial of service attack. The function X509_issuer_and_serial_hash() is never directly called by OpenSSL itself so applications are only vulnerable if they use this function directly and they use it on certificates that may have been obtained from untrusted sources. OpenSSL versions 1.1.1i and below are affected by this issue. Users of these versions should upgrade to OpenSSL 1.1.1j. OpenSSL versions 1.0.2x and below are affected by this issue. However OpenSSL 1.0.2 is out of support and no longer receiving public updates. Premium support customers of OpenSSL 1.0.2 should upgrade to ..\",\n \"Remediation\": {\n \"Recommendation\": {\n \"Text\": \"More information on this vulnerability is provided in the hyperlink\",\n \"Url\": \"https://avd.aquasec.com/nvd/cve-2021-23841\"\n }\n },\n \"ProductFields\": {\n \"Product Name\": \"Trivy\"\n },\n \"Resources\": [\n {\n \"Type\": \"Container\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)\",\n \"Partition\": \"aws\",\n \"Region\": \"us-east-1\",\n \"Details\": {\n \"Container\": {\n \"ImageName\": \"golang:1.12-alpine (alpine 3.11.3)\"\n },\n \"Other\": {\n \"CVE ID\": \"CVE-2021-23841\",\n \"CVE Title\": \"openssl: NULL pointer dereference in X509_issuer_and_serial_hash()\",\n \"PkgName\": \"libcrypto1.1\",\n \"Installed Package\": \"1.1.1d-r3\",\n \"Patched Package\": \"1.1.1j-r0\",\n \"NvdCvssScoreV3\": \"5.9\",\n \"NvdCvssVectorV3\": \"CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H\",\n \"NvdCvssScoreV2\": \"4.3\",\n \"NvdCvssVectorV2\": \"AV:N/AC:M/Au:N/C:N/I:N/A:P\"\n }\n }\n }\n ],\n \"RecordState\": \"ACTIVE\"\n },\n {\n \"SchemaVersion\": \"2018-10-08\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)/CVE-2021-23841\",\n \"ProductArn\": \"arn:aws:securityhub:us-east-1::product/aquasecurity/aquasecurity\",\n \"GeneratorId\": \"Trivy\",\n \"AwsAccountId\": \"123456789012\",\n \"Types\": [\n \"Software and Configuration Checks/Vulnerabilities/CVE\"\n ],\n \"CreatedAt\": \"2022-02-07T23:51:26.946648-05:00\",\n \"UpdatedAt\": \"2022-02-07T23:51:26.946659-05:00\",\n \"Severity\": {\n \"Label\": \"MEDIUM\"\n },\n \"Title\": \"Trivy found a vulnerability to CVE-2021-23841 in container golang:1.12-alpine (alpine 3.11.3)\",\n \"Description\": \"The OpenSSL public API function X509_issuer_and_serial_hash() attempts to create a unique hash value based on the issuer and serial number data contained within an X509 certificate. However it fails to correctly handle any errors that may occur while parsing the issuer field (which might occur if the issuer field is maliciously constructed). This may subsequently result in a NULL pointer deref and a crash leading to a potential denial of service attack. The function X509_issuer_and_serial_hash() is never directly called by OpenSSL itself so applications are only vulnerable if they use this function directly and they use it on certificates that may have been obtained from untrusted sources. OpenSSL versions 1.1.1i and below are affected by this issue. Users of these versions should upgrade to OpenSSL 1.1.1j. OpenSSL versions 1.0.2x and below are affected by this issue. However OpenSSL 1.0.2 is out of support and no longer receiving public updates. Premium support customers of OpenSSL 1.0.2 should upgrade to ..\",\n \"Remediation\": {\n \"Recommendation\": {\n \"Text\": \"More information on this vulnerability is provided in the hyperlink\",\n \"Url\": \"https://avd.aquasec.com/nvd/cve-2021-23841\"\n }\n },\n \"ProductFields\": {\n \"Product Name\": \"Trivy\"\n },\n \"Resources\": [\n {\n \"Type\": \"Container\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)\",\n \"Partition\": \"aws\",\n \"Region\": \"us-east-1\",\n \"Details\": {\n \"Container\": {\n \"ImageName\": \"golang:1.12-alpine (alpine 3.11.3)\"\n },\n \"Other\": {\n \"CVE ID\": \"CVE-2021-23841\",\n \"CVE Title\": \"openssl: NULL pointer dereference in X509_issuer_and_serial_hash()\",\n \"PkgName\": \"libssl1.1\",\n \"Installed Package\": \"1.1.1d-r3\",\n \"Patched Package\": \"1.1.1j-r0\",\n \"NvdCvssScoreV3\": \"5.9\",\n \"NvdCvssVectorV3\": \"CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H\",\n \"NvdCvssScoreV2\": \"4.3\",\n \"NvdCvssVectorV2\": \"AV:N/AC:M/Au:N/C:N/I:N/A:P\"\n }\n }\n }\n ],\n \"RecordState\": \"ACTIVE\"\n }\n ]\n}", + "results": [ + { + "status": "failed", + "code_desc": "Resources: [Type: Container, Id: golang:1.12-alpine (alpine 3.11.3), Partition: aws, Region: us-east-1]", + "start_time": "2022-02-07T23:51:26.944245-05:00", + "message": "For package libcrypto1.1, the current version that is installed is 1.1.1d-r3. The package has been patched since version(s): 1.1.1j-r0." + }, + { + "status": "failed", + "code_desc": "Resources: [Type: Container, Id: golang:1.12-alpine (alpine 3.11.3), Partition: aws, Region: us-east-1]", + "start_time": "2022-02-07T23:51:26.946659-05:00", + "message": "For package libssl1.1, the current version that is installed is 1.1.1d-r3. The package has been patched since version(s): 1.1.1j-r0." + } + ] + }, + { + "id": "Trivy/CVE-2021-3449", + "title": "Trivy found a vulnerability to CVE-2021-3449 in container golang:1.12-alpine (alpine 3.11.3)", + "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], + "nist": [ + "SI-2", + "RA-5" + ] + }, + "impact": 0.5, + "desc": "An OpenSSL TLS server may crash if sent a maliciously crafted renegotiation ClientHello message from a client. If a TLSv1.2 renegotiation ClientHello omits the signature_algorithms extension (where it was present in the initial ClientHello), but includes a signature_algorithms_cert extension then a NULL pointer dereference will result, leading to a crash and a denial of service attack. A server is only vulnerable if it has TLSv1.2 and renegotiation enabled (which is the default configuration). OpenSSL TLS clients are not impacted by this issue. All OpenSSL 1.1.1 versions are affected by this issue. Users of these versions should upgrade to OpenSSL 1.1.1k. OpenSSL 1.0.2 is not impacted by this issue. Fixed in OpenSSL 1.1.1k (Affected 1.1.1-1.1.1j).", + "descriptions": [ + { + "data": "More information on this vulnerability is provided in the hyperlink\nhttps://avd.aquasec.com/nvd/cve-2021-3449", + "label": "fix" + } + ], + "refs": [], + "source_location": {}, + "code": "{\n \"Findings\": [\n {\n \"SchemaVersion\": \"2018-10-08\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)/CVE-2021-3449\",\n \"ProductArn\": \"arn:aws:securityhub:us-east-1::product/aquasecurity/aquasecurity\",\n \"GeneratorId\": \"Trivy\",\n \"AwsAccountId\": \"123456789012\",\n \"Types\": [\n \"Software and Configuration Checks/Vulnerabilities/CVE\"\n ],\n \"CreatedAt\": \"2022-02-07T23:51:26.944512-05:00\",\n \"UpdatedAt\": \"2022-02-07T23:51:26.944524-05:00\",\n \"Severity\": {\n \"Label\": \"MEDIUM\"\n },\n \"Title\": \"Trivy found a vulnerability to CVE-2021-3449 in container golang:1.12-alpine (alpine 3.11.3)\",\n \"Description\": \"An OpenSSL TLS server may crash if sent a maliciously crafted renegotiation ClientHello message from a client. If a TLSv1.2 renegotiation ClientHello omits the signature_algorithms extension (where it was present in the initial ClientHello), but includes a signature_algorithms_cert extension then a NULL pointer dereference will result, leading to a crash and a denial of service attack. A server is only vulnerable if it has TLSv1.2 and renegotiation enabled (which is the default configuration). OpenSSL TLS clients are not impacted by this issue. All OpenSSL 1.1.1 versions are affected by this issue. Users of these versions should upgrade to OpenSSL 1.1.1k. OpenSSL 1.0.2 is not impacted by this issue. Fixed in OpenSSL 1.1.1k (Affected 1.1.1-1.1.1j).\",\n \"Remediation\": {\n \"Recommendation\": {\n \"Text\": \"More information on this vulnerability is provided in the hyperlink\",\n \"Url\": \"https://avd.aquasec.com/nvd/cve-2021-3449\"\n }\n },\n \"ProductFields\": {\n \"Product Name\": \"Trivy\"\n },\n \"Resources\": [\n {\n \"Type\": \"Container\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)\",\n \"Partition\": \"aws\",\n \"Region\": \"us-east-1\",\n \"Details\": {\n \"Container\": {\n \"ImageName\": \"golang:1.12-alpine (alpine 3.11.3)\"\n },\n \"Other\": {\n \"CVE ID\": \"CVE-2021-3449\",\n \"CVE Title\": \"openssl: NULL pointer dereference in signature_algorithms processing\",\n \"PkgName\": \"libcrypto1.1\",\n \"Installed Package\": \"1.1.1d-r3\",\n \"Patched Package\": \"1.1.1k-r0\",\n \"NvdCvssScoreV3\": \"5.9\",\n \"NvdCvssVectorV3\": \"CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H\",\n \"NvdCvssScoreV2\": \"4.3\",\n \"NvdCvssVectorV2\": \"AV:N/AC:M/Au:N/C:N/I:N/A:P\"\n }\n }\n }\n ],\n \"RecordState\": \"ACTIVE\"\n },\n {\n \"SchemaVersion\": \"2018-10-08\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)/CVE-2021-3449\",\n \"ProductArn\": \"arn:aws:securityhub:us-east-1::product/aquasecurity/aquasecurity\",\n \"GeneratorId\": \"Trivy\",\n \"AwsAccountId\": \"123456789012\",\n \"Types\": [\n \"Software and Configuration Checks/Vulnerabilities/CVE\"\n ],\n \"CreatedAt\": \"2022-02-07T23:51:26.946892-05:00\",\n \"UpdatedAt\": \"2022-02-07T23:51:26.946902-05:00\",\n \"Severity\": {\n \"Label\": \"MEDIUM\"\n },\n \"Title\": \"Trivy found a vulnerability to CVE-2021-3449 in container golang:1.12-alpine (alpine 3.11.3)\",\n \"Description\": \"An OpenSSL TLS server may crash if sent a maliciously crafted renegotiation ClientHello message from a client. If a TLSv1.2 renegotiation ClientHello omits the signature_algorithms extension (where it was present in the initial ClientHello), but includes a signature_algorithms_cert extension then a NULL pointer dereference will result, leading to a crash and a denial of service attack. A server is only vulnerable if it has TLSv1.2 and renegotiation enabled (which is the default configuration). OpenSSL TLS clients are not impacted by this issue. All OpenSSL 1.1.1 versions are affected by this issue. Users of these versions should upgrade to OpenSSL 1.1.1k. OpenSSL 1.0.2 is not impacted by this issue. Fixed in OpenSSL 1.1.1k (Affected 1.1.1-1.1.1j).\",\n \"Remediation\": {\n \"Recommendation\": {\n \"Text\": \"More information on this vulnerability is provided in the hyperlink\",\n \"Url\": \"https://avd.aquasec.com/nvd/cve-2021-3449\"\n }\n },\n \"ProductFields\": {\n \"Product Name\": \"Trivy\"\n },\n \"Resources\": [\n {\n \"Type\": \"Container\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)\",\n \"Partition\": \"aws\",\n \"Region\": \"us-east-1\",\n \"Details\": {\n \"Container\": {\n \"ImageName\": \"golang:1.12-alpine (alpine 3.11.3)\"\n },\n \"Other\": {\n \"CVE ID\": \"CVE-2021-3449\",\n \"CVE Title\": \"openssl: NULL pointer dereference in signature_algorithms processing\",\n \"PkgName\": \"libssl1.1\",\n \"Installed Package\": \"1.1.1d-r3\",\n \"Patched Package\": \"1.1.1k-r0\",\n \"NvdCvssScoreV3\": \"5.9\",\n \"NvdCvssVectorV3\": \"CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H\",\n \"NvdCvssScoreV2\": \"4.3\",\n \"NvdCvssVectorV2\": \"AV:N/AC:M/Au:N/C:N/I:N/A:P\"\n }\n }\n }\n ],\n \"RecordState\": \"ACTIVE\"\n }\n ]\n}", + "results": [ + { + "status": "failed", + "code_desc": "Resources: [Type: Container, Id: golang:1.12-alpine (alpine 3.11.3), Partition: aws, Region: us-east-1]", + "start_time": "2022-02-07T23:51:26.944524-05:00", + "message": "For package libcrypto1.1, the current version that is installed is 1.1.1d-r3. The package has been patched since version(s): 1.1.1k-r0." + }, + { + "status": "failed", + "code_desc": "Resources: [Type: Container, Id: golang:1.12-alpine (alpine 3.11.3), Partition: aws, Region: us-east-1]", + "start_time": "2022-02-07T23:51:26.946902-05:00", + "message": "For package libssl1.1, the current version that is installed is 1.1.1d-r3. The package has been patched since version(s): 1.1.1k-r0." + } + ] + }, + { + "id": "Trivy/CVE-2021-23839", + "title": "Trivy found a vulnerability to CVE-2021-23839 in container golang:1.12-alpine (alpine 3.11.3)", + "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], + "nist": [ + "SI-2", + "RA-5" + ] + }, + "impact": 0.3, + "desc": "OpenSSL 1.0.2 supports SSLv2. If a client attempts to negotiate SSLv2 with a server that is configured to support both SSLv2 and more recent SSL and TLS versions then a check is made for a version rollback attack when unpadding an RSA signature. Clients that support SSL or TLS versions greater than SSLv2 are supposed to use a special form of padding. A server that supports greater than SSLv2 is supposed to reject connection attempts from a client where this special form of padding is present, because this indicates that a version rollback has occurred (i.e. both client and server support greater than SSLv2, and yet this is the version that is being requested). The implementation of this padding check inverted the logic so that the connection attempt is accepted if the padding is present, and rejected if it is absent. This means that such as server will accept a connection if a version rollback attack has occurred. Further the server will erroneously reject a connection if a normal SSLv2 connection attempt ..", + "descriptions": [ + { + "data": "More information on this vulnerability is provided in the hyperlink\nhttps://avd.aquasec.com/nvd/cve-2021-23839", + "label": "fix" + } + ], + "refs": [], + "source_location": {}, + "code": "{\n \"Findings\": [\n {\n \"SchemaVersion\": \"2018-10-08\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)/CVE-2021-23839\",\n \"ProductArn\": \"arn:aws:securityhub:us-east-1::product/aquasecurity/aquasecurity\",\n \"GeneratorId\": \"Trivy\",\n \"AwsAccountId\": \"123456789012\",\n \"Types\": [\n \"Software and Configuration Checks/Vulnerabilities/CVE\"\n ],\n \"CreatedAt\": \"2022-02-07T23:51:26.944771-05:00\",\n \"UpdatedAt\": \"2022-02-07T23:51:26.944783-05:00\",\n \"Severity\": {\n \"Label\": \"LOW\"\n },\n \"Title\": \"Trivy found a vulnerability to CVE-2021-23839 in container golang:1.12-alpine (alpine 3.11.3)\",\n \"Description\": \"OpenSSL 1.0.2 supports SSLv2. If a client attempts to negotiate SSLv2 with a server that is configured to support both SSLv2 and more recent SSL and TLS versions then a check is made for a version rollback attack when unpadding an RSA signature. Clients that support SSL or TLS versions greater than SSLv2 are supposed to use a special form of padding. A server that supports greater than SSLv2 is supposed to reject connection attempts from a client where this special form of padding is present, because this indicates that a version rollback has occurred (i.e. both client and server support greater than SSLv2, and yet this is the version that is being requested). The implementation of this padding check inverted the logic so that the connection attempt is accepted if the padding is present, and rejected if it is absent. This means that such as server will accept a connection if a version rollback attack has occurred. Further the server will erroneously reject a connection if a normal SSLv2 connection attempt ..\",\n \"Remediation\": {\n \"Recommendation\": {\n \"Text\": \"More information on this vulnerability is provided in the hyperlink\",\n \"Url\": \"https://avd.aquasec.com/nvd/cve-2021-23839\"\n }\n },\n \"ProductFields\": {\n \"Product Name\": \"Trivy\"\n },\n \"Resources\": [\n {\n \"Type\": \"Container\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)\",\n \"Partition\": \"aws\",\n \"Region\": \"us-east-1\",\n \"Details\": {\n \"Container\": {\n \"ImageName\": \"golang:1.12-alpine (alpine 3.11.3)\"\n },\n \"Other\": {\n \"CVE ID\": \"CVE-2021-23839\",\n \"CVE Title\": \"openssl: incorrect SSLv2 rollback protection\",\n \"PkgName\": \"libcrypto1.1\",\n \"Installed Package\": \"1.1.1d-r3\",\n \"Patched Package\": \"1.1.1j-r0\",\n \"NvdCvssScoreV3\": \"3.7\",\n \"NvdCvssVectorV3\": \"CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:L/A:N\",\n \"NvdCvssScoreV2\": \"4.3\",\n \"NvdCvssVectorV2\": \"AV:N/AC:M/Au:N/C:N/I:P/A:N\"\n }\n }\n }\n ],\n \"RecordState\": \"ACTIVE\"\n },\n {\n \"SchemaVersion\": \"2018-10-08\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)/CVE-2021-23839\",\n \"ProductArn\": \"arn:aws:securityhub:us-east-1::product/aquasecurity/aquasecurity\",\n \"GeneratorId\": \"Trivy\",\n \"AwsAccountId\": \"123456789012\",\n \"Types\": [\n \"Software and Configuration Checks/Vulnerabilities/CVE\"\n ],\n \"CreatedAt\": \"2022-02-07T23:51:26.947138-05:00\",\n \"UpdatedAt\": \"2022-02-07T23:51:26.947149-05:00\",\n \"Severity\": {\n \"Label\": \"LOW\"\n },\n \"Title\": \"Trivy found a vulnerability to CVE-2021-23839 in container golang:1.12-alpine (alpine 3.11.3)\",\n \"Description\": \"OpenSSL 1.0.2 supports SSLv2. If a client attempts to negotiate SSLv2 with a server that is configured to support both SSLv2 and more recent SSL and TLS versions then a check is made for a version rollback attack when unpadding an RSA signature. Clients that support SSL or TLS versions greater than SSLv2 are supposed to use a special form of padding. A server that supports greater than SSLv2 is supposed to reject connection attempts from a client where this special form of padding is present, because this indicates that a version rollback has occurred (i.e. both client and server support greater than SSLv2, and yet this is the version that is being requested). The implementation of this padding check inverted the logic so that the connection attempt is accepted if the padding is present, and rejected if it is absent. This means that such as server will accept a connection if a version rollback attack has occurred. Further the server will erroneously reject a connection if a normal SSLv2 connection attempt ..\",\n \"Remediation\": {\n \"Recommendation\": {\n \"Text\": \"More information on this vulnerability is provided in the hyperlink\",\n \"Url\": \"https://avd.aquasec.com/nvd/cve-2021-23839\"\n }\n },\n \"ProductFields\": {\n \"Product Name\": \"Trivy\"\n },\n \"Resources\": [\n {\n \"Type\": \"Container\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)\",\n \"Partition\": \"aws\",\n \"Region\": \"us-east-1\",\n \"Details\": {\n \"Container\": {\n \"ImageName\": \"golang:1.12-alpine (alpine 3.11.3)\"\n },\n \"Other\": {\n \"CVE ID\": \"CVE-2021-23839\",\n \"CVE Title\": \"openssl: incorrect SSLv2 rollback protection\",\n \"PkgName\": \"libssl1.1\",\n \"Installed Package\": \"1.1.1d-r3\",\n \"Patched Package\": \"1.1.1j-r0\",\n \"NvdCvssScoreV3\": \"3.7\",\n \"NvdCvssVectorV3\": \"CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:L/A:N\",\n \"NvdCvssScoreV2\": \"4.3\",\n \"NvdCvssVectorV2\": \"AV:N/AC:M/Au:N/C:N/I:P/A:N\"\n }\n }\n }\n ],\n \"RecordState\": \"ACTIVE\"\n }\n ]\n}", + "results": [ + { + "status": "failed", + "code_desc": "Resources: [Type: Container, Id: golang:1.12-alpine (alpine 3.11.3), Partition: aws, Region: us-east-1]", + "start_time": "2022-02-07T23:51:26.944783-05:00", + "message": "For package libcrypto1.1, the current version that is installed is 1.1.1d-r3. The package has been patched since version(s): 1.1.1j-r0." + }, + { + "status": "failed", + "code_desc": "Resources: [Type: Container, Id: golang:1.12-alpine (alpine 3.11.3), Partition: aws, Region: us-east-1]", + "start_time": "2022-02-07T23:51:26.947149-05:00", + "message": "For package libssl1.1, the current version that is installed is 1.1.1d-r3. The package has been patched since version(s): 1.1.1j-r0." + } + ] + }, + { + "id": "Trivy/CVE-2020-28928", + "title": "Trivy found a vulnerability to CVE-2020-28928 in container golang:1.12-alpine (alpine 3.11.3)", + "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], + "nist": [ + "SI-2", + "RA-5" + ] + }, + "impact": 0.5, + "desc": "In musl libc through 1.2.1, wcsnrtombs mishandles particular combinations of destination buffer size and source character limit, as demonstrated by an invalid write access (buffer overflow).", + "descriptions": [ + { + "data": "More information on this vulnerability is provided in the hyperlink\nhttps://avd.aquasec.com/nvd/cve-2020-28928", + "label": "fix" + } + ], + "refs": [], + "source_location": {}, + "code": "{\n \"Findings\": [\n {\n \"SchemaVersion\": \"2018-10-08\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)/CVE-2020-28928\",\n \"ProductArn\": \"arn:aws:securityhub:us-east-1::product/aquasecurity/aquasecurity\",\n \"GeneratorId\": \"Trivy\",\n \"AwsAccountId\": \"123456789012\",\n \"Types\": [\n \"Software and Configuration Checks/Vulnerabilities/CVE\"\n ],\n \"CreatedAt\": \"2022-02-07T23:51:26.947382-05:00\",\n \"UpdatedAt\": \"2022-02-07T23:51:26.947393-05:00\",\n \"Severity\": {\n \"Label\": \"MEDIUM\"\n },\n \"Title\": \"Trivy found a vulnerability to CVE-2020-28928 in container golang:1.12-alpine (alpine 3.11.3)\",\n \"Description\": \"In musl libc through 1.2.1, wcsnrtombs mishandles particular combinations of destination buffer size and source character limit, as demonstrated by an invalid write access (buffer overflow).\",\n \"Remediation\": {\n \"Recommendation\": {\n \"Text\": \"More information on this vulnerability is provided in the hyperlink\",\n \"Url\": \"https://avd.aquasec.com/nvd/cve-2020-28928\"\n }\n },\n \"ProductFields\": {\n \"Product Name\": \"Trivy\"\n },\n \"Resources\": [\n {\n \"Type\": \"Container\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)\",\n \"Partition\": \"aws\",\n \"Region\": \"us-east-1\",\n \"Details\": {\n \"Container\": {\n \"ImageName\": \"golang:1.12-alpine (alpine 3.11.3)\"\n },\n \"Other\": {\n \"CVE ID\": \"CVE-2020-28928\",\n \"CVE Title\": \"\",\n \"PkgName\": \"musl\",\n \"Installed Package\": \"1.1.24-r0\",\n \"Patched Package\": \"1.1.24-r3\",\n \"NvdCvssScoreV3\": \"5.5\",\n \"NvdCvssVectorV3\": \"CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H\",\n \"NvdCvssScoreV2\": \"2.1\",\n \"NvdCvssVectorV2\": \"AV:L/AC:L/Au:N/C:N/I:N/A:P\"\n }\n }\n }\n ],\n \"RecordState\": \"ACTIVE\"\n },\n {\n \"SchemaVersion\": \"2018-10-08\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)/CVE-2020-28928\",\n \"ProductArn\": \"arn:aws:securityhub:us-east-1::product/aquasecurity/aquasecurity\",\n \"GeneratorId\": \"Trivy\",\n \"AwsAccountId\": \"123456789012\",\n \"Types\": [\n \"Software and Configuration Checks/Vulnerabilities/CVE\"\n ],\n \"CreatedAt\": \"2022-02-07T23:51:26.947623-05:00\",\n \"UpdatedAt\": \"2022-02-07T23:51:26.947634-05:00\",\n \"Severity\": {\n \"Label\": \"MEDIUM\"\n },\n \"Title\": \"Trivy found a vulnerability to CVE-2020-28928 in container golang:1.12-alpine (alpine 3.11.3)\",\n \"Description\": \"In musl libc through 1.2.1, wcsnrtombs mishandles particular combinations of destination buffer size and source character limit, as demonstrated by an invalid write access (buffer overflow).\",\n \"Remediation\": {\n \"Recommendation\": {\n \"Text\": \"More information on this vulnerability is provided in the hyperlink\",\n \"Url\": \"https://avd.aquasec.com/nvd/cve-2020-28928\"\n }\n },\n \"ProductFields\": {\n \"Product Name\": \"Trivy\"\n },\n \"Resources\": [\n {\n \"Type\": \"Container\",\n \"Id\": \"golang:1.12-alpine (alpine 3.11.3)\",\n \"Partition\": \"aws\",\n \"Region\": \"us-east-1\",\n \"Details\": {\n \"Container\": {\n \"ImageName\": \"golang:1.12-alpine (alpine 3.11.3)\"\n },\n \"Other\": {\n \"CVE ID\": \"CVE-2020-28928\",\n \"CVE Title\": \"\",\n \"PkgName\": \"musl-utils\",\n \"Installed Package\": \"1.1.24-r0\",\n \"Patched Package\": \"1.1.24-r3\",\n \"NvdCvssScoreV3\": \"5.5\",\n \"NvdCvssVectorV3\": \"CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H\",\n \"NvdCvssScoreV2\": \"2.1\",\n \"NvdCvssVectorV2\": \"AV:L/AC:L/Au:N/C:N/I:N/A:P\"\n }\n }\n }\n ],\n \"RecordState\": \"ACTIVE\"\n }\n ]\n}", + "results": [ + { + "status": "failed", + "code_desc": "Resources: [Type: Container, Id: golang:1.12-alpine (alpine 3.11.3), Partition: aws, Region: us-east-1]", + "start_time": "2022-02-07T23:51:26.947393-05:00", + "message": "For package musl, the current version that is installed is 1.1.24-r0. The package has been patched since version(s): 1.1.24-r3." + }, + { + "status": "failed", + "code_desc": "Resources: [Type: Container, Id: golang:1.12-alpine (alpine 3.11.3), Partition: aws, Region: us-east-1]", + "start_time": "2022-02-07T23:51:26.947634-05:00", + "message": "For package musl-utils, the current version that is installed is 1.1.24-r0. The package has been patched since version(s): 1.1.24-r3." + } + ] + } + ], + "sha256": "c6ec1716a630a64135af648ebc6f955aea7c0b5c5fc576b8e3a271105e1f2a65" + } + ] +} \ No newline at end of file diff --git a/test/sample_data/attestations/output/red_hat_good_xlsx-attestation.json b/test/sample_data/attestations/output/red_hat_good_xlsx-attestation.json index a5c59e19d..7579c1489 100644 --- a/test/sample_data/attestations/output/red_hat_good_xlsx-attestation.json +++ b/test/sample_data/attestations/output/red_hat_good_xlsx-attestation.json @@ -4272,7 +4272,7 @@ { "code_desc": "Manually verified status provided through attestation", "status": "passed", - "message": "Expired Attestation:\nExpired Status: passed\nExpired Explanation: The routine review through interview/examination attests to this control passing\n\nUpdated: Sun Apr 06 2059 00:00:00 GMT-0400 (Eastern Daylight Time)\nUpdated By: John Doe, ISSO\nFrequency: quarterly", + "message": "Attestation:\nStatus: passed\nExplanation: The routine review through interview/examination attests to this control passing\n\nUpdated: Sun Apr 06 2059 00:00:00 GMT-0400 (Eastern Daylight Time)\nUpdated By: John Doe, ISSO\nFrequency: quarterly", "start_time": "2022-06-17T00:39:04.299Z" } ], @@ -4404,7 +4404,7 @@ { "code_desc": "Manually verified status provided through attestation", "status": "passed", - "message": "Expired Attestation:\nExpired Status: passed\nExpired Explanation: The routine review through interview/examination attests to this control passing\n\nUpdated: Sun Apr 06 2059 00:00:00 GMT-0400 (Eastern Daylight Time)\nUpdated By: John Doe, ISSO\nFrequency: weekly", + "message": "Attestation:\nStatus: passed\nExplanation: The routine review through interview/examination attests to this control passing\n\nUpdated: Sun Apr 06 2059 00:00:00 GMT-0400 (Eastern Daylight Time)\nUpdated By: John Doe, ISSO\nFrequency: weekly", "start_time": "2022-06-17T00:39:04.299Z" } ], @@ -9301,7 +9301,7 @@ { "code_desc": "Manually verified status provided through attestation", "status": "passed", - "message": "Expired Attestation:\nExpired Status: passed\nExpired Explanation: The routine review through interview/examination attests to this control passing\n\nUpdated: Sun Apr 06 2059 00:00:00 GMT-0400 (Eastern Daylight Time)\nUpdated By: John Doe, ISSO\nFrequency: annually", + "message": "Attestation:\nStatus: passed\nExplanation: The routine review through interview/examination attests to this control passing\n\nUpdated: Sun Apr 06 2059 00:00:00 GMT-0400 (Eastern Daylight Time)\nUpdated By: John Doe, ISSO\nFrequency: annually", "start_time": "2022-06-17T00:39:04.299Z" } ], @@ -12601,7 +12601,7 @@ { "code_desc": "Manually verified status provided through attestation", "status": "passed", - "message": "Expired Attestation:\nExpired Status: passed\nExpired Explanation: The routine review through interview/examination attests to this control passing\n\nUpdated: Sun Apr 06 2059 00:00:00 GMT-0400 (Eastern Daylight Time)\nUpdated By: John Doe, ISSO\nFrequency: semiannually", + "message": "Attestation:\nStatus: passed\nExplanation: The routine review through interview/examination attests to this control passing\n\nUpdated: Sun Apr 06 2059 00:00:00 GMT-0400 (Eastern Daylight Time)\nUpdated By: John Doe, ISSO\nFrequency: semiannually", "start_time": "2022-06-17T00:39:04.299Z" } ], @@ -14533,7 +14533,7 @@ { "code_desc": "Manually verified status provided through attestation", "status": "passed", - "message": "Expired Attestation:\nExpired Status: passed\nExpired Explanation: The routine review through interview/examination attests to this control passing\n\nUpdated: Sun Apr 06 2059 00:00:00 GMT-0400 (Eastern Daylight Time)\nUpdated By: John Doe, ISSO\nFrequency: every2weeks", + "message": "Attestation:\nStatus: passed\nExplanation: The routine review through interview/examination attests to this control passing\n\nUpdated: Sun Apr 06 2059 00:00:00 GMT-0400 (Eastern Daylight Time)\nUpdated By: John Doe, ISSO\nFrequency: every2weeks", "start_time": "2022-06-17T00:39:04.301Z" } ], diff --git a/test/sample_data/attestations/output/triple_overlay_example_json-attestation.json b/test/sample_data/attestations/output/triple_overlay_example_json-attestation.json index 8d44601f0..ed2ba379f 100644 --- a/test/sample_data/attestations/output/triple_overlay_example_json-attestation.json +++ b/test/sample_data/attestations/output/triple_overlay_example_json-attestation.json @@ -1432,7 +1432,7 @@ { "code_desc": "Manually verified status provided through attestation", "status": "passed", - "message": "Expired Attestation:\nExpired Status: passed\nExpired Explanation: Audit logs are automatically backed up and preserved as necessary\n\nUpdated: 2099-05-02\nUpdated By: Json Smith, Security\nFrequency: monthly", + "message": "Attestation:\nStatus: passed\nExplanation: Audit logs are automatically backed up and preserved as necessary\n\nUpdated: 2099-05-02\nUpdated By: Json Smith, Security\nFrequency: monthly", "start_time": "2022-06-10T01:52:27.233Z" } ], @@ -12553,7 +12553,7 @@ { "code_desc": "Manually verified status provided through attestation", "status": "passed", - "message": "Expired Attestation:\nExpired Status: passed\nExpired Explanation: Audit logs are automatically backed up and preserved as necessary\n\nUpdated: 2099-05-02\nUpdated By: Json Smith, Security\nFrequency: monthly", + "message": "Attestation:\nStatus: passed\nExplanation: Audit logs are automatically backed up and preserved as necessary\n\nUpdated: 2099-05-02\nUpdated By: Json Smith, Security\nFrequency: monthly", "start_time": "2022-06-10T01:52:27.234Z" } ], @@ -23524,7 +23524,7 @@ { "code_desc": "Manually verified status provided through attestation", "status": "passed", - "message": "Expired Attestation:\nExpired Status: passed\nExpired Explanation: Audit logs are automatically backed up and preserved as necessary\n\nUpdated: 2099-05-02\nUpdated By: Json Smith, Security\nFrequency: monthly", + "message": "Attestation:\nStatus: passed\nExplanation: Audit logs are automatically backed up and preserved as necessary\n\nUpdated: 2099-05-02\nUpdated By: Json Smith, Security\nFrequency: monthly", "start_time": "2022-06-10T01:52:27.235Z" } ], diff --git a/test/sample_data/burpsuite/burpsuite-hdf.json b/test/sample_data/burpsuite/burpsuite-hdf.json index cd2e207ac..fc34ed68c 100644 --- a/test/sample_data/burpsuite/burpsuite-hdf.json +++ b/test/sample_data/burpsuite/burpsuite-hdf.json @@ -1,9 +1,9 @@ { "platform": { "name": "Heimdall Tools", - "release": "2.6.27" + "release": "2.6.29" }, - "version": "2.6.27", + "version": "2.6.29", "statistics": {}, "profiles": [ { @@ -23,6 +23,10 @@ "RA-5" ], "cweid": "CWE-942: Overly Permissive Cross-domain Whitelist", + "cci": [ + "CCI-003173", + "CCI-001643" + ], "confidence": "Certain" }, "refs": [], @@ -112,6 +116,10 @@ "RA-5" ], "cweid": "CWE-942: Overly Permissive Cross-domain Whitelist", + "cci": [ + "CCI-003173", + "CCI-001643" + ], "confidence": "Certain" }, "refs": [], @@ -200,6 +208,9 @@ "SI-10" ], "cweid": "CWE-20: Improper Input Validation\nCWE-116: Improper Encoding or Escaping of Output", + "cci": [ + "CCI-001310" + ], "confidence": "Certain" }, "refs": [], @@ -334,6 +345,10 @@ "RA-5" ], "cweid": "CWE-530: Exposure of Backup File to an Unauthorized Control Sphere", + "cci": [ + "CCI-003173", + "CCI-001643" + ], "confidence": "Certain" }, "refs": [], @@ -373,6 +388,10 @@ "RA-5" ], "cweid": "CWE-16: Configuration", + "cci": [ + "CCI-003173", + "CCI-001643" + ], "confidence": "Certain" }, "refs": [], @@ -407,6 +426,10 @@ "SC-13" ], "cweid": "CWE-295: Improper Certificate Validation\nCWE-326: Inadequate Encryption Strength\nCWE-327: Use of a Broken or Risky Cryptographic Algorithm", + "cci": [ + "CCI-002438", + "CCI-002450" + ], "confidence": "Certain" }, "refs": [], @@ -441,6 +464,10 @@ "RA-5" ], "cweid": "CWE-16: Configuration\nCWE-436: Interpretation Conflict", + "cci": [ + "CCI-003173", + "CCI-001643" + ], "confidence": "Certain" }, "refs": [], @@ -475,6 +502,10 @@ "RA-5" ], "cweid": "CWE-524: Information Exposure Through Caching\nCWE-525: Information Exposure Through Browser Caching", + "cci": [ + "CCI-003173", + "CCI-001643" + ], "confidence": "Certain" }, "refs": [], @@ -508,6 +539,9 @@ "SC-8" ], "cweid": "CWE-200: Information Exposure", + "cci": [ + "CCI-002418" + ], "confidence": "Certain" }, "refs": [], @@ -542,6 +576,10 @@ "RA-5" ], "cweid": "CWE-523: Unprotected Transport of Credentials", + "cci": [ + "CCI-003173", + "CCI-001643" + ], "confidence": "Certain" }, "refs": [], @@ -580,6 +618,9 @@ "SC-8" ], "cweid": "CWE-200: Information Exposure", + "cci": [ + "CCI-002418" + ], "confidence": "Certain" }, "refs": [], @@ -613,6 +654,11 @@ "IA-5" ], "cweid": "CWE-693: Protection Mechanism Failure", + "cci": [ + "CCI-001544", + "CCI-000183", + "CCI-002042" + ], "confidence": "Firm" }, "refs": [], @@ -657,6 +703,10 @@ "SI-11" ], "cweid": "CWE-200: Information Exposure\nCWE-388: Error Handling", + "cci": [ + "CCI-002418", + "CCI-001312" + ], "confidence": "Certain" }, "refs": [], @@ -690,6 +740,9 @@ "SC-12" ], "cweid": "CWE-326: Inadequate Encryption Strength", + "cci": [ + "CCI-002438" + ], "confidence": "Certain" }, "refs": [], @@ -718,7 +771,7 @@ ] } ], - "sha256": "eef21ba08b34c1efb5153e100f6e4a9b8aaf9a3d57579efa2017da9803d0a096" + "sha256": "b48fa5d1fd985a659b09437f3db37e68ed4810e48e74a02d9baabfdf1a697c41" } ], "passthrough": {} diff --git a/test/sample_data/jfrog_xray/jfrog-hdf.json b/test/sample_data/jfrog_xray/jfrog-hdf.json index ae2c52e77..4d1c127b0 100644 --- a/test/sample_data/jfrog_xray/jfrog-hdf.json +++ b/test/sample_data/jfrog_xray/jfrog-hdf.json @@ -1,9 +1,9 @@ { "platform": { "name": "Heimdall Tools", - "release": "2.6.27" + "release": "2.6.29" }, - "version": "2.6.27", + "version": "2.6.29", "statistics": {}, "profiles": [ { @@ -17,6 +17,10 @@ "controls": [ { "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], "nist": [ "SA-11", "RA-5" @@ -40,6 +44,10 @@ }, { "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], "nist": [ "SA-11", "RA-5" @@ -68,6 +76,10 @@ }, { "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], "nist": [ "SA-11", "RA-5" @@ -91,6 +103,10 @@ }, { "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], "nist": [ "SA-11", "RA-5" @@ -114,6 +130,10 @@ }, { "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], "nist": [ "SA-11", "RA-5" @@ -137,6 +157,10 @@ }, { "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], "nist": [ "SA-11", "RA-5" @@ -162,6 +186,10 @@ }, { "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], "nist": [ "SA-11", "RA-5" @@ -190,6 +218,10 @@ }, { "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], "nist": [ "SA-11", "RA-5" @@ -215,6 +247,10 @@ }, { "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], "nist": [ "SA-11", "RA-5" @@ -238,6 +274,10 @@ }, { "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], "nist": [ "SA-11", "RA-5" @@ -263,6 +303,9 @@ }, { "tags": { + "cci": [ + "CCI-001310" + ], "nist": [ "SI-10" ], @@ -287,6 +330,9 @@ }, { "tags": { + "cci": [ + "CCI-001310" + ], "nist": [ "SI-10" ], @@ -311,6 +357,10 @@ }, { "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], "nist": [ "SA-11", "RA-5" @@ -334,6 +384,9 @@ }, { "tags": { + "cci": [ + "CCI-001310" + ], "nist": [ "SI-10" ], @@ -368,6 +421,10 @@ }, { "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], "nist": [ "SA-11", "RA-5" @@ -391,6 +448,9 @@ }, { "tags": { + "cci": [ + "CCI-001310" + ], "nist": [ "SI-10" ], @@ -415,6 +475,10 @@ }, { "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], "nist": [ "SA-11", "RA-5" @@ -437,7 +501,7 @@ ] } ], - "sha256": "59053172c009e944c565873a6af1f507f8e8b43974bfddcf234495843788d5d1" + "sha256": "d48acb1f3b5c1e913aa662b8a6291b7e4b3ad53db79cd93859ebc2448ada8e5e" } ], "passthrough": { diff --git a/test/sample_data/nikto/nikto-hdf.json b/test/sample_data/nikto/nikto-hdf.json index ac2ef2ec5..e89d2e4dd 100644 --- a/test/sample_data/nikto/nikto-hdf.json +++ b/test/sample_data/nikto/nikto-hdf.json @@ -1,10 +1,10 @@ { "platform": { "name": "Heimdall Tools", - "release": "2.6.27", + "release": "2.6.29", "target_id": "Host: zero.webappsecurity.com Port: 443" }, - "version": "2.6.27", + "version": "2.6.29", "statistics": {}, "profiles": [ { @@ -23,6 +23,11 @@ "SA-11", "RA-5" ], + "cci": [ + "CCI-000213", + "CCI-003173", + "CCI-001643" + ], "ösvdb": "0" }, "refs": [], @@ -47,6 +52,11 @@ "SA-11", "RA-5" ], + "cci": [ + "CCI-000213", + "CCI-003173", + "CCI-001643" + ], "ösvdb": "0" }, "refs": [], @@ -71,6 +81,11 @@ "SA-11", "RA-5" ], + "cci": [ + "CCI-000213", + "CCI-003173", + "CCI-001643" + ], "ösvdb": "0" }, "refs": [], @@ -95,6 +110,11 @@ "SA-11", "RA-5" ], + "cci": [ + "CCI-000213", + "CCI-003173", + "CCI-001643" + ], "ösvdb": "0" }, "refs": [], @@ -119,6 +139,11 @@ "SA-11", "RA-5" ], + "cci": [ + "CCI-000213", + "CCI-003173", + "CCI-001643" + ], "ösvdb": "0" }, "refs": [], @@ -143,6 +168,11 @@ "SA-11", "RA-5" ], + "cci": [ + "CCI-000213", + "CCI-003173", + "CCI-001643" + ], "ösvdb": "0" }, "refs": [], @@ -167,6 +197,11 @@ "SA-11", "RA-5" ], + "cci": [ + "CCI-000213", + "CCI-003173", + "CCI-001643" + ], "ösvdb": "0" }, "refs": [], @@ -189,6 +224,9 @@ "nist": [ "SI-2" ], + "cci": [ + "CCI-002605" + ], "ösvdb": "0" }, "refs": [], @@ -211,6 +249,9 @@ "nist": [ "SI-2" ], + "cci": [ + "CCI-002605" + ], "ösvdb": "0" }, "refs": [], @@ -233,6 +274,9 @@ "nist": [ "SI-2" ], + "cci": [ + "CCI-002605" + ], "ösvdb": "0" }, "refs": [], @@ -255,6 +299,9 @@ "nist": [ "SI-2" ], + "cci": [ + "CCI-002605" + ], "ösvdb": "0" }, "refs": [], @@ -277,6 +324,9 @@ "nist": [ "SI-10" ], + "cci": [ + "CCI-001310" + ], "ösvdb": "0" }, "refs": [], @@ -301,6 +351,11 @@ "SA-11", "RA-5" ], + "cci": [ + "CCI-000213", + "CCI-003173", + "CCI-001643" + ], "ösvdb": "0" }, "refs": [], @@ -325,6 +380,11 @@ "SA-11", "RA-5" ], + "cci": [ + "CCI-000213", + "CCI-003173", + "CCI-001643" + ], "ösvdb": "877" }, "refs": [], @@ -343,7 +403,7 @@ ] } ], - "sha256": "0742c6230fde6671b44f07bd356f8c822977de36d5782c007893650d7fb3be30" + "sha256": "2fc562d0d6cb427168348a5bda0e9b8dd1cac0365a1f171b40c1c92ac23cbf27" } ], "passthrough": { diff --git a/test/sample_data/prisma/localhost.json b/test/sample_data/prisma/localhost.json index 8292ff3d2..135ed6e81 100644 --- a/test/sample_data/prisma/localhost.json +++ b/test/sample_data/prisma/localhost.json @@ -1,10 +1,10 @@ { "platform": { "name": "Heimdall Tools", - "release": "2.6.16", + "release": "2.6.29", "target_id": "localhost" }, - "version": "2.6.16", + "version": "2.6.29", "statistics": { "duration": null }, @@ -27,6 +27,10 @@ { "desc": "(CIS_Linux_2.0.0 - 5.2.2) Ensure permissions on SSH private host key files are configured", "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], "nist": [ "SA-11", "RA-5" @@ -69,6 +73,10 @@ { "desc": "(CIS_Linux_2.0.0 - 1.4.3) Ensure authentication required for single user mode", "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], "nist": [ "SA-11", "RA-5" @@ -99,6 +107,10 @@ { "desc": "(CIS_Linux_2.0.0 - 6.2.9) Ensure users own their home directories", "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], "nist": [ "SA-11", "RA-5" @@ -129,6 +141,10 @@ { "desc": "Vixie Cron before the 3.0pl1-133 Debian package allows local users to cause a denial of service (daemon crash) via a large crontab file because the calloc return value is not checked.", "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], "nist": [ "SI-2", "RA-5" @@ -159,6 +175,10 @@ { "desc": "Vixie Cron before the 3.0pl1-133 Debian package allows local users to cause a denial of service (memory consumption) via a large crontab file because an unlimited number of lines is accepted.", "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], "nist": [ "SI-2", "RA-5" @@ -189,6 +209,10 @@ { "desc": "Samba is an open-source implementation of the Server Message Block (SMB) protocol and the related Common Internet File System (CIFS) protocol, which allow PC-compatible machines to share files, printers, and various information. Security Fix(es): * samba: Out-of-bounds heap read/write vulnerability in VFS module vfs_fruit allows code execution (CVE-2021-44142) For more details about the security issue(s), including the impact, a CVSS score, acknowledgments, and other related information, refer to the CVE page(s) listed in the References section. Bug Fix(es): * Fix username map script regression introduced with CVE-2020-25717 (BZ#2046173)", "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], "nist": [ "SI-2", "RA-5" @@ -219,6 +243,10 @@ { "desc": "DOCUMENTATION: A vulnerability was found in archive/zip of the Go standard library. Applications written in Go where Reader.Open (the API implementing io/fs.FS introduced in Go 1.16) can panic when parsing a crafted ZIP archive containing completely invalid names or an empty filename argument. STATEMENT: * In OpenShift Container Platform multiple components are written in Go and use archive/zip from the standard library. However, all such components are short lived client side tools, not long lived server side executables. As the maximum impact of this vulnerability is a denial of service in client utilities, this vulnerability is rated Low for OpenShift Container Plaform. * Because Service Telemetry Framework1.2 will be retiring soon and the flaw\\'s impact is lower, no update will be provided at this time for STF1.2\\'s sg-core-container. * Because Red Hat Ceph Storage only uses Go\\'s archive/zip for the Grafana CLI and thus is not directly exploitable, the vulnerability has been rated low for Red Hat Ceph Storage.", "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], "nist": [ "SI-2", "RA-5" @@ -249,6 +277,10 @@ { "desc": "Red Hat\\'s versions of the associated software have been determined to NOT be affected by CVE-2021-38297.", "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], "nist": [ "SI-2", "RA-5" @@ -279,6 +311,10 @@ { "desc": "Red Hat\\'s versions of the associated software have been determined to NOT be affected by CVE-2020-24553.", "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], "nist": [ "SI-2", "RA-5" @@ -306,7 +342,7 @@ ] } ], - "sha256": "00362f6e469781493d3b33c72fbeb9ea65f6a94206dec4b4d8373e9f321a128e" + "sha256": "2539e31314f1cfdf559b581fe359efb19a8906d1f81e9507615b8f54815bfb50" } ] } \ No newline at end of file diff --git a/test/sample_data/prisma/my-fake-host-1.somewhere.cloud.json b/test/sample_data/prisma/my-fake-host-1.somewhere.cloud.json index a12d2a672..cbd9cfe26 100644 --- a/test/sample_data/prisma/my-fake-host-1.somewhere.cloud.json +++ b/test/sample_data/prisma/my-fake-host-1.somewhere.cloud.json @@ -1,10 +1,10 @@ { "platform": { "name": "Heimdall Tools", - "release": "2.6.16", + "release": "2.6.29", "target_id": "my-fake-host-1.somewhere.cloud" }, - "version": "2.6.16", + "version": "2.6.29", "statistics": { "duration": null }, @@ -27,6 +27,10 @@ { "desc": "(CIS_Linux_2.0.0 - 5.2.2) Ensure permissions on SSH private host key files are configured", "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], "nist": [ "SA-11", "RA-5" @@ -57,6 +61,10 @@ { "desc": "(CIS_Linux_2.0.0 - 4.1.3) Ensure auditd service is enabled", "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], "nist": [ "SA-11", "RA-5" @@ -87,6 +95,10 @@ { "desc": "Red Hat\\'s versions of the associated software have been determined to NOT be affected by CVE-2019-19927.", "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], "nist": [ "SI-2", "RA-5" @@ -117,6 +129,10 @@ { "desc": "Integer overflow in the string_appends function in cplus-dem.c in libiberty allows remote attackers to execute arbitrary code via a crafted executable, which triggers a buffer overflow.", "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], "nist": [ "SI-2", "RA-5" @@ -147,6 +163,10 @@ { "desc": "DOCUMENTATION: An input validation vulnerability was found in Go. If cgo is specified in a Go file, it is possible to bypass the validation of arguments to the gcc compiler. This flaw allows an attacker to create a malicious repository that can execute arbitrary code when downloaded and run via `go get` or `go build` while building a Go project. The highest threat from this vulnerability is to confidentiality and integrity as well as system availability. STATEMENT: While the OpenShift Container Platform (OCP), Red Hat OpenShift Jaeger (RHOSJ), OpenShift Service Mesh (OSSM), and OpenShift Virtualization all contain RPMs and containers that are compiled with a vulnerable version of Go, the vulnerability is specific to the building of the Go code itself. Using `go get` or `go build` and as such, the relevant components have been marked as not affected. Additionally, only the main RPMs and containers for OCP, RHOSJ, OSSM, and OpenShift Virtualization are represented due to the large volume of not affected components. Red Hat Ceph Storage 3 ships the vulnerable version of go, and an attacker building go code on RHCS 3 could potentially exploit this vulnerability. MITIGATION: If it\\'s possible to confirm that the go project being built does not rely on any cgo code in the included dependencies, the env variable CGO_ENABLED=0 can be specified when using eithe", "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], "nist": [ "SI-2", "RA-5" @@ -177,6 +197,10 @@ { "desc": "The s_mp_div function in lib/freebl/mpi/mpi.c in Mozilla Network Security Services (NSS) before 3.21, as used in Mozilla Firefox before 44.0, improperly divides numbers, which might make it easier for remote attackers to defeat cryptographic protection mechanisms by leveraging use of the (1) mp_div or (2) mp_exptmod function.", "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], "nist": [ "SI-2", "RA-5" @@ -207,6 +231,10 @@ { "desc": "The ecryptfs_privileged_open function in fs/ecryptfs/kthread.c in the Linux kernel before 4.6.3 allows local users to gain privileges or cause a denial of service (stack memory consumption) via vectors involving crafted mmap calls for /proc pathnames, leading to recursive pagefault handling.", "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], "nist": [ "SI-2", "RA-5" @@ -235,7 +263,7 @@ ] } ], - "sha256": "c566b858380ca471fa4ae05a65b68e81d691f1a9eaddb31b0da9f4611ad34a63" + "sha256": "8733e69d05230cb6acb6329e5f0ed1d5c741af9492c23c7bfbda8e65db582ca7" } ] } \ No newline at end of file diff --git a/test/sample_data/prisma/my-fake-host-10.somewhere.cloud.json b/test/sample_data/prisma/my-fake-host-10.somewhere.cloud.json index b05e6a909..58470320a 100644 --- a/test/sample_data/prisma/my-fake-host-10.somewhere.cloud.json +++ b/test/sample_data/prisma/my-fake-host-10.somewhere.cloud.json @@ -1,10 +1,10 @@ { "platform": { "name": "Heimdall Tools", - "release": "2.6.16", + "release": "2.6.29", "target_id": "my-fake-host-10.somewhere.cloud" }, - "version": "2.6.16", + "version": "2.6.29", "statistics": { "duration": null }, @@ -27,6 +27,10 @@ { "desc": "(CIS_Linux_2.0.0 - 1.4.1) Ensure permissions on bootloader config are configured", "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], "nist": [ "SA-11", "RA-5" @@ -57,6 +61,10 @@ { "desc": "(CIS_Linux_2.0.0 - 1.4.3) Ensure authentication required for single user mode", "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], "nist": [ "SA-11", "RA-5" @@ -87,6 +95,10 @@ { "desc": "JasPer 2.0.14 has a memory leak in base/jas_malloc.c in libjasper.a when \\\"--output-format jp2\\\" is used.", "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], "nist": [ "SI-2", "RA-5" @@ -117,6 +129,10 @@ { "desc": "DOCUMENTATION: A NULL pointer dereference flaw was found in Jasper in the way it handled component references in the CDEF box in the JP2 image format decoder. This flaw allows a specially crafted JP2 image file to cause an application using the Jasper library to crash when opened. The highest threat from this vulnerability is system availability.", "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], "nist": [ "SI-2", "RA-5" @@ -147,6 +163,10 @@ { "desc": "A stack-based buffer overflow vulnerability was found in NBD server implementation in qemu before 2.11 allowing a client to request an export name of size up to 4096 bytes, which in fact should be limited to 256 bytes, causing an out-of-bounds stack write in the qemu process. If NBD server requires TLS, the attacker cannot trigger the buffer overflow without first successfully negotiating TLS.", "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], "nist": [ "SI-2", "RA-5" @@ -177,6 +197,10 @@ { "desc": "Samba is an open-source implementation of the Server Message Block (SMB) protocol and the related Common Internet File System (CIFS) protocol, which allow PC-compatible machines to share files, printers, and various information. Security Fix(es): * samba: Out-of-bounds heap read/write vulnerability in VFS module vfs_fruit allows code execution (CVE-2021-44142) For more details about the security issue(s), including the impact, a CVSS score, acknowledgments, and other related information, refer to the CVE page(s) listed in the References section. Bug Fix(es): * Fix username map script regression introduced with CVE-2020-25717 (BZ#2046173)", "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], "nist": [ "SI-2", "RA-5" @@ -205,7 +229,7 @@ ] } ], - "sha256": "240695d8cf83c388d6dee3d9ff7923762315a8064eb7e9ae08cedfadf88bc274" + "sha256": "d75b6060aeb96db0f282fc2d010d9e97b366d3c77c6b5cf0b079610ff02b7ae4" } ] } \ No newline at end of file diff --git a/test/sample_data/prisma/my-fake-host-11.somewhere.cloud.json b/test/sample_data/prisma/my-fake-host-11.somewhere.cloud.json index 8c04a96e5..32284b881 100644 --- a/test/sample_data/prisma/my-fake-host-11.somewhere.cloud.json +++ b/test/sample_data/prisma/my-fake-host-11.somewhere.cloud.json @@ -1,10 +1,10 @@ { "platform": { "name": "Heimdall Tools", - "release": "2.6.16", + "release": "2.6.29", "target_id": "my-fake-host-11.somewhere.cloud" }, - "version": "2.6.16", + "version": "2.6.29", "statistics": { "duration": null }, @@ -27,6 +27,10 @@ { "desc": "In LibTIFF 4.0.8, there is a memory leak in tif_jbig.c. A crafted TIFF document can lead to a memory leak resulting in a remote denial of service attack.", "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], "nist": [ "SI-2", "RA-5" @@ -57,6 +61,10 @@ { "desc": "In LibTIFF 4.0.8, there is a heap-based buffer overflow in the t2p_write_pdf function in tools/tiff2pdf.c. This heap overflow could lead to different damages. For example, a crafted TIFF document can lead to an out-of-bounds read in TIFFCleanup, an invalid free in TIFFClose or t2p_free, memory corruption in t2p_readwrite_pdf_image, or a double free in t2p_free. Given these possibilities, it probably could cause arbitrary code execution.", "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], "nist": [ "SI-2", "RA-5" @@ -87,6 +95,10 @@ { "desc": "In LibTIFF 4.0.7, the TIFFReadDirEntryLong8Array function in libtiff/tif_dirread.c mishandles a malloc operation, which allows attackers to cause a denial of service (memory leak within the function _TIFFmalloc in tif_unix.c) via a crafted file.", "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], "nist": [ "SI-2", "RA-5" @@ -117,6 +129,10 @@ { "desc": "DOCUMENTATION: A flaw was found in the Go encoding/binary package. Certain invalid inputs to the ReadUvarint or the ReadVarint causes those functions to read an unlimited number of bytes from the ByteReader argument before returning an error. This flaw possibly leads to processing more input than expected. The highest threat from this vulnerability is to system availability. STATEMENT: OpenShift Container Platform (OCP), OpenShift ServiceMesh (OSSM), RedHat OpenShift Jaeger (RHOSJ) and OpenShift Virtualization components are primarily written in Go, meaning that any component using the encoding/binary package includes the vulnerable code. The affected components are behind OpenShift OAuth authentication, therefore the impact is low. Red Hat Gluster Storage 3, Red Hat OpenShift Container Storage 4 and Red Hat Ceph Storage (3 and 4) components are built with the affected version of Go, however the vulnerable functionality is currently not used by these products and hence this issue has been rated as having a security impact of Low.", "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], "nist": [ "SI-2", "RA-5" @@ -147,6 +163,10 @@ { "desc": "The ecryptfs_privileged_open function in fs/ecryptfs/kthread.c in the Linux kernel before 4.6.3 allows local users to gain privileges or cause a denial of service (stack memory consumption) via vectors involving crafted mmap calls for /proc pathnames, leading to recursive pagefault handling.", "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], "nist": [ "SI-2", "RA-5" @@ -177,6 +197,10 @@ { "desc": "Samba is an open-source implementation of the Server Message Block (SMB) protocol and the related Common Internet File System (CIFS) protocol, which allow PC-compatible machines to share files, printers, and various information. Security Fix(es): * samba: Out-of-bounds heap read/write vulnerability in VFS module vfs_fruit allows code execution (CVE-2021-44142) For more details about the security issue(s), including the impact, a CVSS score, acknowledgments, and other related information, refer to the CVE page(s) listed in the References section. Bug Fix(es): * Fix username map script regression introduced with CVE-2020-25717 (BZ#2046173)", "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], "nist": [ "SI-2", "RA-5" @@ -205,7 +229,7 @@ ] } ], - "sha256": "c737fbd06764d54e1c007bc5886f2497c4f56ff78b465e306363f97586426ad1" + "sha256": "8669db8788c93d598d1a00696ea9a80dcc1b340b75c074dbd82aa05abd4cc7d7" } ] } \ No newline at end of file diff --git a/test/sample_data/prisma/my-fake-host-12.somewhere.cloud.json b/test/sample_data/prisma/my-fake-host-12.somewhere.cloud.json index 88f215260..25730445c 100644 --- a/test/sample_data/prisma/my-fake-host-12.somewhere.cloud.json +++ b/test/sample_data/prisma/my-fake-host-12.somewhere.cloud.json @@ -1,10 +1,10 @@ { "platform": { "name": "Heimdall Tools", - "release": "2.6.16", + "release": "2.6.29", "target_id": "my-fake-host-12.somewhere.cloud" }, - "version": "2.6.16", + "version": "2.6.29", "statistics": { "duration": null }, @@ -27,6 +27,10 @@ { "desc": "(CIS_Linux_2.0.0 - 4.1.19) Ensure the audit configuration is immutable", "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], "nist": [ "SA-11", "RA-5" @@ -57,6 +61,10 @@ { "desc": "(CIS_Linux_2.0.0 - 1.4.3) Ensure authentication required for single user mode", "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], "nist": [ "SA-11", "RA-5" @@ -87,6 +95,10 @@ { "desc": "grub2: Incorrect permission in grub.cfg allow unprivileged user to read the file content", "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], "nist": [ "SI-2", "RA-5" @@ -117,6 +129,10 @@ { "desc": "no description is available for this cve.", "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], "nist": [ "SI-2", "RA-5" @@ -147,6 +163,10 @@ { "desc": "This is a kernel live patch module which is automatically loaded by the RPM post-install script to modify the code of a running kernel. Security Fix(es): * kernel: xfs: raw block device data leak in XFS_IOC_ALLOCSP IOCTL (CVE-2021-4155) For more details about the security issue(s), including the impact, a CVSS score, acknowledgments, and other related information, refer to the CVE page(s) listed in the References section.", "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], "nist": [ "SI-2", "RA-5" @@ -177,6 +197,10 @@ { "desc": "Red Hat\\'s versions of the associated software have been determined to NOT be affected by CVE-2020-28362.", "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], "nist": [ "SI-2", "RA-5" @@ -205,7 +229,7 @@ ] } ], - "sha256": "05ed1936ffa45448f0433da7a3d90ca62080a05eab0468e00df92a9f9c7098a9" + "sha256": "ae5153fefbd693da7e9ccd3f0699ab5d99a9f463252b536372ec3882a47aed01" } ] } \ No newline at end of file diff --git a/test/sample_data/prisma/my-fake-host-13.somewhere.cloud.json b/test/sample_data/prisma/my-fake-host-13.somewhere.cloud.json index b8014c97a..a7d7a9beb 100644 --- a/test/sample_data/prisma/my-fake-host-13.somewhere.cloud.json +++ b/test/sample_data/prisma/my-fake-host-13.somewhere.cloud.json @@ -1,10 +1,10 @@ { "platform": { "name": "Heimdall Tools", - "release": "2.6.16", + "release": "2.6.29", "target_id": "my-fake-host-13.somewhere.cloud" }, - "version": "2.6.16", + "version": "2.6.29", "statistics": { "duration": null }, @@ -27,6 +27,10 @@ { "desc": "(CIS_Linux_2.0.0 - 4.1.3) Ensure auditd service is enabled", "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], "nist": [ "SA-11", "RA-5" @@ -57,6 +61,10 @@ { "desc": "(CIS_Linux_2.0.0 - 1.4.3) Ensure authentication required for single user mode", "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], "nist": [ "SA-11", "RA-5" @@ -87,6 +95,10 @@ { "desc": "In SQLite through 3.22.0, databases whose schema is corrupted using a CREATE TABLE AS statement could cause a NULL pointer dereference, related to build.c and prepare.c.", "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], "nist": [ "SI-2", "RA-5" @@ -117,6 +129,10 @@ { "desc": "An issue was discovered in certain Apple products. iOS before 10.3.2 is affected. macOS before 10.12.5 is affected. The issue involves the \\\"SQLite\\\" component. It allows remote attackers to execute arbitrary code or cause a denial of service (memory corruption and application crash) via a crafted web site.", "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], "nist": [ "SI-2", "RA-5" @@ -147,6 +163,10 @@ { "desc": "The ecryptfs_privileged_open function in fs/ecryptfs/kthread.c in the Linux kernel before 4.6.3 allows local users to gain privileges or cause a denial of service (stack memory consumption) via vectors involving crafted mmap calls for /proc pathnames, leading to recursive pagefault handling.", "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], "nist": [ "SI-2", "RA-5" @@ -177,6 +197,10 @@ { "desc": "DOCUMENTATION: A null pointer dereference vulnerability was found in golang. When using the library\\'s ssh server without specifying an option for GSSAPIWithMICConfig, it is possible for an attacker to craft an ssh client connection using the `gssapi-with-mic` authentication method and cause the server to panic resulting in a denial of service. The highest threat from this vulnerability is to system availability. STATEMENT: A large number of products include the affected package, but do not make use of the vulnerable SSH server code. Accordingly, the flaw itself is rated as \\\"Important\\\", but these products themselves all have a \\\"Low\\\" severity rating. Additionally, a number of products include golang.org/x/crypto (or even golang.org/x/crypto/ssh/terminal) but not specifically golang.org/x/crypto/ssh/server.go in the final build. As this would result in a very large number of entries of not affected products, only products which include the ssh server code (golang.org/x/crypto/ssh/server.go) have been represented here. Red Hat Enterprise Linux 8 container-tools:rhel8/containernetworking-plugins is not affected because although it uses some functionality from golang.org/x/crypto, it does not use or import anything from golang.org/x/crypto/ssh/*.", "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], "nist": [ "SI-2", "RA-5" @@ -207,6 +231,10 @@ { "desc": "Red Hat\\'s versions of the associated software have been determined to NOT be affected by CVE-2021-38297.", "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], "nist": [ "SI-2", "RA-5" @@ -235,7 +263,7 @@ ] } ], - "sha256": "e2a512c681de2c4191559de4dcf4e29a56e4897aad9cf8b9780558c4b28aee51" + "sha256": "f9253b4551b7c659d4dbd2ee1e8890695744e7bd66b39b958af3d72c630cb93a" } ] } \ No newline at end of file diff --git a/test/sample_data/prisma/my-fake-host-14.somewhere.cloud.json b/test/sample_data/prisma/my-fake-host-14.somewhere.cloud.json index f12f5c709..3a17dd971 100644 --- a/test/sample_data/prisma/my-fake-host-14.somewhere.cloud.json +++ b/test/sample_data/prisma/my-fake-host-14.somewhere.cloud.json @@ -1,10 +1,10 @@ { "platform": { "name": "Heimdall Tools", - "release": "2.6.16", + "release": "2.6.29", "target_id": "my-fake-host-14.somewhere.cloud" }, - "version": "2.6.16", + "version": "2.6.29", "statistics": { "duration": null }, @@ -27,6 +27,10 @@ { "desc": "(CIS_Linux_2.0.0 - 4.1.3) Ensure auditd service is enabled", "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], "nist": [ "SA-11", "RA-5" @@ -57,6 +61,10 @@ { "desc": "(CIS_Linux_2.0.0 - 1.4.3) Ensure authentication required for single user mode", "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], "nist": [ "SA-11", "RA-5" @@ -87,6 +95,10 @@ { "desc": "The authentication_agent_new function in polkitbackend/polkitbackendinteractiveauthority.c in PolicyKit (aka polkit) before 0.113 allows local users to cause a denial of service (NULL pointer dereference and polkitd daemon crash) by calling RegisterAuthenticationAgent with an invalid object path.", "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], "nist": [ "SI-2", "RA-5" @@ -117,6 +129,10 @@ { "desc": "The polkit_backend_action_pool_init function in polkitbackend/polkitbackendactionpool.c in PolicyKit (aka polkit) before 0.113 might allow local users to gain privileges via duplicate action IDs in action descriptions.", "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], "nist": [ "SI-2", "RA-5" @@ -147,6 +163,10 @@ { "desc": "Red Hat\\'s versions of the associated software have been determined to NOT be affected by CVE-2021-38297.", "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], "nist": [ "SI-2", "RA-5" @@ -177,6 +197,10 @@ { "desc": "DOCUMENTATION: A flaw was found in golang. An attacker can craft an input to ParseFragment within parse.go that would cause it to enter an infinite loop and never return. The greatest threat to the system is of availability. STATEMENT: Red Hat Developer Tools go-toolset-1.14-golang not affected because the vulnerable code is not shipped. This vulnerability within golang and buildah shipped with RHEL-7 are out of support scope. For more information on Red Hat\\'s support scope, visit: http://somewhere.cloud/support/policy/updates/errata For RHEL-8\\'s go-toolset:rhel8/golang, container-tools:1.0/buildah, container-tools:2.0/buildah, and container-tools:rhel8/buildah, the affected function is only used in e2e tests. For RHEL-9\\'s golang and buildah, the affected function is only used in e2e tests. Red Hat Openshift Container Storage has dependencies with the affected code, however, low priority trackers were filed as the vulnerable code is not shipped or used.", "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], "nist": [ "SI-2", "RA-5" @@ -207,6 +231,10 @@ { "desc": "Use-after-free vulnerability in hw/ide/ahci.c in QEMU, when built with IDE AHCI Emulation support, allows guest OS users to cause a denial of service (instance crash) or possibly execute arbitrary code via an invalid AHCI Native Command Queuing (NCQ) AIO command.", "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], "nist": [ "SI-2", "RA-5" @@ -235,7 +263,7 @@ ] } ], - "sha256": "72a12ab3a4a27a1a3b6c9ef61130b128775d0ff646f2fde55859fa693cee3592" + "sha256": "0af39e7acd93831213aca2c807a9277eb01780b55c1b111c6d6518a05071e0d2" } ] } \ No newline at end of file diff --git a/test/sample_data/prisma/my-fake-host-15.somewhere.cloud.json b/test/sample_data/prisma/my-fake-host-15.somewhere.cloud.json index 23a6adaa1..423a9a33b 100644 --- a/test/sample_data/prisma/my-fake-host-15.somewhere.cloud.json +++ b/test/sample_data/prisma/my-fake-host-15.somewhere.cloud.json @@ -1,10 +1,10 @@ { "platform": { "name": "Heimdall Tools", - "release": "2.6.16", + "release": "2.6.29", "target_id": "my-fake-host-15.somewhere.cloud" }, - "version": "2.6.16", + "version": "2.6.29", "statistics": { "duration": null }, @@ -27,6 +27,10 @@ { "desc": "(CIS_Linux_2.0.0 - 1.4.1) Ensure permissions on bootloader config are configured", "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], "nist": [ "SA-11", "RA-5" @@ -57,6 +61,10 @@ { "desc": "(CIS_Linux_2.0.0 - 1.4.3) Ensure authentication required for single user mode", "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], "nist": [ "SA-11", "RA-5" @@ -87,6 +95,10 @@ { "desc": "hostapd 0.6.7 through 2.5 and wpa_supplicant 0.6.7 through 2.5 do not reject \\n and \\r characters in passphrase parameters, which allows remote attackers to cause a denial of service (daemon outage) via a crafted WPS operation.", "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], "nist": [ "SI-2", "RA-5" @@ -117,6 +129,10 @@ { "desc": "The implementations of EAP-pwd in hostapd before 2.10 and wpa_supplicant before 2.10 are vulnerable to side-channel attacks as a result of cache access patterns. NOTE: this issue exists because of an incomplete fix for CVE-2019-9495.", "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], "nist": [ "SI-2", "RA-5" @@ -147,6 +163,10 @@ { "desc": "DOCUMENTATION: A vulnerability was found in archive/zip of the Go standard library. Applications written in Go where Reader.Open (the API implementing io/fs.FS introduced in Go 1.16) can panic when parsing a crafted ZIP archive containing completely invalid names or an empty filename argument. STATEMENT: * In OpenShift Container Platform multiple components are written in Go and use archive/zip from the standard library. However, all such components are short lived client side tools, not long lived server side executables. As the maximum impact of this vulnerability is a denial of service in client utilities, this vulnerability is rated Low for OpenShift Container Plaform. * Because Service Telemetry Framework1.2 will be retiring soon and the flaw\\'s impact is lower, no update will be provided at this time for STF1.2\\'s sg-core-container. * Because Red Hat Ceph Storage only uses Go\\'s archive/zip for the Grafana CLI and thus is not directly exploitable, the vulnerability has been rated low for Red Hat Ceph Storage.", "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], "nist": [ "SI-2", "RA-5" @@ -177,6 +197,10 @@ { "desc": "Red Hat\\'s versions of the associated software have been determined to NOT be affected by CVE-2021-38297.", "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], "nist": [ "SI-2", "RA-5" @@ -207,6 +231,10 @@ { "desc": "A flaw was found in the crypto subsystem of the Linux kernel before version kernel-4.15-rc4. The \\\"null skcipher\\\" was being dropped when each af_alg_ctx was freed instead of when the aead_tfm was freed. This can cause the null skcipher to be freed while it is still in use leading to a local user being able to crash the system or possibly escalate privileges.", "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], "nist": [ "SI-2", "RA-5" @@ -235,7 +263,7 @@ ] } ], - "sha256": "5da87942951d832ef43974bac1ff4869b2e54284d5fabc28bdf3c0a29b5c73a4" + "sha256": "459562b93f86bf750fc51b834608640e6ecf8c8f24236599db431d18a94e41b8" } ] } \ No newline at end of file diff --git a/test/sample_data/prisma/my-fake-host-2.somewhere.cloud.json b/test/sample_data/prisma/my-fake-host-2.somewhere.cloud.json index 34fde330b..777426d3b 100644 --- a/test/sample_data/prisma/my-fake-host-2.somewhere.cloud.json +++ b/test/sample_data/prisma/my-fake-host-2.somewhere.cloud.json @@ -1,10 +1,10 @@ { "platform": { "name": "Heimdall Tools", - "release": "2.6.16", + "release": "2.6.29", "target_id": "my-fake-host-2.somewhere.cloud" }, - "version": "2.6.16", + "version": "2.6.29", "statistics": { "duration": null }, @@ -27,6 +27,10 @@ { "desc": "(CIS_Linux_2.0.0 - 5.2.2) Ensure permissions on SSH private host key files are configured", "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], "nist": [ "SA-11", "RA-5" @@ -57,6 +61,10 @@ { "desc": "Red Hat\\'s versions of the associated software have been determined to NOT be affected by CVE-2021-28964.", "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], "nist": [ "SI-2", "RA-5" @@ -87,6 +95,10 @@ { "desc": "The ip6gre_err function in net/ipv6/ip6_gre.c in the Linux kernel allows remote attackers to have unspecified impact via vectors involving GRE flags in an IPv6 packet, which trigger an out-of-bounds access.", "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], "nist": [ "SI-2", "RA-5" @@ -117,6 +129,10 @@ { "desc": "The ecryptfs_privileged_open function in fs/ecryptfs/kthread.c in the Linux kernel before 4.6.3 allows local users to gain privileges or cause a denial of service (stack memory consumption) via vectors involving crafted mmap calls for /proc pathnames, leading to recursive pagefault handling.", "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], "nist": [ "SI-2", "RA-5" @@ -145,7 +161,7 @@ ] } ], - "sha256": "1997783fd71adfa8148b3f2afad173b593c5c15b0f9496a4429f7db82e874324" + "sha256": "efdeed2dc23bf7f06ad745a889cdeed64e48f6932746eff54447f7293521e89f" } ] } \ No newline at end of file diff --git a/test/sample_data/prisma/my-fake-host-3.somewhere.cloud.json b/test/sample_data/prisma/my-fake-host-3.somewhere.cloud.json index 241edd1d3..aee797ae5 100644 --- a/test/sample_data/prisma/my-fake-host-3.somewhere.cloud.json +++ b/test/sample_data/prisma/my-fake-host-3.somewhere.cloud.json @@ -1,10 +1,10 @@ { "platform": { "name": "Heimdall Tools", - "release": "2.6.16", + "release": "2.6.29", "target_id": "my-fake-host-3.somewhere.cloud" }, - "version": "2.6.16", + "version": "2.6.29", "statistics": { "duration": null }, @@ -27,6 +27,10 @@ { "desc": "(CIS_Linux_2.0.0 - 4.1.3) Ensure auditd service is enabled", "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], "nist": [ "SA-11", "RA-5" @@ -57,6 +61,10 @@ { "desc": "STATEMENT: As per upstream \\\"Prior to Samba 4.15.0 patches for this are not possible, due to the prior design of the Samba VFS layer which used pathname-based calls for most meta-data operations. A two and a half year effort was undertaken to completely re-write the Samba VFS layer to stop use of pathname-based calls in all cases involving reading and writing of metadata returned to the client. This work has finally been completed in Samba 4.15.0.\\\" MITIGATION: Do not enable SMB1 (please note SMB1 is disabled by default in Samba from version 4.11.0 and onwards). This prevents the creation of symbolic links via SMB1. If SMB1 must be enabled for backwards compatibility then add the parameter: unix extensions = no to the [global] section of your smb.conf and restart smbd. This prevents SMB1 clients from creating symlinks on the exported file system. However, if the same region of the file system is also exported using NFS, NFS clients can create symlinks that potentially can also hit the race condition. For non-patched versions of Samba we recommend only exporting areas of the file system by either SMB2 or NFS, not both.", "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], "nist": [ "SI-2", "RA-5" @@ -87,6 +95,10 @@ { "desc": "All versions of Samba prior to 4.13.16 are vulnerable to a malicious client using an SMB1 or NFS race to allow a directory to be created in an area of the server file system not exported under the share definition. Note that SMB1 has to be enabled, or the share also available via NFS in order for this attack to succeed.", "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], "nist": [ "SI-2", "RA-5" @@ -117,6 +129,10 @@ { "desc": "Samba is an open-source implementation of the Server Message Block (SMB) protocol and the related Common Internet File System (CIFS) protocol, which allow PC-compatible machines to share files, printers, and various information. Security Fix(es): * samba: Out-of-bounds heap read/write vulnerability in VFS module vfs_fruit allows code execution (CVE-2021-44142) For more details about the security issue(s), including the impact, a CVSS score, acknowledgments, and other related information, refer to the CVE page(s) listed in the References section.", "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], "nist": [ "SI-2", "RA-5" @@ -147,6 +163,10 @@ { "desc": "DOCUMENTATION: A flaw was found in golang. Extraneous zero characters at the beginning of an IP address octet are not properly considered which could allow an attacker to bypass IP-based access controls. The highest threat from this vulnerability is to data confidentiality and integrity as well as system availability. STATEMENT: This vulnerability potentially affects any component written in Go that uses the net standard library and ParseIP / ParseCIDR functions. There are components which might not use these functions or might use them to parse IP addresses and not manage them in any way (only store information about the ip address) . This reducing the severity of this vulnerability to Low for the following components: * OpenShift distributed tracing (formerly OpenShift Jaeger) * OpenShift Migration Toolkit for Containers * OpenShift Container Platform MITIGATION: Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.", "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], "nist": [ "SI-2", "RA-5" @@ -175,7 +195,7 @@ ] } ], - "sha256": "37e1cf406624a79c136ea6d2e512c4580ea770db7de7ce042e7fdb175b481e32" + "sha256": "5500dc99a18e0f1db9eb45c2b8cd4310cbba5ac82a9b5a1cf030664f51098585" } ] } \ No newline at end of file diff --git a/test/sample_data/prisma/my-fake-host-4.somewhere.cloud.json b/test/sample_data/prisma/my-fake-host-4.somewhere.cloud.json index b3a1aee32..e4d53d032 100644 --- a/test/sample_data/prisma/my-fake-host-4.somewhere.cloud.json +++ b/test/sample_data/prisma/my-fake-host-4.somewhere.cloud.json @@ -1,10 +1,10 @@ { "platform": { "name": "Heimdall Tools", - "release": "2.6.16", + "release": "2.6.29", "target_id": "my-fake-host-4.somewhere.cloud" }, - "version": "2.6.16", + "version": "2.6.29", "statistics": { "duration": null }, @@ -27,6 +27,10 @@ { "desc": "(CIS_Linux_2.0.0 - 1.4.1) Ensure permissions on bootloader config are configured", "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], "nist": [ "SA-11", "RA-5" @@ -57,6 +61,10 @@ { "desc": "(CIS_Linux_2.0.0 - 1.4.3) Ensure authentication required for single user mode", "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], "nist": [ "SA-11", "RA-5" @@ -87,6 +95,10 @@ { "desc": "All versions of Samba prior to 4.13.16 are vulnerable to a malicious client using an SMB1 or NFS race to allow a directory to be created in an area of the server file system not exported under the share definition. Note that SMB1 has to be enabled, or the share also available via NFS in order for this attack to succeed.", "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], "nist": [ "SI-2", "RA-5" @@ -117,6 +129,10 @@ { "desc": "STATEMENT: As per upstream \\\"Prior to Samba 4.15.0 patches for this are not possible, due to the prior design of the Samba VFS layer which used pathname-based calls for most meta-data operations. A two and a half year effort was undertaken to completely re-write the Samba VFS layer to stop use of pathname-based calls in all cases involving reading and writing of metadata returned to the client. This work has finally been completed in Samba 4.15.0.\\\" MITIGATION: Do not enable SMB1 (please note SMB1 is disabled by default in Samba from version 4.11.0 and onwards). This prevents the creation of symbolic links via SMB1. If SMB1 must be enabled for backwards compatibility then add the parameter: unix extensions = no to the [global] section of your smb.conf and restart smbd. This prevents SMB1 clients from creating symlinks on the exported file system. However, if the same region of the file system is also exported using NFS, NFS clients can create symlinks that potentially can also hit the race condition. For non-patched versions of Samba we recommend only exporting areas of the file system by either SMB2 or NFS, not both.", "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], "nist": [ "SI-2", "RA-5" @@ -147,6 +163,10 @@ { "desc": "Samba is an open-source implementation of the Server Message Block (SMB) protocol and the related Common Internet File System (CIFS) protocol, which allow PC-compatible machines to share files, printers, and various information. Security Fix(es): * samba: Out-of-bounds heap read/write vulnerability in VFS module vfs_fruit allows code execution (CVE-2021-44142) For more details about the security issue(s), including the impact, a CVSS score, acknowledgments, and other related information, refer to the CVE page(s) listed in the References section. Bug Fix(es): * Fix username map script regression introduced with CVE-2020-25717 (BZ#2046173)", "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], "nist": [ "SI-2", "RA-5" @@ -175,7 +195,7 @@ ] } ], - "sha256": "e5b09e975e6a89f0cd9e80dae51fecb03ed9d6d76d0f4c4ca2dcefe0de000ca6" + "sha256": "a530cc34f8ee12cba32136ba638825fd25a8bbd9ecb4d24f76c935372b799748" } ] } \ No newline at end of file diff --git a/test/sample_data/prisma/my-fake-host-5.somewhere.cloud.json b/test/sample_data/prisma/my-fake-host-5.somewhere.cloud.json index e7d4ed8f6..e833ff647 100644 --- a/test/sample_data/prisma/my-fake-host-5.somewhere.cloud.json +++ b/test/sample_data/prisma/my-fake-host-5.somewhere.cloud.json @@ -1,10 +1,10 @@ { "platform": { "name": "Heimdall Tools", - "release": "2.6.16", + "release": "2.6.29", "target_id": "my-fake-host-5.somewhere.cloud" }, - "version": "2.6.16", + "version": "2.6.29", "statistics": { "duration": null }, @@ -27,6 +27,10 @@ { "desc": "(CIS_Linux_2.0.0 - 5.2.2) Ensure permissions on SSH private host key files are configured", "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], "nist": [ "SA-11", "RA-5" @@ -57,6 +61,10 @@ { "desc": "DOCUMENTATION: A vulnerability was found in archive/zip of the Go standard library. Applications written in Go where Reader.Open (the API implementing io/fs.FS introduced in Go 1.16) can panic when parsing a crafted ZIP archive containing completely invalid names or an empty filename argument. STATEMENT: * In OpenShift Container Platform multiple components are written in Go and use archive/zip from the standard library. However, all such components are short lived client side tools, not long lived server side executables. As the maximum impact of this vulnerability is a denial of service in client utilities, this vulnerability is rated Low for OpenShift Container Plaform. * Because Service Telemetry Framework1.2 will be retiring soon and the flaw\\'s impact is lower, no update will be provided at this time for STF1.2\\'s sg-core-container. * Because Red Hat Ceph Storage only uses Go\\'s archive/zip for the Grafana CLI and thus is not directly exploitable, the vulnerability has been rated low for Red Hat Ceph Storage.", "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], "nist": [ "SI-2", "RA-5" @@ -87,6 +95,10 @@ { "desc": "Red Hat\\'s versions of the associated software have been determined to NOT be affected by CVE-2021-38297.", "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], "nist": [ "SI-2", "RA-5" @@ -115,7 +127,7 @@ ] } ], - "sha256": "b73ebe7bc296a684e71c96180e2268f9ec823d6dbf3d822a9f8429b5c032cbd5" + "sha256": "ca60c92feee887c85a27011dc5f70ee3233ce2356e7a6323a1ee6d56d680786a" } ] } \ No newline at end of file diff --git a/test/sample_data/prisma/my-fake-host-6.somewhere.cloud.json b/test/sample_data/prisma/my-fake-host-6.somewhere.cloud.json index d1f014921..ea67987d1 100644 --- a/test/sample_data/prisma/my-fake-host-6.somewhere.cloud.json +++ b/test/sample_data/prisma/my-fake-host-6.somewhere.cloud.json @@ -1,10 +1,10 @@ { "platform": { "name": "Heimdall Tools", - "release": "2.6.16", + "release": "2.6.29", "target_id": "my-fake-host-6.somewhere.cloud" }, - "version": "2.6.16", + "version": "2.6.29", "statistics": { "duration": null }, @@ -27,6 +27,10 @@ { "desc": "(CIS_Linux_2.0.0 - 1.4.3) Ensure authentication required for single user mode", "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], "nist": [ "SA-11", "RA-5" @@ -57,6 +61,10 @@ { "desc": "(CIS_Linux_2.0.0 - 6.2.8) Ensure users' home directories permissions are 750 or more restrictive", "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], "nist": [ "SA-11", "RA-5" @@ -87,6 +95,10 @@ { "desc": "Google Chrome before 43.0.2357.65 relies on libvpx code that was not built with an appropriate --size-limit value, which allows remote attackers to trigger a negative value for a size field, and consequently cause a denial of service or possibly have unspecified other impact, via a crafted frame size in VP9 video data.", "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], "nist": [ "SI-2", "RA-5" @@ -117,6 +129,10 @@ { "desc": "A vulnerability in the Android media framework (libvpx) related to odd frame width. Product: Android. Versions: 7.0, 7.1.1, 7.1.2, 8.0, 8.1. Android ID: A-64710201.", "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], "nist": [ "SI-2", "RA-5" @@ -147,6 +163,10 @@ { "desc": "net/http in Go before 1.16.12 and 1.17.x before 1.17.5 allows uncontrolled memory consumption in the header canonicalization cache via HTTP/2 requests.", "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], "nist": [ "SI-2", "RA-5" @@ -175,7 +195,7 @@ ] } ], - "sha256": "b8c9961c0efbd62c46338e9c8138be3480bb76da7ddaed5a4797f96e27de882a" + "sha256": "8a8aec34e9b73286220fc8058f2f89b5c73cf87103f2b2d277ad28f83d95d1d8" } ] } \ No newline at end of file diff --git a/test/sample_data/prisma/my-fake-host-7.somewhere.cloud.json b/test/sample_data/prisma/my-fake-host-7.somewhere.cloud.json index 4b6f99cdd..d540656d1 100644 --- a/test/sample_data/prisma/my-fake-host-7.somewhere.cloud.json +++ b/test/sample_data/prisma/my-fake-host-7.somewhere.cloud.json @@ -1,10 +1,10 @@ { "platform": { "name": "Heimdall Tools", - "release": "2.6.16", + "release": "2.6.29", "target_id": "my-fake-host-7.somewhere.cloud" }, - "version": "2.6.16", + "version": "2.6.29", "statistics": { "duration": null }, @@ -27,6 +27,10 @@ { "desc": "(CIS_Linux_2.0.0 - 5.1.8) Ensure at/cron is restricted to authorized users", "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], "nist": [ "SA-11", "RA-5" @@ -57,6 +61,10 @@ { "desc": "Red Hat OpenShift Container Platform is Red Hat\\'s cloud computing Kubernetes application platform solution designed for on-premise or private cloud deployments. This advisory contains the RPM packages for Red Hat OpenShift Container Platform 4.8.9. See the following advisory for the container images for this release: http://somewhere.cloud/errata/RHBA-2021:3247 Security Fix(es): * golang: net/http: panic in ReadRequest and ReadResponse when reading a very large header (CVE-2021-31525) * golang: net: lookup functions may return invalid host names (CVE-2021-33195) * golang: net/http/httputil: ReverseProxy forwards connection headers if first one is empty (CVE-2021-33197) * golang: math/big.Rat: may cause a panic or an unrecoverable fatal error if passed inputs with very large exponents (CVE-2021-33198) * golang: crypto/tls: certificate of wrong type is causing TLS client to panic (CVE-2021-34558) For more details about the security issue(s), including the impact, a CVSS score, acknowledgments, and other related information, refer to the CVE page(s) listed in the References section. All OpenShift Container Platform 4.8 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift Console or the CLI oc command. Instructions for upgrading a cluster are avail", "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], "nist": [ "SI-2", "RA-5" @@ -86,6 +94,10 @@ { "desc": "Red Hat\\'s versions of the associated software have been determined to NOT be affected by CVE-2021-38297.", "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], "nist": [ "SI-2", "RA-5" @@ -116,6 +128,10 @@ { "desc": "net/http in Go before 1.16.12 and 1.17.x before 1.17.5 allows uncontrolled memory consumption in the header canonicalization cache via HTTP/2 requests.", "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], "nist": [ "SI-2", "RA-5" @@ -146,6 +162,10 @@ { "desc": "The ecryptfs_privileged_open function in fs/ecryptfs/kthread.c in the Linux kernel before 4.6.3 allows local users to gain privileges or cause a denial of service (stack memory consumption) via vectors involving crafted mmap calls for /proc pathnames, leading to recursive pagefault handling.", "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], "nist": [ "SI-2", "RA-5" @@ -174,7 +194,7 @@ ] } ], - "sha256": "2146c551bc1da34e3fa5ef752ef1024201dc95823d12a89f2dd6c9fbb7ce3c96" + "sha256": "7364bc55ee685652f941b6dc0e57c0fc10718f5d4f21b4a53171d2351e62f86b" } ] } \ No newline at end of file diff --git a/test/sample_data/prisma/my-fake-host-8.somewhere.cloud.json b/test/sample_data/prisma/my-fake-host-8.somewhere.cloud.json index 6e80a25be..5b091f094 100644 --- a/test/sample_data/prisma/my-fake-host-8.somewhere.cloud.json +++ b/test/sample_data/prisma/my-fake-host-8.somewhere.cloud.json @@ -1,10 +1,10 @@ { "platform": { "name": "Heimdall Tools", - "release": "2.6.16", + "release": "2.6.29", "target_id": "my-fake-host-8.somewhere.cloud" }, - "version": "2.6.16", + "version": "2.6.29", "statistics": { "duration": null }, @@ -27,6 +27,10 @@ { "desc": "(CIS_Linux_2.0.0 - 1.4.1) Ensure permissions on bootloader config are configured", "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], "nist": [ "SA-11", "RA-5" @@ -57,6 +61,10 @@ { "desc": "(CIS_Linux_2.0.0 - 1.4.3) Ensure authentication required for single user mode", "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], "nist": [ "SA-11", "RA-5" @@ -87,6 +95,10 @@ { "desc": "DOCUMENTATION: A flaw was found Go\\'s net/http package. Servers using ReverseProxy from net/http in the Go standard library are vulnerable to a data race that results in a denial of service. The highest threat from this vulnerability is to system availability. STATEMENT: OpenShift Container Platform (OCP) components are primarily written in Go, meaning that any component using the net/http package includes the vulnerable code. OCP server endpoints using ReverseProxy are protected by authentication, reducing the severity of this vulnerability to Low for OCP. Similar to OCP, OpenShift ServiceMesh (OSSM), RedHat OpenShift Jaeger (RHOSJ) and OpenShift Virtualization are also primarily written in Go and are protected via authentication, reducing the severity of this vulnerability to Low. Red Hat Gluster Storage 3 and Red Hat Openshift Container Storage 4 components are built with the affected version of Go, however the vulnerable functionality is currently not used by these products and hence this issue has been rated as having a security impact of Low. Red Hat Ceph Storage 3 and 4 components are built with the affected version of Go, however the vulnerable functionality is currently not used by these products and hence this issue has been rated as having a security impact of Low.", "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], "nist": [ "SI-2", "RA-5" @@ -116,6 +128,10 @@ { "desc": "In archive/zip in Go before 1.16.8 and 1.17.x before 1.17.1, a crafted archive header (falsely designating that many files are present) can cause a NewReader or OpenReader panic. NOTE: this issue exists because of an incomplete fix for CVE-2021-33196.", "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], "nist": [ "SI-2", "RA-5" @@ -146,6 +162,10 @@ { "desc": "Red Hat\\'s versions of the associated software have been determined to NOT be affected by CVE-2021-38297.", "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], "nist": [ "SI-2", "RA-5" @@ -174,7 +194,7 @@ ] } ], - "sha256": "2739537572d4ba20db734ada02290d4be590b8b76131486c6455f600cf4eb79c" + "sha256": "6609705adba79a6b777a2786aad8d10d5adf32e0182baf5a1dcbc4b47767fdcf" } ] } \ No newline at end of file diff --git a/test/sample_data/prisma/my-fake-host-9.somewhere.cloud.json b/test/sample_data/prisma/my-fake-host-9.somewhere.cloud.json index c0e9980cb..91f1e6ba3 100644 --- a/test/sample_data/prisma/my-fake-host-9.somewhere.cloud.json +++ b/test/sample_data/prisma/my-fake-host-9.somewhere.cloud.json @@ -1,10 +1,10 @@ { "platform": { "name": "Heimdall Tools", - "release": "2.6.16", + "release": "2.6.29", "target_id": "my-fake-host-9.somewhere.cloud" }, - "version": "2.6.16", + "version": "2.6.29", "statistics": { "duration": null }, @@ -27,6 +27,10 @@ { "desc": "(CIS_Linux_2.0.0 - 1.4.3) Ensure authentication required for single user mode", "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], "nist": [ "SA-11", "RA-5" @@ -57,6 +61,10 @@ { "desc": "(CIS_Linux_2.0.0 - 6.2.8) Ensure users' home directories permissions are 750 or more restrictive", "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], "nist": [ "SA-11", "RA-5" @@ -87,6 +95,10 @@ { "desc": "An issue was discovered in the merge_strings function in merge.c in the Binary File Descriptor (BFD) library (aka libbfd), as distributed in GNU Binutils 2.31. There is a NULL pointer dereference in _bfd_add_merge_section when attempting to merge sections with large alignments. A specially crafted ELF allows remote attackers to cause a denial of service, as demonstrated by ld.", "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], "nist": [ "SI-2", "RA-5" @@ -117,6 +129,10 @@ { "desc": "The demangle_template function in cplus-dem.c in GNU libiberty, as distributed in GNU Binutils 2.31.1, contains an integer overflow vulnerability (for \\\"Create an array for saving the template argument values\\\") that can trigger a heap-based buffer overflow, as demonstrated by nm.", "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], "nist": [ "SI-2", "RA-5" @@ -147,6 +163,10 @@ { "desc": "Samba is an open-source implementation of the Server Message Block (SMB) protocol and the related Common Internet File System (CIFS) protocol, which allow PC-compatible machines to share files, printers, and various information. Security Fix(es): * samba: Out-of-bounds heap read/write vulnerability in VFS module vfs_fruit allows code execution (CVE-2021-44142) For more details about the security issue(s), including the impact, a CVSS score, acknowledgments, and other related information, refer to the CVE page(s) listed in the References section. Bug Fix(es): * Fix username map script regression introduced with CVE-2020-25717 (BZ#2046173)", "tags": { + "cci": [ + "CCI-002605", + "CCI-001643" + ], "nist": [ "SI-2", "RA-5" @@ -175,7 +195,7 @@ ] } ], - "sha256": "9c59d82334b393cbb1f63f04216d301feff285aa0a92ba79b937a1ad829a43d3" + "sha256": "0d15ab36de05701690c383d025a70366130b4ebf494356b505b24443c1e42acb" } ] } \ No newline at end of file diff --git a/test/sample_data/sarif/sarif-hdf.json b/test/sample_data/sarif/sarif-hdf.json index dcd6153a6..6e0aa9e73 100644 --- a/test/sample_data/sarif/sarif-hdf.json +++ b/test/sample_data/sarif/sarif-hdf.json @@ -1,10 +1,10 @@ { "platform": { "name": "Heimdall Tools", - "release": "2.6.28", + "release": "2.6.29", "target_id": "Static Analysis Results Interchange Format" }, - "version": "2.6.28", + "version": "2.6.29", "statistics": {}, "profiles": [ { @@ -18,6 +18,10 @@ "controls": [ { "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], "nist": [ "SI-10" ], @@ -51,6 +55,10 @@ }, { "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], "nist": [ "SI-10" ], @@ -93,6 +101,10 @@ }, { "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], "nist": [ "SI-10" ], @@ -125,6 +137,10 @@ }, { "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], "nist": [ "SI-10" ], @@ -187,6 +203,10 @@ }, { "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], "nist": [ "AC-3" ], @@ -229,6 +249,10 @@ }, { "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], "nist": [ "SI-10" ], @@ -286,6 +310,10 @@ }, { "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], "nist": [ "SI-10" ], @@ -358,6 +386,10 @@ }, { "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], "nist": [ "SI-10" ], @@ -390,6 +422,10 @@ }, { "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], "nist": [ "SI-10" ], @@ -443,6 +479,10 @@ }, { "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], "nist": [ "SI-10" ], @@ -475,6 +515,10 @@ }, { "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], "nist": [ "SI-10" ], @@ -507,6 +551,10 @@ }, { "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], "nist": [ "SI-10" ], @@ -539,6 +587,10 @@ }, { "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], "nist": [ "SI-10" ], @@ -581,6 +633,10 @@ }, { "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], "nist": [ "SI-10" ], @@ -614,6 +670,10 @@ }, { "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], "nist": [ "SI-10" ], @@ -642,6 +702,10 @@ }, { "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], "nist": [ "SI-10" ], @@ -690,6 +754,10 @@ }, { "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], "nist": [ "SI-10" ], @@ -742,6 +810,10 @@ }, { "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], "nist": [ "SC-4" ], @@ -774,6 +846,10 @@ }, { "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], "nist": [ "SI-10" ], @@ -806,6 +882,10 @@ }, { "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], "nist": [ "SI-10" ], @@ -838,6 +918,10 @@ }, { "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], "nist": [ "SI-10" ], @@ -869,7 +953,7 @@ ] } ], - "sha256": "ddfdf05863871923525c66cf122140d756ead550f97bf765d6d8c7b0a9edd574" + "sha256": "c5ef8179c102a4ffdf896f4b07be4b8ec34b0c6f83037aa9372d390ab11be340" } ], "passthrough": { diff --git a/test/sample_data/scoutsuite/scoutsuite-hdf.json b/test/sample_data/scoutsuite/scoutsuite-hdf.json index c97a7682f..dd4bddc60 100644 --- a/test/sample_data/scoutsuite/scoutsuite-hdf.json +++ b/test/sample_data/scoutsuite/scoutsuite-hdf.json @@ -1,10 +1,10 @@ { "platform": { "name": "Heimdall Tools", - "release": "2.6.28", + "release": "2.6.29", "target_id": "default ruleset:Amazon Web Services:916481805664" }, - "version": "2.6.28", + "version": "2.6.29", "statistics": {}, "profiles": [ { @@ -91,7 +91,8 @@ "tags": { "nist": [ "AU-6" - ] + ], + "cci": [] }, "refs": [ { @@ -140,6 +141,9 @@ "nist": [ "AU-12", "SI-4(2)" + ], + "cci": [ + "CCI-000172" ] }, "refs": [ @@ -188,6 +192,9 @@ "tags": { "nist": [ "AU-12" + ], + "cci": [ + "CCI-000172" ] }, "refs": [ @@ -236,7 +243,8 @@ "tags": { "nist": [ "AU-6" - ] + ], + "cci": [] }, "refs": [ { @@ -284,6 +292,9 @@ "tags": { "nist": [ "AU-12" + ], + "cci": [ + "CCI-000172" ] }, "refs": [ @@ -332,7 +343,8 @@ "tags": { "nist": [ "AU-6" - ] + ], + "cci": [] }, "refs": [ { @@ -380,6 +392,9 @@ "tags": { "nist": [ "AU-12" + ], + "cci": [ + "CCI-000172" ] }, "refs": [ @@ -428,6 +443,9 @@ "tags": { "nist": [ "AU-12" + ], + "cci": [ + "CCI-000172" ] }, "refs": [ @@ -473,7 +491,7 @@ ] } ], - "sha256": "48246c363b3e5dcd36b898120841093ba2e5987c2c33913805261a05c91b595a" + "sha256": "bf3fe3a8edcf7a2118c9eaffcc8bee5110454d8db2df851d3ba673d8f6e65e00" } ], "passthrough": { diff --git a/test/sample_data/xccdf_results/xccdf-openscap-rhel7-hdf.json b/test/sample_data/xccdf_results/xccdf-openscap-rhel7-hdf.json index 9c0817e42..8a3aba8b0 100644 --- a/test/sample_data/xccdf_results/xccdf-openscap-rhel7-hdf.json +++ b/test/sample_data/xccdf_results/xccdf-openscap-rhel7-hdf.json @@ -1,34046 +1,41599 @@ { - "platform": { - "name": "Heimdall Tools", - "release": "2.6.17", - "target_id": "cpe:/o:redhat:enterprise_linux:7" - }, - "version": "2.6.17", - "statistics": { - "duration": 0 - }, - "profiles": [ + "platform": { + "name": "Heimdall Tools", + "release": "2.6.28", + "target_id": "cpe:/o:redhat:enterprise_linux:7" + }, + "version": "2.6.28", + "statistics": {}, + "profiles": [ + { + "name": "xccdf_mil.disa.stig_benchmark_RHEL_7_STIG", + "version": "SCAP_1.2", + "title": "Red Hat Enterprise Linux 7 Security Technical Implementation Guide", + "maintainer": "DISA", + "summary": "This Security Technical Implementation Guide is published as a tool to improve the security of Department of Defense (DoD) information systems. The requirements are derived from the National Institute of Standards and Technology (NIST) 800-53 and related documents. Comments or proposed revisions to this document should be sent via email to the following address: disa.stig_spt@mail.mil.", + "description": "{\n \"description\": {\n \"text\": \"This Security Technical Implementation Guide is published as a tool to improve the security of Department of Defense (DoD) information systems. The requirements are derived from the National Institute of Standards and Technology (NIST) 800-53 and related documents. Comments or proposed revisions to this document should be sent via email to the following address: disa.stig_spt@mail.mil.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"front-matter\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"metadata\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"dc:creator\": {\n \"text\": \"DISA\",\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\"\n },\n \"dc:publisher\": {\n \"text\": \"DISA\",\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\"\n },\n \"dc:contributor\": {\n \"text\": \"DISA\",\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\"\n },\n \"dc:source\": {\n \"text\": \"STIG.DOD.MIL\",\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\"\n }\n },\n \"model\": {\n \"system\": \"urn:xccdf:scoring:default\"\n },\n \"plain-text\": [\n {\n \"text\": \"Release: 3.5 Benchmark Date: 27 Oct 2021\",\n \"id\": \"release-info\"\n },\n {\n \"text\": \"3.2.2.36079\",\n \"id\": \"generator\"\n },\n {\n \"text\": \"1.10.0\",\n \"id\": \"conventionsVersion\"\n }\n ],\n \"rear-matter\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"href\": \"https://cyber.mil\",\n \"dc:publisher\": \"DISA\",\n \"dc:source\": \"STIG.DOD.MIL\"\n },\n \"status\": {\n \"text\": \"accepted\",\n \"date\": \"2021-08-18\"\n },\n \"version\": {\n \"text\": 3.005,\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"xml:lang\": \"en\",\n \"xmlns\": \"http://checklists.nist.gov/xccdf/1.2\",\n \"TestResult.benchmark\": {\n \"href\": \"/home/general_george/Desktop/U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark.xml\",\n \"id\": \"xccdf_mil.disa.stig_benchmark_RHEL_7_STIG\"\n },\n \"TestResult.start-time\": \"2021-12-17T10:39:29\",\n \"TestResult.end-time\": \"2021-12-17T10:40:58\",\n \"TestResult.id\": \"xccdf_org.open-scap_testresult_xccdf_mil.disa.stig_profile_MAC-1_Sensitive\",\n \"TestResult.identity\": {\n \"text\": \"general_george\",\n \"authenticated\": \"false\",\n \"privileged\": \"false\"\n },\n \"TestResult.platform.idref\": \"cpe:/o:redhat:enterprise_linux:7\",\n \"TestResult.profile.idref\": \"xccdf_mil.disa.stig_profile_MAC-1_Sensitive\",\n \"TestResult.score\": {\n \"text\": 23.888889,\n \"system\": \"urn:xccdf:scoring:default\",\n \"maximum\": \"100.000000\"\n },\n \"TestResult.set-value\": [\n {\n \"text\": 5,\n \"idref\": \"xccdf_mil.disa.stig_value_var_password_pam_unix_remember\"\n },\n {\n \"text\": -1,\n \"idref\": \"xccdf_mil.disa.stig_value_var_password_pam_ucredit\"\n },\n {\n \"text\": -1,\n \"idref\": \"xccdf_mil.disa.stig_value_var_password_pam_ocredit\"\n },\n {\n \"text\": 15,\n \"idref\": \"xccdf_mil.disa.stig_value_var_password_pam_minlen\"\n },\n {\n \"text\": 4,\n \"idref\": \"xccdf_mil.disa.stig_value_var_password_pam_minclass\"\n },\n {\n \"text\": 3,\n \"idref\": \"xccdf_mil.disa.stig_value_var_password_pam_maxrepeat\"\n },\n {\n \"text\": 4,\n \"idref\": \"xccdf_mil.disa.stig_value_var_password_pam_maxclassrepeat\"\n },\n {\n \"text\": -1,\n \"idref\": \"xccdf_mil.disa.stig_value_var_password_pam_lcredit\"\n },\n {\n \"text\": 8,\n \"idref\": \"xccdf_mil.disa.stig_value_var_password_pam_difok\"\n },\n {\n \"text\": -1,\n \"idref\": \"xccdf_mil.disa.stig_value_var_password_pam_dcredit\"\n },\n {\n \"text\": \"root\",\n \"idref\": \"xccdf_mil.disa.stig_value_var_auditd_action_mail_acct\"\n },\n {\n \"text\": 77,\n \"idref\": \"xccdf_mil.disa.stig_value_var_accounts_user_umask\"\n },\n {\n \"text\": 1,\n \"idref\": \"xccdf_mil.disa.stig_value_var_accounts_minimum_age_login_defs\"\n },\n {\n \"text\": 60,\n \"idref\": \"xccdf_mil.disa.stig_value_var_accounts_maximum_age_login_defs\"\n },\n {\n \"text\": 10,\n \"idref\": \"xccdf_mil.disa.stig_value_var_accounts_max_concurrent_login_sessions\"\n },\n {\n \"text\": 4,\n \"idref\": \"xccdf_mil.disa.stig_value_var_accounts_fail_delay\"\n },\n {\n \"text\": 0,\n \"idref\": \"xccdf_mil.disa.stig_value_var_account_disable_post_pw_expiration\"\n },\n {\n \"text\": 0,\n \"idref\": \"xccdf_mil.disa.stig_value_sysctl_net_ipv6_conf_all_accept_source_route_value\"\n },\n {\n \"text\": 1,\n \"idref\": \"xccdf_mil.disa.stig_value_sysctl_net_ipv4_icmp_echo_ignore_broadcasts_value\"\n },\n {\n \"text\": 0,\n \"idref\": \"xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_default_accept_source_route_value\"\n },\n {\n \"text\": 0,\n \"idref\": \"xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_default_accept_redirects_value\"\n },\n {\n \"text\": 0,\n \"idref\": \"xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_all_accept_source_route_value\"\n },\n {\n \"text\": 0,\n \"idref\": \"xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_all_accept_redirects_value\"\n },\n {\n \"text\": 600,\n \"idref\": \"xccdf_mil.disa.stig_value_sshd_idle_timeout_value\"\n },\n {\n \"text\": 900,\n \"idref\": \"xccdf_mil.disa.stig_value_inactivity_timeout_value\"\n }\n ],\n \"TestResult.target\": \"localhost.localdomain\",\n \"TestResult.target-address\": [\n \"127.0.0.1\",\n \"192.168.158.31\",\n \"192.168.122.1\",\n \"0:0:0:0:0:0:0:1\",\n \"fe80:0:0:0:4f4f:8b1f:3f2f:2426\"\n ],\n \"TestResult.target-facts\": {\n \"fact\": [\n {\n \"text\": \"OpenSCAP\",\n \"name\": \"urn:xccdf:fact:scanner:name\",\n \"type\": \"string\"\n },\n {\n \"text\": \"1.2.17\",\n \"name\": \"urn:xccdf:fact:scanner:version\",\n \"type\": \"string\"\n },\n {\n \"text\": \"00:00:00:00:00:00\",\n \"name\": \"urn:xccdf:fact:ethernet:MAC\",\n \"type\": \"string\"\n },\n {\n \"text\": \"00:15:5D:0E:92:0D\",\n \"name\": \"urn:xccdf:fact:ethernet:MAC\",\n \"type\": \"string\"\n },\n {\n \"text\": \"52:54:00:8E:DA:2B\",\n \"name\": \"urn:xccdf:fact:ethernet:MAC\",\n \"type\": \"string\"\n },\n {\n \"text\": \"00:00:00:00:00:00\",\n \"name\": \"urn:xccdf:fact:ethernet:MAC\",\n \"type\": \"string\"\n },\n {\n \"text\": \"00:15:5D:0E:92:0D\",\n \"name\": \"urn:xccdf:fact:ethernet:MAC\",\n \"type\": \"string\"\n }\n ]\n },\n \"TestResult.test-system\": \"cpe:/a:redhat:openscap:1.2.17\",\n \"TestResult.title\": \"OSCAP Scan Result\",\n \"TestResult.version\": \"003.005\"\n}", + "license": "terms-of-use", + "copyright": "DISA", + "copyright_email": "disa.stig_spt@mail.mil", + "supports": [], + "attributes": [], + "groups": [], + "status": "loaded", + "controls": [ { - "name": "xccdf_mil.disa.stig_benchmark_RHEL_7_STIG", - "version": "SCAP_1.2", - "title": "Red Hat Enterprise Linux 7 Security Technical Implementation Guide", - "maintainer": "DISA", - "summary": "This Security Technical Implementation Guide is published as a tool to improve the security of Department of Defense (DoD) information systems. The requirements are derived from the National Institute of Standards and Technology (NIST) 800-53 and related documents. Comments or proposed revisions to this document should be sent via email to the following address: disa.stig_spt@mail.mil.", - "description": "{\n \"description\": {\n \"text\": \"This Security Technical Implementation Guide is published as a tool to improve the security of Department of Defense (DoD) information systems. The requirements are derived from the National Institute of Standards and Technology (NIST) 800-53 and related documents. Comments or proposed revisions to this document should be sent via email to the following address: disa.stig_spt@mail.mil.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"front-matter\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"metadata\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"dc:creator\": {\n \"text\": \"DISA\",\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\"\n },\n \"dc:publisher\": {\n \"text\": \"DISA\",\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\"\n },\n \"dc:contributor\": {\n \"text\": \"DISA\",\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\"\n },\n \"dc:source\": {\n \"text\": \"STIG.DOD.MIL\",\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\"\n }\n },\n \"model\": {\n \"system\": \"urn:xccdf:scoring:default\"\n },\n \"plain-text\": [\n {\n \"text\": \"Release: 3.5 Benchmark Date: 27 Oct 2021\",\n \"id\": \"release-info\"\n },\n {\n \"text\": \"3.2.2.36079\",\n \"id\": \"generator\"\n },\n {\n \"text\": \"1.10.0\",\n \"id\": \"conventionsVersion\"\n }\n ],\n \"rear-matter\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"href\": \"https://cyber.mil\",\n \"dc:publisher\": \"DISA\",\n \"dc:source\": \"STIG.DOD.MIL\"\n },\n \"status\": {\n \"text\": \"accepted\",\n \"date\": \"2021-08-18\"\n },\n \"version\": {\n \"text\": 3.005,\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"xml:lang\": \"en\",\n \"xmlns\": \"http://checklists.nist.gov/xccdf/1.2\",\n \"TestResult.benchmark\": {\n \"href\": \"/home/general_george/Desktop/U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark.xml\",\n \"id\": \"xccdf_mil.disa.stig_benchmark_RHEL_7_STIG\"\n },\n \"TestResult.start-time\": \"2021-12-17T10:39:29\",\n \"TestResult.end-time\": \"2021-12-17T10:40:58\",\n \"TestResult.id\": \"xccdf_org.open-scap_testresult_xccdf_mil.disa.stig_profile_MAC-1_Sensitive\",\n \"TestResult.identity\": {\n \"text\": \"general_george\",\n \"authenticated\": \"false\",\n \"privileged\": \"false\"\n },\n \"TestResult.platform.idref\": \"cpe:/o:redhat:enterprise_linux:7\",\n \"TestResult.profile.idref\": \"xccdf_mil.disa.stig_profile_MAC-1_Sensitive\",\n \"TestResult.score\": {\n \"text\": 23.888889,\n \"system\": \"urn:xccdf:scoring:default\",\n \"maximum\": \"100.000000\"\n },\n \"TestResult.set-value\": [\n {\n \"text\": 5,\n \"idref\": \"xccdf_mil.disa.stig_value_var_password_pam_unix_remember\"\n },\n {\n \"text\": -1,\n \"idref\": \"xccdf_mil.disa.stig_value_var_password_pam_ucredit\"\n },\n {\n \"text\": -1,\n \"idref\": \"xccdf_mil.disa.stig_value_var_password_pam_ocredit\"\n },\n {\n \"text\": 15,\n \"idref\": \"xccdf_mil.disa.stig_value_var_password_pam_minlen\"\n },\n {\n \"text\": 4,\n \"idref\": \"xccdf_mil.disa.stig_value_var_password_pam_minclass\"\n },\n {\n \"text\": 3,\n \"idref\": \"xccdf_mil.disa.stig_value_var_password_pam_maxrepeat\"\n },\n {\n \"text\": 4,\n \"idref\": \"xccdf_mil.disa.stig_value_var_password_pam_maxclassrepeat\"\n },\n {\n \"text\": -1,\n \"idref\": \"xccdf_mil.disa.stig_value_var_password_pam_lcredit\"\n },\n {\n \"text\": 8,\n \"idref\": \"xccdf_mil.disa.stig_value_var_password_pam_difok\"\n },\n {\n \"text\": -1,\n \"idref\": \"xccdf_mil.disa.stig_value_var_password_pam_dcredit\"\n },\n {\n \"text\": \"root\",\n \"idref\": \"xccdf_mil.disa.stig_value_var_auditd_action_mail_acct\"\n },\n {\n \"text\": 77,\n \"idref\": \"xccdf_mil.disa.stig_value_var_accounts_user_umask\"\n },\n {\n \"text\": 1,\n \"idref\": \"xccdf_mil.disa.stig_value_var_accounts_minimum_age_login_defs\"\n },\n {\n \"text\": 60,\n \"idref\": \"xccdf_mil.disa.stig_value_var_accounts_maximum_age_login_defs\"\n },\n {\n \"text\": 10,\n \"idref\": \"xccdf_mil.disa.stig_value_var_accounts_max_concurrent_login_sessions\"\n },\n {\n \"text\": 4,\n \"idref\": \"xccdf_mil.disa.stig_value_var_accounts_fail_delay\"\n },\n {\n \"text\": 0,\n \"idref\": \"xccdf_mil.disa.stig_value_var_account_disable_post_pw_expiration\"\n },\n {\n \"text\": 0,\n \"idref\": \"xccdf_mil.disa.stig_value_sysctl_net_ipv6_conf_all_accept_source_route_value\"\n },\n {\n \"text\": 1,\n \"idref\": \"xccdf_mil.disa.stig_value_sysctl_net_ipv4_icmp_echo_ignore_broadcasts_value\"\n },\n {\n \"text\": 0,\n \"idref\": \"xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_default_accept_source_route_value\"\n },\n {\n \"text\": 0,\n \"idref\": \"xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_default_accept_redirects_value\"\n },\n {\n \"text\": 0,\n \"idref\": \"xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_all_accept_source_route_value\"\n },\n {\n \"text\": 0,\n \"idref\": \"xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_all_accept_redirects_value\"\n },\n {\n \"text\": 600,\n \"idref\": \"xccdf_mil.disa.stig_value_sshd_idle_timeout_value\"\n },\n {\n \"text\": 900,\n \"idref\": \"xccdf_mil.disa.stig_value_inactivity_timeout_value\"\n }\n ],\n \"TestResult.target\": \"localhost.localdomain\",\n \"TestResult.target-address\": [\n \"127.0.0.1\",\n \"192.168.158.31\",\n \"192.168.122.1\",\n \"0:0:0:0:0:0:0:1\",\n \"fe80:0:0:0:4f4f:8b1f:3f2f:2426\"\n ],\n \"TestResult.target-facts\": {\n \"fact\": [\n {\n \"text\": \"OpenSCAP\",\n \"name\": \"urn:xccdf:fact:scanner:name\",\n \"type\": \"string\"\n },\n {\n \"text\": \"1.2.17\",\n \"name\": \"urn:xccdf:fact:scanner:version\",\n \"type\": \"string\"\n },\n {\n \"text\": \"00:00:00:00:00:00\",\n \"name\": \"urn:xccdf:fact:ethernet:MAC\",\n \"type\": \"string\"\n },\n {\n \"text\": \"00:15:5D:0E:92:0D\",\n \"name\": \"urn:xccdf:fact:ethernet:MAC\",\n \"type\": \"string\"\n },\n {\n \"text\": \"52:54:00:8E:DA:2B\",\n \"name\": \"urn:xccdf:fact:ethernet:MAC\",\n \"type\": \"string\"\n },\n {\n \"text\": \"00:00:00:00:00:00\",\n \"name\": \"urn:xccdf:fact:ethernet:MAC\",\n \"type\": \"string\"\n },\n {\n \"text\": \"00:15:5D:0E:92:0D\",\n \"name\": \"urn:xccdf:fact:ethernet:MAC\",\n \"type\": \"string\"\n }\n ]\n },\n \"TestResult.test-system\": \"cpe:/a:redhat:openscap:1.2.17\",\n \"TestResult.title\": \"OSCAP Scan Result\",\n \"TestResult.version\": \"003.005\"\n}", - "license": "terms-of-use", - "copyright": "DISA", - "copyright_email": "disa.stig_spt@mail.mil", - "supports": [], - "attributes": [], - "depends": [], - "groups": [], - "status": "loaded", - "controls": [ - { - "id": "V-204393", - "title": "The Red Hat Enterprise Linux operating system must display the Standard Mandatory DoD Notice and Consent Banner before granting local or remote access to the system via a graphical user logon.", - "desc": "Display of a standardized and approved use notification before granting access to the operating system ensures privacy and security notification verbiage used is consistent with applicable federal laws, Executive Orders, directives, policies, regulations, standards, and guidance.\n\nSystem use notifications are required only for access via logon interfaces with human users and are not required when such human interfaces do not exist.\n\nThe banner must be formatted in accordance with applicable DoD policy. Use the following verbiage for operating systems that can accommodate banners of 1300 characters:\n\n\"You are accessing a U.S. Government (USG) Information System (IS) that is provided for USG-authorized use only.\n\nBy using this IS (which includes any device attached to this IS), you consent to the following conditions:\n\n-The USG routinely intercepts and monitors communications on this IS for purposes including, but not limited to, penetration testing, COMSEC monitoring, network operations and defense, personnel misconduct (PM), law enforcement (LE), and counterintelligence (CI) investigations.\n\n-At any time, the USG may inspect and seize data stored on this IS.\n\n-Communications using, or data stored on, this IS are not private, are subject to routine monitoring, interception, and search, and may be disclosed or used for any USG-authorized purpose.\n\n-This IS includes security measures (e.g., authentication and access controls) to protect USG interests--not for your personal benefit or privacy.\n\n-Notwithstanding the above, using this IS does not constitute consent to PM, LE or CI investigative searching or monitoring of the content of privileged communications, or work product, related to personal representation or services by attorneys, psychotherapists, or clergy, and their assistants. Such communications and work product are private and confidential. See User Agreement for details.\"\n\n\nSatisfies: SRG-OS-000023-GPOS-00006, SRG-OS-000024-GPOS-00007, SRG-OS-000228-GPOS-00088", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:922", - "label": "check" - }, - { - "data": "Configure the operating system to display the Standard Mandatory DoD Notice and Consent Banner before granting access to the system.\n\nNote: If the system does not have GNOME installed, this requirement is Not Applicable.\n\nCreate a database to contain the system-wide graphical user logon settings (if it does not already exist) with the following command:\n\n# touch /etc/dconf/db/local.d/01-banner-message\n\nAdd the following line to the [org/gnome/login-screen] section of the \"/etc/dconf/db/local.d/01-banner-message\":\n\n[org/gnome/login-screen]\nbanner-message-enable=true\n\nUpdate the system databases:\n\n# dconf update\n\nUsers must log out and back in again before the system-wide settings take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000048" - ], - "nist": [ - "AC-8 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Display of a standardized and approved use notification before granting access to the operating system ensures privacy and security notification verbiage used is consistent with applicable federal laws, Executive Orders, directives, policies, regulations, standards, and guidance.\\n\\nSystem use notifications are required only for access via logon interfaces with human users and are not required when such human interfaces do not exist.\\n\\nThe banner must be formatted in accordance with applicable DoD policy. Use the following verbiage for operating systems that can accommodate banners of 1300 characters:\\n\\n\\\"You are accessing a U.S. Government (USG) Information System (IS) that is provided for USG-authorized use only.\\n\\nBy using this IS (which includes any device attached to this IS), you consent to the following conditions:\\n\\n-The USG routinely intercepts and monitors communications on this IS for purposes including, but not limited to, penetration testing, COMSEC monitoring, network operations and defense, personnel misconduct (PM), law enforcement (LE), and counterintelligence (CI) investigations.\\n\\n-At any time, the USG may inspect and seize data stored on this IS.\\n\\n-Communications using, or data stored on, this IS are not private, are subject to routine monitoring, interception, and search, and may be disclosed or used for any USG-authorized purpose.\\n\\n-This IS includes security measures (e.g., authentication and access controls) to protect USG interests--not for your personal benefit or privacy.\\n\\n-Notwithstanding the above, using this IS does not constitute consent to PM, LE or CI investigative searching or monitoring of the content of privileged communications, or work product, related to personal representation or services by attorneys, psychotherapists, or clergy, and their assistants. Such communications and work product are private and confidential. See User Agreement for details.\\\"\\n\\n\\nSatisfies: SRG-OS-000023-GPOS-00006, SRG-OS-000024-GPOS-00007, SRG-OS-000228-GPOS-00088\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204393", - "group_title": "SRG-OS-000023-GPOS-00006", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204393r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:922", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4517r88372_fix", - "fixtext_fixref": "F-4517r88372_fix", - "ident": [ - { - "text": "CCE-26970-4", - "system": "http://cce.mitre.org" - }, - { - "text": "V-71859", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86483", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000048", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-010030", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204393r603261_rule", - "time": "2021-12-17T10:39:30", - "severity": "medium", - "version": "RHEL-07-010030", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-26970-4", - "system": "http://cce.mitre.org" - }, - { - "text": "V-71859", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86483", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000048", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:922", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:30", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204396", - "title": "The Red Hat Enterprise Linux operating system must enable a user session lock until that user re-establishes access using established identification and authentication procedures.", - "desc": "A session lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not want to log out because of the temporary nature of the absence.\n\nThe session lock is implemented at the point where session activity can be determined.\n\nRegardless of where the session lock is determined and implemented, once invoked, the session lock must remain in place until the user reauthenticates. No other activity aside from reauthentication must unlock the system.\n\nSatisfies: SRG-OS-000028-GPOS-00009, SRG-OS-000030-GPOS-00011", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:988", - "label": "check" - }, - { - "data": "Configure the operating system to enable a user's session lock until that user re-establishes access using established identification and authentication procedures.\n\nCreate a database to contain the system-wide screensaver settings (if it does not already exist) with the following example:\n\n# touch /etc/dconf/db/local.d/00-screensaver\n\nEdit the \"[org/gnome/desktop/screensaver]\" section of the database file and add or update the following lines:\n\n# Set this to true to lock the screen when the screensaver activates\nlock-enabled=true\n\nUpdate the system databases:\n\n# dconf update\n\nUsers must log out and back in again before the system-wide settings take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000056" - ], - "nist": [ - "AC-11 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"A session lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not want to log out because of the temporary nature of the absence.\\n\\nThe session lock is implemented at the point where session activity can be determined.\\n\\nRegardless of where the session lock is determined and implemented, once invoked, the session lock must remain in place until the user reauthenticates. No other activity aside from reauthentication must unlock the system.\\n\\nSatisfies: SRG-OS-000028-GPOS-00009, SRG-OS-000030-GPOS-00011\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204396", - "group_title": "SRG-OS-000028-GPOS-00009", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204396r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:988", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4520r88381_fix", - "fixtext_fixref": "F-4520r88381_fix", - "ident": [ - { - "text": "CCE-80112-6", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86515", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71891", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000056", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-010060", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204396r603261_rule", - "time": "2021-12-17T10:39:30", - "severity": "medium", - "version": "RHEL-07-010060", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-80112-6", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86515", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71891", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000056", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:988", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:30", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204397", - "title": "The Red Hat Enterprise Linux operating system must uniquely identify and must authenticate users using multifactor authentication via a graphical user logon.", - "desc": "To assure accountability and prevent unauthenticated access, users must be identified and authenticated to prevent potential misuse and compromise of the system.\n\nMultifactor solutions that require devices separate from information systems gaining access include, for example, hardware tokens providing time-based or challenge-response authenticators and smart cards such as the U.S. Government Personal Identity Verification card and the DoD Common Access Card.\n\nSatisfies: SRG-OS-000375-GPOS-00161,SRG-OS-000375-GPOS-00162", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:92515", - "label": "check" - }, - { - "data": "Configure the operating system to uniquely identify and authenticate users using multifactor authentication via a graphical user logon.\n\nNote: If the system does not have GNOME installed, this requirement is Not Applicable.\n\nCreate a database to contain the system-wide screensaver settings (if it does not already exist) with the following command: \n\nNote: The example is using the database local for the system, so if the system is using another database in \"/etc/dconf/profile/user\", the file should be created under the appropriate subdirectory.\n\n# touch /etc/dconf/db/local.d/00-defaults\n\nEdit \"[org/gnome/login-screen]\" and add or update the following line:\nenable-smartcard-authentication=true \n\nUpdate the system databases:\n# dconf update", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001948", - "CCI-001953", - "CCI-001954" - ], - "nist": [ - "IA-2 (11)", - "IA-2 (12)", - "IA-2 (12)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"To assure accountability and prevent unauthenticated access, users must be identified and authenticated to prevent potential misuse and compromise of the system.\\n\\nMultifactor solutions that require devices separate from information systems gaining access include, for example, hardware tokens providing time-based or challenge-response authenticators and smart cards such as the U.S. Government Personal Identity Verification card and the DoD Common Access Card.\\n\\nSatisfies: SRG-OS-000375-GPOS-00161,SRG-OS-000375-GPOS-00162\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204397", - "group_title": "SRG-OS-000375-GPOS-00160", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204397r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:92515", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4521r88384_fix", - "fixtext_fixref": "F-4521r88384_fix", - "ident": [ - { - "text": "V-77819", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-92515", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001948", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001953", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001954", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-010061", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204397r603261_rule", - "time": "2021-12-17T10:39:30", - "severity": "medium", - "version": "RHEL-07-010061", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "V-77819", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-92515", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001948", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001953", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001954", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:92515", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:30", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204398", - "title": "The Red Hat Enterprise Linux operating system must initiate a screensaver after a 15-minute period of inactivity for graphical user interfaces.", - "desc": "A session time-out lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not log out because of the temporary nature of the absence. Rather than relying on the user to manually lock their operating system session prior to vacating the vicinity, operating systems need to be able to identify when a user's session has idled and take action to initiate the session lock.\n\nThe session lock is implemented at the point where session activity can be determined and/or controlled.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:981", - "label": "check" - }, - { - "data": "Configure the operating system to initiate a screensaver after a 15-minute period of inactivity for graphical user interfaces.\n\nCreate a database to contain the system-wide screensaver settings (if it does not already exist) with the following command:\n\n# touch /etc/dconf/db/local.d/00-screensaver\n\nEdit /etc/dconf/db/local.d/00-screensaver and add or update the following lines:\n\n[org/gnome/desktop/session]\n# Set the lock time out to 900 seconds before the session is considered idle\nidle-delay=uint32 900\n\nYou must include the \"uint32\" along with the integer key values as shown.\n\nUpdate the system databases:\n\n# dconf update\n\nUsers must log out and back in again before the system-wide settings take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000057" - ], - "nist": [ - "AC-11 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"A session time-out lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not log out because of the temporary nature of the absence. Rather than relying on the user to manually lock their operating system session prior to vacating the vicinity, operating systems need to be able to identify when a user's session has idled and take action to initiate the session lock.\\n\\nThe session lock is implemented at the point where session activity can be determined and/or controlled.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204398", - "group_title": "SRG-OS-000029-GPOS-00010", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204398r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-export": { - "export-name": "oval:mil.disa.stig.rhel7:var:3828", - "value-id": "xccdf_mil.disa.stig_value_inactivity_timeout_value" - }, - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:981", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4522r88387_fix", - "fixtext_fixref": "F-4522r88387_fix", - "ident": [ - { - "text": "CCE-80110-0", - "system": "http://cce.mitre.org" - }, - { - "text": "V-71893", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86517", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000057", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-010070", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204398r603261_rule", - "time": "2021-12-17T10:39:30", - "severity": "medium", - "version": "RHEL-07-010070", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-80110-0", - "system": "http://cce.mitre.org" - }, - { - "text": "V-71893", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86517", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000057", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-export": { - "export-name": "oval:mil.disa.stig.rhel7:var:3828", - "value-id": "xccdf_mil.disa.stig_value_inactivity_timeout_value" - }, - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:981", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - }, - "value": { - "id": "xccdf_mil.disa.stig_value_inactivity_timeout_value", - "operator": "equals", - "type": "number", - "title": { - "text": "Inactivity timeout", - "xmlns:xhtml": "http://www.w3.org/1999/xhtml", - "xml:lang": "en-US" - }, - "description": { - "text": "Choose allowed duration of inactive SSH connections, shells, and X sessions", - "xmlns:xhtml": "http://www.w3.org/1999/xhtml", - "xml:lang": "en-US" - }, - "value": [ - 900, - { - "text": 300, - "selector": "5_minutes" - }, - { - "text": 600, - "selector": "10_minutes" - }, - { - "text": 900, - "selector": "15_minutes" - } - ] - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:30", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204399", - "title": "The Red Hat Enterprise Linux operating system must prevent a user from overriding the screensaver lock-delay setting for the graphical user interface.", - "desc": "A session time-out lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not log out because of the temporary nature of the absence. Rather than relying on the user to manually lock their operating system session prior to vacating the vicinity, operating systems need to be able to identify when a user's session has idled and take action to initiate the session lock.\n\nThe session lock is implemented at the point where session activity can be determined and/or controlled.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:999", - "label": "check" - }, - { - "data": "Configure the operating system to prevent a user from overriding a screensaver lock after a 15-minute period of inactivity for graphical user interfaces.\n\nCreate a database to contain the system-wide screensaver settings (if it does not already exist) with the following command: \n\nNote: The example below is using the database \"local\" for the system, so if the system is using another database in \"/etc/dconf/profile/user\", the file should be created under the appropriate subdirectory.\n\n# touch /etc/dconf/db/local.d/locks/session\n\nAdd the setting to lock the screensaver lock delay:\n\n/org/gnome/desktop/screensaver/lock-delay", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000057" - ], - "nist": [ - "AC-11 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"A session time-out lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not log out because of the temporary nature of the absence. Rather than relying on the user to manually lock their operating system session prior to vacating the vicinity, operating systems need to be able to identify when a user's session has idled and take action to initiate the session lock.\\n\\nThe session lock is implemented at the point where session activity can be determined and/or controlled.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204399", - "group_title": "SRG-OS-000029-GPOS-00010", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204399r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:999", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4523r88390_fix", - "fixtext_fixref": "F-4523r88390_fix", - "ident": [ - { - "text": "CCE-80371-8", - "system": "http://cce.mitre.org" - }, - { - "text": "V-73155", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-87807", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000057", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-010081", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204399r603261_rule", - "time": "2021-12-17T10:39:30", - "severity": "medium", - "version": "RHEL-07-010081", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-80371-8", - "system": "http://cce.mitre.org" - }, - { - "text": "V-73155", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-87807", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000057", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:999", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:30", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204402", - "title": "The Red Hat Enterprise Linux operating system must initiate a session lock for the screensaver after a period of inactivity for graphical user interfaces.", - "desc": "A session time-out lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not log out because of the temporary nature of the absence. Rather than relying on the user to manually lock their operating system session prior to vacating the vicinity, operating systems need to be able to identify when a user's session has idled and take action to initiate the session lock.\n\nThe session lock is implemented at the point where session activity can be determined and/or controlled.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:978", - "label": "check" - }, - { - "data": "Configure the operating system to initiate a session lock after a 15-minute period of inactivity for graphical user interfaces.\n\nCreate a database to contain the system-wide screensaver settings (if it does not already exist) with the following command: \n\n# touch /etc/dconf/db/local.d/00-screensaver\n\nAdd the setting to enable screensaver locking after 15 minutes of inactivity:\n\n[org/gnome/desktop/screensaver]\n\nidle-activation-enabled=true\n\nUpdate the system databases:\n\n# dconf update\n\nUsers must log out and back in again before the system-wide settings take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000057" - ], - "nist": [ - "AC-11 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"A session time-out lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not log out because of the temporary nature of the absence. Rather than relying on the user to manually lock their operating system session prior to vacating the vicinity, operating systems need to be able to identify when a user's session has idled and take action to initiate the session lock.\\n\\nThe session lock is implemented at the point where session activity can be determined and/or controlled.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204402", - "group_title": "SRG-OS-000029-GPOS-00010", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204402r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:978", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4526r88399_fix", - "fixtext_fixref": "F-4526r88399_fix", - "ident": [ - { - "text": "CCE-80111-8", - "system": "http://cce.mitre.org" - }, - { - "text": "V-71899", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86523", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000057", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-010100", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204402r603261_rule", - "time": "2021-12-17T10:39:30", - "severity": "medium", - "version": "RHEL-07-010100", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-80111-8", - "system": "http://cce.mitre.org" - }, - { - "text": "V-71899", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86523", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000057", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:978", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:30", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204403", - "title": "The Red Hat Enterprise Linux operating system must prevent a user from overriding the screensaver idle-activation-enabled setting for the graphical user interface.", - "desc": "A session lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not want to log out because of the temporary nature of the absence.\n\nThe session lock is implemented at the point where session activity can be determined.\n\nThe ability to enable/disable a session lock is given to the user by default. Disabling the user's ability to disengage the graphical user interface session lock provides the assurance that all sessions will lock after the specified period of time.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:93703", - "label": "check" - }, - { - "data": "Configure the operating system to prevent a user from overriding a screensaver lock after a 15-minute period of inactivity for graphical user interfaces.\n\nCreate a database to contain the system-wide screensaver settings (if it does not already exist) with the following command: \n\nNote: The example below is using the database \"local\" for the system, so if the system is using another database in \"/etc/dconf/profile/user\", the file should be created under the appropriate subdirectory.\n\n# touch /etc/dconf/db/local.d/locks/session\n\nAdd the setting to lock the screensaver idle-activation-enabled setting:\n\n/org/gnome/desktop/screensaver/idle-activation-enabled", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000057" - ], - "nist": [ - "AC-11 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"A session lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not want to log out because of the temporary nature of the absence.\\n\\nThe session lock is implemented at the point where session activity can be determined.\\n\\nThe ability to enable/disable a session lock is given to the user by default. Disabling the user's ability to disengage the graphical user interface session lock provides the assurance that all sessions will lock after the specified period of time.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204403", - "group_title": "SRG-OS-000029-GPOS-00010", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204403r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:93703", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4527r88402_fix", - "fixtext_fixref": "F-4527r88402_fix", - "ident": [ - { - "text": "V-78997", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-93703", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000057", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-010101", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204403r603261_rule", - "time": "2021-12-17T10:39:30", - "severity": "medium", - "version": "RHEL-07-010101", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "V-78997", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-93703", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000057", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:93703", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:30", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204404", - "title": "The Red Hat Enterprise Linux operating system must initiate a session lock for graphical user interfaces when the screensaver is activated.", - "desc": "A session time-out lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not log out because of the temporary nature of the absence. Rather than relying on the user to manually lock their operating system session prior to vacating the vicinity, operating systems need to be able to identify when a user's session has idled and take action to initiate the session lock.\n\nThe session lock is implemented at the point where session activity can be determined and/or controlled.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:985", - "label": "check" - }, - { - "data": "Configure the operating system to initiate a session lock for graphical user interfaces when a screensaver is activated.\n\nCreate a database to contain the system-wide screensaver settings (if it does not already exist) with the following command: \n\n# touch /etc/dconf/db/local.d/00-screensaver\n\nAdd the setting to enable session locking when a screensaver is activated:\n\n[org/gnome/desktop/screensaver]\nlock-delay=uint32 5\n\nThe \"uint32\" must be included along with the integer key values as shown.\n\nUpdate the system databases:\n\n# dconf update\n\nUsers must log out and back in again before the system-wide settings take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000057" - ], - "nist": [ - "AC-11 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"A session time-out lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not log out because of the temporary nature of the absence. Rather than relying on the user to manually lock their operating system session prior to vacating the vicinity, operating systems need to be able to identify when a user's session has idled and take action to initiate the session lock.\\n\\nThe session lock is implemented at the point where session activity can be determined and/or controlled.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204404", - "group_title": "SRG-OS-000029-GPOS-00010", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204404r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:985", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4528r88405_fix", - "fixtext_fixref": "F-4528r88405_fix", - "ident": [ - { - "text": "CCE-80370-0", - "system": "http://cce.mitre.org" - }, - { - "text": "V-71901", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86525", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000057", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-010110", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204404r603261_rule", - "time": "2021-12-17T10:39:30", - "severity": "medium", - "version": "RHEL-07-010110", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-80370-0", - "system": "http://cce.mitre.org" - }, - { - "text": "V-71901", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86525", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000057", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:985", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:30", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204405", - "title": "The Red Hat Enterprise Linux operating system must be configured so that /etc/pam.d/passwd implements /etc/pam.d/system-auth when changing passwords.", - "desc": "Pluggable authentication modules (PAM) allow for a modular approach to integrating authentication methods. PAM operates in a top-down processing model and if the modules are not listed in the correct order, an important security function could be bypassed if stack entries are not centralized.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:95715", - "label": "check" - }, - { - "data": "Configure PAM to utilize /etc/pam.d/system-auth when changing passwords.\n\nAdd the following line to \"/etc/pam.d/passwd\" (or modify the line to have the required value):\n\npassword substack system-auth", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000192" - ], - "nist": [ - "IA-5 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Pluggable authentication modules (PAM) allow for a modular approach to integrating authentication methods. PAM operates in a top-down processing model and if the modules are not listed in the correct order, an important security function could be bypassed if stack entries are not centralized.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204405", - "group_title": "SRG-OS-000069-GPOS-00037", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204405r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:95715", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4529r88408_fix", - "fixtext_fixref": "F-4529r88408_fix", - "ident": [ - { - "text": "SV-95715", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-81003", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000192", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-010118", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204405r603261_rule", - "time": "2021-12-17T10:39:30", - "severity": "medium", - "version": "RHEL-07-010118", - "weight": "10.000000", - "result": "pass", - "ident": [ - { - "text": "SV-95715", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-81003", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000192", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:95715", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:30", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204406", - "title": "The Red Hat Enterprise Linux operating system must be configured so that when passwords are changed or new passwords are established, pwquality must be used.", - "desc": "Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. \"pwquality\" enforces complex password construction configuration and has the ability to limit brute-force attacks on the system.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:481", - "label": "check" - }, - { - "data": "Configure the operating system to use \"pwquality\" to enforce password complexity rules.\n\nAdd the following line to \"/etc/pam.d/system-auth\" (or modify the line to have the required value):\n\npassword required pam_pwquality.so retry=3\n\nNote: The value of \"retry\" should be between \"1\" and \"3\".", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000192" - ], - "nist": [ - "IA-5 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. \\\"pwquality\\\" enforces complex password construction configuration and has the ability to limit brute-force attacks on the system.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204406", - "group_title": "SRG-OS-000069-GPOS-00037", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204406r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:481", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4530r88411_fix", - "fixtext_fixref": "F-4530r88411_fix", - "ident": [ - { - "text": "CCE-27160-1", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-87811", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-73159", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000192", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-010119", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204406r603261_rule", - "time": "2021-12-17T10:39:30", - "severity": "medium", - "version": "RHEL-07-010119", - "weight": "10.000000", - "result": "pass", - "ident": [ - { - "text": "CCE-27160-1", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-87811", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-73159", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000192", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:481", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:30", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204407", - "title": "The Red Hat Enterprise Linux operating system must be configured so that when passwords are changed or new passwords are established, the new password must contain at least one upper-case character.", - "desc": "Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\n\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:484", - "label": "check" - }, - { - "data": "Configure the operating system to enforce password complexity by requiring that at least one upper-case character be used by setting the \"ucredit\" option.\n\nAdd the following line to \"/etc/security/pwquality.conf\" (or modify the line to have the required value):\n\nucredit = -1", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000192" - ], - "nist": [ - "IA-5 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204407", - "group_title": "SRG-OS-000069-GPOS-00037", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204407r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-export": { - "export-name": "oval:mil.disa.stig.rhel7:var:3805", - "value-id": "xccdf_mil.disa.stig_value_var_password_pam_ucredit" - }, - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:484", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4531r88414_fix", - "fixtext_fixref": "F-4531r88414_fix", - "ident": [ - { - "text": "CCE-27200-5", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86527", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71903", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000192", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-010120", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204407r603261_rule", - "time": "2021-12-17T10:39:30", - "severity": "medium", - "version": "RHEL-07-010120", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-27200-5", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86527", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71903", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000192", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-export": { - "export-name": "oval:mil.disa.stig.rhel7:var:3805", - "value-id": "xccdf_mil.disa.stig_value_var_password_pam_ucredit" - }, - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:484", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - }, - "value": { - "id": "xccdf_mil.disa.stig_value_var_password_pam_ucredit", - "operator": "equals", - "type": "number", - "title": { - "text": "ucredit", - "xmlns:xhtml": "http://www.w3.org/1999/xhtml", - "xml:lang": "en-US" - }, - "description": { - "text": "Minimum number of upper case in password", - "xmlns:xhtml": "http://www.w3.org/1999/xhtml", - "xml:lang": "en-US" - }, - "value": [ - -1, - { - "text": -2, - "selector": "2" - }, - { - "text": -1, - "selector": "1" - }, - { - "text": 0, - "selector": "0" - } - ] - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:30", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204408", - "title": "The Red Hat Enterprise Linux operating system must be configured so that when passwords are changed or new passwords are established, the new password must contain at least one lower-case character.", - "desc": "Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\n\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:468", - "label": "check" - }, - { - "data": "Configure the system to require at least one lower-case character when creating or changing a password.\n\nAdd or modify the following line \nin \"/etc/security/pwquality.conf\":\n\nlcredit = -1", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000193" - ], - "nist": [ - "IA-5 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204408", - "group_title": "SRG-OS-000070-GPOS-00038", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204408r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-export": { - "export-name": "oval:mil.disa.stig.rhel7:var:3798", - "value-id": "xccdf_mil.disa.stig_value_var_password_pam_lcredit" - }, - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:468", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4532r88417_fix", - "fixtext_fixref": "F-4532r88417_fix", - "ident": [ - { - "text": "CCE-27345-8", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86529", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71905", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000193", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-010130", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204408r603261_rule", - "time": "2021-12-17T10:39:30", - "severity": "medium", - "version": "RHEL-07-010130", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-27345-8", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86529", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71905", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000193", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-export": { - "export-name": "oval:mil.disa.stig.rhel7:var:3798", - "value-id": "xccdf_mil.disa.stig_value_var_password_pam_lcredit" - }, - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:468", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - }, - "value": { - "id": "xccdf_mil.disa.stig_value_var_password_pam_lcredit", - "operator": "equals", - "type": "number", - "title": { - "text": "lcredit", - "xmlns:xhtml": "http://www.w3.org/1999/xhtml", - "xml:lang": "en-US" - }, - "description": { - "text": "Minimum number of lower case in password", - "xmlns:xhtml": "http://www.w3.org/1999/xhtml", - "xml:lang": "en-US" - }, - "value": [ - -1, - { - "text": -2, - "selector": "2" - }, - { - "text": -1, - "selector": "1" - }, - { - "text": 0, - "selector": "0" - } - ] - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:30", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204409", - "title": "The Red Hat Enterprise Linux operating system must be configured so that when passwords are changed or new passwords are assigned, the new password must contain at least one numeric character.", - "desc": "Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\n\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:463", - "label": "check" - }, - { - "data": "Configure the operating system to enforce password complexity by requiring that at least one numeric character be used by setting the \"dcredit\" option.\n\nAdd the following line to /etc/security/pwquality.conf (or modify the line to have the required value):\n\ndcredit = -1", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000194" - ], - "nist": [ - "IA-5 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204409", - "group_title": "SRG-OS-000071-GPOS-00039", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204409r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-export": { - "export-name": "oval:mil.disa.stig.rhel7:var:3796", - "value-id": "xccdf_mil.disa.stig_value_var_password_pam_dcredit" - }, - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:463", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4533r88420_fix", - "fixtext_fixref": "F-4533r88420_fix", - "ident": [ - { - "text": "CCE-27214-6", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86531", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71907", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000194", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-010140", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204409r603261_rule", - "time": "2021-12-17T10:39:30", - "severity": "medium", - "version": "RHEL-07-010140", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-27214-6", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86531", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71907", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000194", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-export": { - "export-name": "oval:mil.disa.stig.rhel7:var:3796", - "value-id": "xccdf_mil.disa.stig_value_var_password_pam_dcredit" - }, - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:463", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - }, - "value": { - "id": "xccdf_mil.disa.stig_value_var_password_pam_dcredit", - "operator": "equals", - "type": "number", - "title": { - "text": "dcredit", - "xmlns:xhtml": "http://www.w3.org/1999/xhtml", - "xml:lang": "en-US" - }, - "description": { - "text": "Minimum number of digits in password", - "xmlns:xhtml": "http://www.w3.org/1999/xhtml", - "xml:lang": "en-US" - }, - "value": [ - -1, - { - "text": -2, - "selector": "2" - }, - { - "text": -1, - "selector": "1" - }, - { - "text": 0, - "selector": "0" - } - ] - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:30", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204410", - "title": "The Red Hat Enterprise Linux operating system must be configured so that when passwords are changed or new passwords are established, the new password must contain at least one special character.", - "desc": "Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\n\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:478", - "label": "check" - }, - { - "data": "Configure the operating system to enforce password complexity by requiring that at least one special character be used by setting the \"ocredit\" option.\n\nAdd the following line to \"/etc/security/pwquality.conf\" (or modify the line to have the required value):\n\nocredit = -1", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001619" - ], - "nist": [ - "IA-5 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204410", - "group_title": "SRG-OS-000266-GPOS-00101", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204410r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-export": { - "export-name": "oval:mil.disa.stig.rhel7:var:3803", - "value-id": "xccdf_mil.disa.stig_value_var_password_pam_ocredit" - }, - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:478", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4534r88423_fix", - "fixtext_fixref": "F-4534r88423_fix", - "ident": [ - { - "text": "CCE-27360-7", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86533", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71909", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001619", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-010150", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204410r603261_rule", - "time": "2021-12-17T10:39:30", - "severity": "medium", - "version": "RHEL-07-010150", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-27360-7", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86533", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71909", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001619", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-export": { - "export-name": "oval:mil.disa.stig.rhel7:var:3803", - "value-id": "xccdf_mil.disa.stig_value_var_password_pam_ocredit" - }, - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:478", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - }, - "value": { - "id": "xccdf_mil.disa.stig_value_var_password_pam_ocredit", - "operator": "equals", - "type": "number", - "title": { - "text": "ocredit", - "xmlns:xhtml": "http://www.w3.org/1999/xhtml", - "xml:lang": "en-US" - }, - "description": { - "text": "Minimum number of other (special characters) in\npassword", - "xmlns:xhtml": "http://www.w3.org/1999/xhtml", - "xml:lang": "en-US" - }, - "value": [ - -1, - { - "text": -2, - "selector": "2" - }, - { - "text": -1, - "selector": "1" - }, - { - "text": 0, - "selector": "0" - } - ] - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:30", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204411", - "title": "The Red Hat Enterprise Linux operating system must be configured so that when passwords are changed a minimum of eight of the total number of characters must be changed.", - "desc": "Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\n\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:466", - "label": "check" - }, - { - "data": "Configure the operating system to require the change of at least eight of the total number of characters when passwords are changed by setting the \"difok\" option.\n\nAdd the following line to \"/etc/security/pwquality.conf\" (or modify the line to have the required value):\n\ndifok = 8", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000195" - ], - "nist": [ - "IA-5 (1) (b)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204411", - "group_title": "SRG-OS-000072-GPOS-00040", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204411r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-export": { - "export-name": "oval:mil.disa.stig.rhel7:var:3797", - "value-id": "xccdf_mil.disa.stig_value_var_password_pam_difok" - }, - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:466", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4535r88426_fix", - "fixtext_fixref": "F-4535r88426_fix", - "ident": [ - { - "text": "CCE-26631-2", - "system": "http://cce.mitre.org" - }, - { - "text": "V-71911", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86535", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000195", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-010160", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204411r603261_rule", - "time": "2021-12-17T10:39:30", - "severity": "medium", - "version": "RHEL-07-010160", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-26631-2", - "system": "http://cce.mitre.org" - }, - { - "text": "V-71911", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86535", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000195", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-export": { - "export-name": "oval:mil.disa.stig.rhel7:var:3797", - "value-id": "xccdf_mil.disa.stig_value_var_password_pam_difok" - }, - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:466", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - }, - "value": { - "id": "xccdf_mil.disa.stig_value_var_password_pam_difok", - "operator": "equals", - "type": "number", - "title": { - "text": "difok", - "xmlns:xhtml": "http://www.w3.org/1999/xhtml", - "xml:lang": "en-US" - }, - "description": { - "text": "Minimum number of characters not present in old\npassword", - "xmlns:xhtml": "http://www.w3.org/1999/xhtml", - "xml:lang": "en-US" - }, - "warning": { - "text": "Keep this high for short passwords", - "xmlns:xhtml": "http://www.w3.org/1999/xhtml", - "xml:lang": "en-US", - "category": "general" - }, - "value": [ - 8, - { - "text": 2, - "selector": "2" - }, - { - "text": 3, - "selector": "3" - }, - { - "text": 4, - "selector": "4" - }, - { - "text": 5, - "selector": "5" - }, - { - "text": 6, - "selector": "6" - }, - { - "text": 7, - "selector": "7" - }, - { - "text": 8, - "selector": "8" - }, - { - "text": 15, - "selector": "15" - } - ] - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:30", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204412", - "title": "The Red Hat Enterprise Linux operating system must be configured so that when passwords are changed a minimum of four character classes must be changed.", - "desc": "Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\n\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:474", - "label": "check" - }, - { - "data": "Configure the operating system to require the change of at least four character classes when passwords are changed by setting the \"minclass\" option.\n\nAdd the following line to \"/etc/security/pwquality.conf conf\" (or modify the line to have the required value):\n\nminclass = 4", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000195" - ], - "nist": [ - "IA-5 (1) (b)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204412", - "group_title": "SRG-OS-000072-GPOS-00040", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204412r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-export": { - "export-name": "oval:mil.disa.stig.rhel7:var:3801", - "value-id": "xccdf_mil.disa.stig_value_var_password_pam_minclass" - }, - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:474", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4536r88429_fix", - "fixtext_fixref": "F-4536r88429_fix", - "ident": [ - { - "text": "CCE-27115-5", - "system": "http://cce.mitre.org" - }, - { - "text": "V-71913", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86537", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000195", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-010170", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204412r603261_rule", - "time": "2021-12-17T10:39:30", - "severity": "medium", - "version": "RHEL-07-010170", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-27115-5", - "system": "http://cce.mitre.org" - }, - { - "text": "V-71913", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86537", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000195", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-export": { - "export-name": "oval:mil.disa.stig.rhel7:var:3801", - "value-id": "xccdf_mil.disa.stig_value_var_password_pam_minclass" - }, - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:474", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - }, - "value": { - "id": "xccdf_mil.disa.stig_value_var_password_pam_minclass", - "operator": "equals", - "type": "number", - "title": { - "text": "minclass", - "xmlns:xhtml": "http://www.w3.org/1999/xhtml", - "xml:lang": "en-US" - }, - "description": { - "text": "Minimum number of categories of characters that must exist in a password", - "xmlns:xhtml": "http://www.w3.org/1999/xhtml", - "xml:lang": "en-US" - }, - "value": [ - 4, - { - "text": 1, - "selector": "1" - }, - { - "text": 2, - "selector": "2" - }, - { - "text": 3, - "selector": "3" - }, - { - "text": 4, - "selector": "4" - } - ] - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:30", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204413", - "title": "The Red Hat Enterprise Linux operating system must be configured so that when passwords are changed the number of repeating consecutive characters must not be more than three characters.", - "desc": "Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\n\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:472", - "label": "check" - }, - { - "data": "Configure the operating system to require the change of the number of repeating consecutive characters when passwords are changed by setting the \"maxrepeat\" option.\n\nAdd the following line to \"/etc/security/pwquality.conf conf\" (or modify the line to have the required value):\n\nmaxrepeat = 3", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000195" - ], - "nist": [ - "IA-5 (1) (b)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204413", - "group_title": "SRG-OS-000072-GPOS-00040", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204413r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-export": { - "export-name": "oval:mil.disa.stig.rhel7:var:3800", - "value-id": "xccdf_mil.disa.stig_value_var_password_pam_maxrepeat" - }, - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:472", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4537r88432_fix", - "fixtext_fixref": "F-4537r88432_fix", - "ident": [ - { - "text": "CCE-27333-4", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86539", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71915", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000195", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-010180", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204413r603261_rule", - "time": "2021-12-17T10:39:30", - "severity": "medium", - "version": "RHEL-07-010180", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-27333-4", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86539", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71915", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000195", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-export": { - "export-name": "oval:mil.disa.stig.rhel7:var:3800", - "value-id": "xccdf_mil.disa.stig_value_var_password_pam_maxrepeat" - }, - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:472", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - }, - "value": { - "id": "xccdf_mil.disa.stig_value_var_password_pam_maxrepeat", - "operator": "equals", - "type": "number", - "title": { - "text": "maxrepeat", - "xmlns:xhtml": "http://www.w3.org/1999/xhtml", - "xml:lang": "en-US" - }, - "description": { - "text": "Maximum Number of Consecutive Repeating Characters in a Password", - "xmlns:xhtml": "http://www.w3.org/1999/xhtml", - "xml:lang": "en-US" - }, - "value": [ - 3, - { - "text": 1, - "selector": "1" - }, - { - "text": 2, - "selector": "2" - }, - { - "text": 3, - "selector": "3" - } - ] - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:30", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204414", - "title": "The Red Hat Enterprise Linux operating system must be configured so that when passwords are changed the number of repeating characters of the same character class must not be more than four characters.", - "desc": "Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\n\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:470", - "label": "check" - }, - { - "data": "Configure the operating system to require the change of the number of repeating characters of the same character class when passwords are changed by setting the \"maxclassrepeat\" option.\n\nAdd the following line to \"/etc/security/pwquality.conf\" conf (or modify the line to have the required value):\n\nmaxclassrepeat = 4", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000195" - ], - "nist": [ - "IA-5 (1) (b)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204414", - "group_title": "SRG-OS-000072-GPOS-00040", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204414r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-export": { - "export-name": "oval:mil.disa.stig.rhel7:var:3799", - "value-id": "xccdf_mil.disa.stig_value_var_password_pam_maxclassrepeat" - }, - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:470", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4538r88435_fix", - "fixtext_fixref": "F-4538r88435_fix", - "ident": [ - { - "text": "CCE-27512-3", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86541", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71917", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000195", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-010190", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204414r603261_rule", - "time": "2021-12-17T10:39:30", - "severity": "medium", - "version": "RHEL-07-010190", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-27512-3", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86541", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71917", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000195", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-export": { - "export-name": "oval:mil.disa.stig.rhel7:var:3799", - "value-id": "xccdf_mil.disa.stig_value_var_password_pam_maxclassrepeat" - }, - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:470", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - }, - "value": { - "id": "xccdf_mil.disa.stig_value_var_password_pam_maxclassrepeat", - "operator": "equals", - "type": "number", - "title": { - "text": "maxclassrepeat", - "xmlns:xhtml": "http://www.w3.org/1999/xhtml", - "xml:lang": "en-US" - }, - "description": { - "text": "Maximum Number of Consecutive Repeating Characters in a Password From the Same Character Class", - "xmlns:xhtml": "http://www.w3.org/1999/xhtml", - "xml:lang": "en-US" - }, - "value": [ - 4, - { - "text": 1, - "selector": "1" - }, - { - "text": 2, - "selector": "2" - }, - { - "text": 3, - "selector": "3" - }, - { - "text": 4, - "selector": "4" - } - ] - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:30", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204415", - "title": "The Red Hat Enterprise Linux operating system must be configured so that the PAM system service is configured to store only encrypted representations of passwords.", - "desc": "Passwords need to be protected at all times, and encryption is the standard method for protecting passwords. If passwords are not encrypted, they can be plainly read (i.e., clear text) and easily compromised. Passwords encrypted with a weak algorithm are no more protected than if they are kept in plain text.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:1367", - "label": "check" - }, - { - "data": "Configure the operating system to store only SHA512 encrypted representations of passwords.\n\nAdd the following line in \"/etc/pam.d/system-auth\":\npam_unix.so sha512 shadow try_first_pass use_authtok\n\nAdd the following line in \"/etc/pam.d/password-auth\":\npam_unix.so sha512 shadow try_first_pass use_authtok\n\nNote: Manual changes to the listed files may be overwritten by the \"authconfig\" program. The \"authconfig\" program should not be used to update the configurations listed in this requirement.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000196" - ], - "nist": [ - "IA-5 (1) (c)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Passwords need to be protected at all times, and encryption is the standard method for protecting passwords. If passwords are not encrypted, they can be plainly read (i.e., clear text) and easily compromised. Passwords encrypted with a weak algorithm are no more protected than if they are kept in plain text.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204415", - "group_title": "SRG-OS-000073-GPOS-00041", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204415r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:1367", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4539r88438_fix", - "fixtext_fixref": "F-4539r88438_fix", - "ident": [ - { - "text": "CCE-27104-9", - "system": "http://cce.mitre.org" - }, - { - "text": "V-71919", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86543", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000196", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-010200", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204415r603261_rule", - "time": "2021-12-17T10:39:30", - "severity": "medium", - "version": "RHEL-07-010200", - "weight": "10.000000", - "result": "pass", - "ident": [ - { - "text": "CCE-27104-9", - "system": "http://cce.mitre.org" - }, - { - "text": "V-71919", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86543", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000196", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:1367", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:30", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204416", - "title": "The Red Hat Enterprise Linux operating system must be configured to use the shadow file to store only encrypted representations of passwords.", - "desc": "Passwords need to be protected at all times, and encryption is the standard method for protecting passwords. If passwords are not encrypted, they can be plainly read (i.e., clear text) and easily compromised. Passwords encrypted with a weak algorithm are no more protected than if they are kept in plain text.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:1365", - "label": "check" - }, - { - "data": "Configure the operating system to store only SHA512 encrypted representations of passwords.\n\nAdd or update the following line in \"/etc/login.defs\":\n\nENCRYPT_METHOD SHA512", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000196" - ], - "nist": [ - "IA-5 (1) (c)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Passwords need to be protected at all times, and encryption is the standard method for protecting passwords. If passwords are not encrypted, they can be plainly read (i.e., clear text) and easily compromised. Passwords encrypted with a weak algorithm are no more protected than if they are kept in plain text.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204416", - "group_title": "SRG-OS-000073-GPOS-00041", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204416r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:1365", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4540r88441_fix", - "fixtext_fixref": "F-4540r88441_fix", - "ident": [ - { - "text": "CCE-27124-7", - "system": "http://cce.mitre.org" - }, - { - "text": "V-71921", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86545", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000196", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-010210", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204416r603261_rule", - "time": "2021-12-17T10:39:30", - "severity": "medium", - "version": "RHEL-07-010210", - "weight": "10.000000", - "result": "pass", - "ident": [ - { - "text": "CCE-27124-7", - "system": "http://cce.mitre.org" - }, - { - "text": "V-71921", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86545", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000196", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:1365", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:30", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204417", - "title": "The Red Hat Enterprise Linux operating system must be configured so that user and group account administration utilities are configured to store only encrypted representations of passwords.", - "desc": "Passwords need to be protected at all times, and encryption is the standard method for protecting passwords. If passwords are not encrypted, they can be plainly read (i.e., clear text) and easily compromised. Passwords encrypted with a weak algorithm are no more protected than if they are kept in plain text.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:1363", - "label": "check" - }, - { - "data": "Configure the operating system to store only SHA512 encrypted representations of passwords.\n\nAdd or update the following line in \"/etc/libuser.conf\" in the [defaults] section: \n\ncrypt_style = sha512", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000196" - ], - "nist": [ - "IA-5 (1) (c)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Passwords need to be protected at all times, and encryption is the standard method for protecting passwords. If passwords are not encrypted, they can be plainly read (i.e., clear text) and easily compromised. Passwords encrypted with a weak algorithm are no more protected than if they are kept in plain text.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204417", - "group_title": "SRG-OS-000073-GPOS-00041", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204417r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:1363", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4541r88444_fix", - "fixtext_fixref": "F-4541r88444_fix", - "ident": [ - { - "text": "CCE-27053-8", - "system": "http://cce.mitre.org" - }, - { - "text": "V-71923", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86547", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000196", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-010220", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204417r603261_rule", - "time": "2021-12-17T10:39:30", - "severity": "medium", - "version": "RHEL-07-010220", - "weight": "10.000000", - "result": "pass", - "ident": [ - { - "text": "CCE-27053-8", - "system": "http://cce.mitre.org" - }, - { - "text": "V-71923", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86547", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000196", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:1363", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:30", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204418", - "title": "The Red Hat Enterprise Linux operating system must be configured so that passwords for new users are restricted to a 24 hours/1 day minimum lifetime.", - "desc": "Enforcing a minimum password lifetime helps to prevent repeated password changes to defeat the password reuse or history enforcement requirement. If users are allowed to immediately and continually change their password, the password could be repeatedly changed in a short period of time to defeat the organization's policy regarding password reuse.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:455", - "label": "check" - }, - { - "data": "Configure the operating system to enforce 24 hours/1 day as the minimum password lifetime.\n\nAdd the following line in \"/etc/login.defs\" (or modify the line to have the required value):\n\nPASS_MIN_DAYS 1", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000198" - ], - "nist": [ - "IA-5 (1) (d)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Enforcing a minimum password lifetime helps to prevent repeated password changes to defeat the password reuse or history enforcement requirement. If users are allowed to immediately and continually change their password, the password could be repeatedly changed in a short period of time to defeat the organization's policy regarding password reuse.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204418", - "group_title": "SRG-OS-000075-GPOS-00043", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204418r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-export": { - "export-name": "oval:mil.disa.stig.rhel7:var:3794", - "value-id": "xccdf_mil.disa.stig_value_var_accounts_minimum_age_login_defs" - }, - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:455", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4542r88447_fix", - "fixtext_fixref": "F-4542r88447_fix", - "ident": [ - { - "text": "CCE-27002-5", - "system": "http://cce.mitre.org" - }, - { - "text": "V-71925", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86549", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000198", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-010230", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204418r603261_rule", - "time": "2021-12-17T10:39:30", - "severity": "medium", - "version": "RHEL-07-010230", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-27002-5", - "system": "http://cce.mitre.org" - }, - { - "text": "V-71925", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86549", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000198", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-export": { - "export-name": "oval:mil.disa.stig.rhel7:var:3794", - "value-id": "xccdf_mil.disa.stig_value_var_accounts_minimum_age_login_defs" - }, - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:455", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - }, - "value": { - "id": "xccdf_mil.disa.stig_value_var_accounts_minimum_age_login_defs", - "type": "number", - "title": { - "text": "minimum password age", - "xmlns:xhtml": "http://www.w3.org/1999/xhtml", - "xml:lang": "en-US" - }, - "description": { - "text": "Minimum age of password in days", - "xmlns:xhtml": "http://www.w3.org/1999/xhtml", - "xml:lang": "en-US" - }, - "warning": { - "text": "This will only apply to newly created accounts", - "xmlns:xhtml": "http://www.w3.org/1999/xhtml", - "xml:lang": "en-US", - "category": "general" - }, - "value": [ - 1, - { - "text": 7, - "selector": "7" - }, - { - "text": 5, - "selector": "5" - }, - { - "text": 2, - "selector": "2" - }, - { - "text": 1, - "selector": "1" - }, - { - "text": 0, - "selector": "0" - } - ] - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:30", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204419", - "title": "The Red Hat Enterprise Linux operating system must be configured so that passwords are restricted to a 24 hours/1 day minimum lifetime.", - "desc": "Enforcing a minimum password lifetime helps to prevent repeated password changes to defeat the password reuse or history enforcement requirement. If users are allowed to immediately and continually change their password, the password could be repeatedly changed in a short period of time to defeat the organization's policy regarding password reuse.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:86551", - "label": "check" - }, - { - "data": "Configure non-compliant accounts to enforce a 24 hours/1 day minimum password lifetime:\n\n# chage -m 1 [user]", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000198" - ], - "nist": [ - "IA-5 (1) (d)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Enforcing a minimum password lifetime helps to prevent repeated password changes to defeat the password reuse or history enforcement requirement. If users are allowed to immediately and continually change their password, the password could be repeatedly changed in a short period of time to defeat the organization's policy regarding password reuse.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204419", - "group_title": "SRG-OS-000075-GPOS-00043", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204419r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:86551", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4543r88450_fix", - "fixtext_fixref": "F-4543r88450_fix", - "ident": [ - { - "text": "SV-86551", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71927", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000198", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-010240", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204419r603261_rule", - "time": "2021-12-17T10:39:30", - "severity": "medium", - "version": "RHEL-07-010240", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "SV-86551", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71927", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000198", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:86551", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:30", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204420", - "title": "The Red Hat Enterprise Linux operating system must be configured so that passwords for new users are restricted to a 60-day maximum lifetime.", - "desc": "Any password, no matter how complex, can eventually be cracked. Therefore, passwords need to be changed periodically. If the operating system does not limit the lifetime of passwords and force users to change their passwords, there is the risk that the operating system passwords could be compromised.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:453", - "label": "check" - }, - { - "data": "Configure the operating system to enforce a 60-day maximum password lifetime restriction.\n\nAdd the following line in \"/etc/login.defs\" (or modify the line to have the required value):\n\nPASS_MAX_DAYS 60", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000199" - ], - "nist": [ - "IA-5 (1) (d)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Any password, no matter how complex, can eventually be cracked. Therefore, passwords need to be changed periodically. If the operating system does not limit the lifetime of passwords and force users to change their passwords, there is the risk that the operating system passwords could be compromised.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204420", - "group_title": "SRG-OS-000076-GPOS-00044", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204420r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-export": { - "export-name": "oval:mil.disa.stig.rhel7:var:3793", - "value-id": "xccdf_mil.disa.stig_value_var_accounts_maximum_age_login_defs" - }, - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:453", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4544r88453_fix", - "fixtext_fixref": "F-4544r88453_fix", - "ident": [ - { - "text": "CCE-27051-2", - "system": "http://cce.mitre.org" - }, - { - "text": "V-71929", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86553", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000199", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-010250", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204420r603261_rule", - "time": "2021-12-17T10:39:30", - "severity": "medium", - "version": "RHEL-07-010250", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-27051-2", - "system": "http://cce.mitre.org" - }, - { - "text": "V-71929", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86553", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000199", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-export": { - "export-name": "oval:mil.disa.stig.rhel7:var:3793", - "value-id": "xccdf_mil.disa.stig_value_var_accounts_maximum_age_login_defs" - }, - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:453", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - }, - "value": { - "id": "xccdf_mil.disa.stig_value_var_accounts_maximum_age_login_defs", - "type": "number", - "title": { - "text": "maximum password age", - "xmlns:xhtml": "http://www.w3.org/1999/xhtml", - "xml:lang": "en-US" - }, - "description": { - "text": "Maximum age of password in days", - "xmlns:xhtml": "http://www.w3.org/1999/xhtml", - "xml:lang": "en-US" - }, - "warning": { - "text": "This will only apply to newly created accounts", - "xmlns:xhtml": "http://www.w3.org/1999/xhtml", - "xml:lang": "en-US", - "category": "general" - }, - "value": [ - 60, - { - "text": 60, - "selector": "60" - }, - { - "text": 90, - "selector": "90" - }, - { - "text": 120, - "selector": "120" - }, - { - "text": 180, - "selector": "180" - } - ] - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:30", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204421", - "title": "The Red Hat Enterprise Linux operating system must be configured so that existing passwords are restricted to a 60-day maximum lifetime.", - "desc": "Any password, no matter how complex, can eventually be cracked. Therefore, passwords need to be changed periodically. If the operating system does not limit the lifetime of passwords and force users to change their passwords, there is the risk that the operating system passwords could be compromised.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:86555", - "label": "check" - }, - { - "data": "Configure non-compliant accounts to enforce a 60-day maximum password lifetime restriction.\n\n# chage -M 60 [user]", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000199" - ], - "nist": [ - "IA-5 (1) (d)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Any password, no matter how complex, can eventually be cracked. Therefore, passwords need to be changed periodically. If the operating system does not limit the lifetime of passwords and force users to change their passwords, there is the risk that the operating system passwords could be compromised.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204421", - "group_title": "SRG-OS-000076-GPOS-00044", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204421r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:86555", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4545r88456_fix", - "fixtext_fixref": "F-4545r88456_fix", - "ident": [ - { - "text": "V-71931", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86555", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000199", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-010260", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204421r603261_rule", - "time": "2021-12-17T10:39:30", - "severity": "medium", - "version": "RHEL-07-010260", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "V-71931", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86555", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000199", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:86555", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:30", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204422", - "title": "The Red Hat Enterprise Linux operating system must be configured so that passwords are prohibited from reuse for a minimum of five generations.", - "desc": "Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. If the information system or application allows the user to consecutively reuse their password when that password has exceeded its defined lifetime, the end result is a password that is not changed per policy requirements.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:486", - "label": "check" - }, - { - "data": "Configure the operating system to prohibit password reuse for a minimum of five generations.\n\nAdd the following line in \"/etc/pam.d/system-auth\" and \"/etc/pam.d/password-auth\" (or modify the line to have the required value):\n\npassword requisite pam_pwhistory.so use_authtok remember=5 retry=3\n \nNote: Manual changes to the listed files may be overwritten by the \"authconfig\" program. The \"authconfig\" program should not be used to update the configurations listed in this requirement.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000200" - ], - "nist": [ - "IA-5 (1) (e)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. If the information system or application allows the user to consecutively reuse their password when that password has exceeded its defined lifetime, the end result is a password that is not changed per policy requirements.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204422", - "group_title": "SRG-OS-000077-GPOS-00045", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204422r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-export": { - "export-name": "oval:mil.disa.stig.rhel7:var:3806", - "value-id": "xccdf_mil.disa.stig_value_var_password_pam_unix_remember" - }, - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:486", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4546r88459_fix", - "fixtext_fixref": "F-4546r88459_fix", - "ident": [ - { - "text": "CCE-26923-3", - "system": "http://cce.mitre.org" - }, - { - "text": "V-71933", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86557", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000200", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-010270", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204422r603261_rule", - "time": "2021-12-17T10:39:30", - "severity": "medium", - "version": "RHEL-07-010270", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-26923-3", - "system": "http://cce.mitre.org" - }, - { - "text": "V-71933", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86557", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000200", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-export": { - "export-name": "oval:mil.disa.stig.rhel7:var:3806", - "value-id": "xccdf_mil.disa.stig_value_var_password_pam_unix_remember" - }, - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:486", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - }, - "value": { - "id": "xccdf_mil.disa.stig_value_var_password_pam_unix_remember", - "operator": "equals", - "type": "number", - "title": { - "text": "remember", - "xmlns:xhtml": "http://www.w3.org/1999/xhtml", - "xml:lang": "en-US" - }, - "description": { - "text": "The last n passwords for each user are saved in /etc/security/opasswd in order to force password change history and keep the user from alternating between the same password too frequently.", - "xmlns:xhtml": "http://www.w3.org/1999/xhtml", - "xml:lang": "en-US" - }, - "value": [ - 5, - { - "text": 0, - "selector": "0" - }, - { - "text": 4, - "selector": "4" - }, - { - "text": 5, - "selector": "5" - }, - { - "text": 10, - "selector": "10" - }, - { - "text": 24, - "selector": "24" - } - ] - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:30", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204423", - "title": "The Red Hat Enterprise Linux operating system must be configured so that passwords are a minimum of 15 characters in length.", - "desc": "The shorter the password, the lower the number of possible combinations that need to be tested before the password is compromised.\n\nPassword complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. Password length is one factor of several that helps to determine strength and how long it takes to crack a password. Use of more characters in a password helps to exponentially increase the time and/or resources required to compromise the password.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:476", - "label": "check" - }, - { - "data": "Configure operating system to enforce a minimum 15-character password length.\n\nAdd the following line to \"/etc/security/pwquality.conf\" (or modify the line to have the required value):\n\nminlen = 15", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000205" - ], - "nist": [ - "IA-5 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"The shorter the password, the lower the number of possible combinations that need to be tested before the password is compromised.\\n\\nPassword complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. Password length is one factor of several that helps to determine strength and how long it takes to crack a password. Use of more characters in a password helps to exponentially increase the time and/or resources required to compromise the password.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204423", - "group_title": "SRG-OS-000078-GPOS-00046", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204423r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-export": { - "export-name": "oval:mil.disa.stig.rhel7:var:3802", - "value-id": "xccdf_mil.disa.stig_value_var_password_pam_minlen" - }, - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:476", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4547r88462_fix", - "fixtext_fixref": "F-4547r88462_fix", - "ident": [ - { - "text": "CCE-27293-0", - "system": "http://cce.mitre.org" - }, - { - "text": "V-71935", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86559", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000205", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-010280", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204423r603261_rule", - "time": "2021-12-17T10:39:30", - "severity": "medium", - "version": "RHEL-07-010280", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-27293-0", - "system": "http://cce.mitre.org" - }, - { - "text": "V-71935", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86559", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000205", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-export": { - "export-name": "oval:mil.disa.stig.rhel7:var:3802", - "value-id": "xccdf_mil.disa.stig_value_var_password_pam_minlen" - }, - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:476", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - }, - "value": { - "id": "xccdf_mil.disa.stig_value_var_password_pam_minlen", - "operator": "equals", - "type": "number", - "title": { - "text": "minlen", - "xmlns:xhtml": "http://www.w3.org/1999/xhtml", - "xml:lang": "en-US" - }, - "description": { - "text": "Minimum number of characters in password", - "xmlns:xhtml": "http://www.w3.org/1999/xhtml", - "xml:lang": "en-US" - }, - "value": [ - 15, - { - "text": 6, - "selector": "6" - }, - { - "text": 7, - "selector": "7" - }, - { - "text": 8, - "selector": "8" - }, - { - "text": 10, - "selector": "10" - }, - { - "text": 12, - "selector": "12" - }, - { - "text": 14, - "selector": "14" - }, - { - "text": 15, - "selector": "15" - } - ] - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:30", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204424", - "title": "The Red Hat Enterprise Linux operating system must not have accounts configured with blank or null passwords.", - "desc": "If an account has an empty password, anyone could log on and run commands with the privileges of that account. Accounts with empty passwords should never be used in operational environments.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:1229", - "label": "check" - }, - { - "data": "If an account is configured for password authentication but does not have an assigned password, it may be possible to log on to the account without authenticating.\n\nRemove any instances of the \"nullok\" option in \"/etc/pam.d/system-auth\" and \"/etc/pam.d/password-auth\" to prevent logons with empty passwords.\n\nNote: Manual changes to the listed files may be overwritten by the \"authconfig\" program. The \"authconfig\" program should not be used to update the configurations listed in this requirement.", - "label": "fix" - } - ], - "impact": 0.7, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "high", - "description": "{\"VulnDiscussion\":\"If an account has an empty password, anyone could log on and run commands with the privileges of that account. Accounts with empty passwords should never be used in operational environments.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204424", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204424r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:1229", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4548r88465_fix", - "fixtext_fixref": "F-4548r88465_fix", - "ident": [ - { - "text": "CCE-27286-4", - "system": "http://cce.mitre.org" - }, - { - "text": "V-71937", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86561", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-010290", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204424r603261_rule", - "time": "2021-12-17T10:39:30", - "severity": "high", - "version": "RHEL-07-010290", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-27286-4", - "system": "http://cce.mitre.org" - }, - { - "text": "V-71937", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86561", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:1229", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:30", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204425", - "title": "The Red Hat Enterprise Linux operating system must be configured so that the SSH daemon does not allow authentication using an empty password.", - "desc": "Configuring this setting for the SSH daemon provides additional assurance that remote logon via SSH will require a password, even in the event of misconfiguration elsewhere.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:1375", - "label": "check" - }, - { - "data": "To explicitly disallow remote logon from accounts with empty passwords, add or correct the following line in \"/etc/ssh/sshd_config\":\n\nPermitEmptyPasswords no\n\nThe SSH service must be restarted for changes to take effect. Any accounts with empty passwords should be disabled immediately, and PAM configuration should prevent users from being able to assign themselves empty passwords.", - "label": "fix" - } - ], - "impact": 0.7, - "refs": [], - "tags": { - "cci": [ - "CCI-000766" - ], - "nist": [ - "IA-2 (2)" - ], - "severity": "high", - "description": "{\"VulnDiscussion\":\"Configuring this setting for the SSH daemon provides additional assurance that remote logon via SSH will require a password, even in the event of misconfiguration elsewhere.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204425", - "group_title": "SRG-OS-000106-GPOS-00053", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204425r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:1375", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4549r88468_fix", - "fixtext_fixref": "F-4549r88468_fix", - "ident": [ - { - "text": "CCE-27471-2", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86563", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71939", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000766", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-010300", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204425r603261_rule", - "time": "2021-12-17T10:39:30", - "severity": "high", - "version": "RHEL-07-010300", - "weight": "10.000000", - "result": "pass", - "ident": [ - { - "text": "CCE-27471-2", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86563", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71939", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000766", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:1375", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:30", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204426", - "title": "The Red Hat Enterprise Linux operating system must disable account identifiers (individuals, groups, roles, and devices) if the password expires.", - "desc": "Inactive identifiers pose a risk to systems and applications because attackers may exploit an inactive identifier and potentially obtain undetected access to the system. Owners of inactive accounts will not notice if unauthorized access to their user account has been obtained.\n\nOperating systems need to track periods of inactivity and disable application identifiers after zero days of inactivity.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:443", - "label": "check" - }, - { - "data": "Configure the operating system to disable account identifiers (individuals, groups, roles, and devices) after the password expires.\n\nAdd the following line to \"/etc/default/useradd\" (or modify the line to have the required value):\n\nINACTIVE=0", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000795" - ], - "nist": [ - "IA-4 e" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Inactive identifiers pose a risk to systems and applications because attackers may exploit an inactive identifier and potentially obtain undetected access to the system. Owners of inactive accounts will not notice if unauthorized access to their user account has been obtained.\\n\\nOperating systems need to track periods of inactivity and disable application identifiers after zero days of inactivity.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204426", - "group_title": "SRG-OS-000118-GPOS-00060", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204426r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-export": { - "export-name": "oval:mil.disa.stig.rhel7:var:3790", - "value-id": "xccdf_mil.disa.stig_value_var_account_disable_post_pw_expiration" - }, - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:443", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4550r88471_fix", - "fixtext_fixref": "F-4550r88471_fix", - "ident": [ - { - "text": "CCE-27471-2", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86565", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71941", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000795", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-010310", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204426r603261_rule", - "time": "2021-12-17T10:39:30", - "severity": "medium", - "version": "RHEL-07-010310", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-27471-2", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86565", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71941", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000795", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-export": { - "export-name": "oval:mil.disa.stig.rhel7:var:3790", - "value-id": "xccdf_mil.disa.stig_value_var_account_disable_post_pw_expiration" - }, - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:443", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - }, - "value": { - "id": "xccdf_mil.disa.stig_value_var_account_disable_post_pw_expiration", - "type": "number", - "title": { - "text": "number of days after a password expires until the account is permanently disabled", - "xmlns:xhtml": "http://www.w3.org/1999/xhtml", - "xml:lang": "en-US" - }, - "description": { - "text": "The number of days to wait after a password expires, until the account will be permanently disabled.", - "xmlns:xhtml": "http://www.w3.org/1999/xhtml", - "xml:lang": "en-US" - }, - "warning": { - "text": "This will only apply to newly created accounts", - "xmlns:xhtml": "http://www.w3.org/1999/xhtml", - "xml:lang": "en-US", - "category": "general" - }, - "value": [ - 0, - { - "text": 0, - "selector": "0" - }, - { - "text": 30, - "selector": "30" - }, - { - "text": 35, - "selector": "35" - }, - { - "text": 40, - "selector": "40" - }, - { - "text": 60, - "selector": "60" - }, - { - "text": 90, - "selector": "90" - }, - { - "text": 180, - "selector": "180" - } - ] - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:30", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204429", - "title": "The Red Hat Enterprise Linux operating system must be configured so that users must provide a password for privilege escalation.", - "desc": "Without re-authentication, users may access resources or perform tasks for which they do not have authorization. \n\nWhen operating systems provide the capability to escalate a functional capability, it is critical the user re-authenticate.\n\nSatisfies: SRG-OS-000373-GPOS-00156, SRG-OS-000373-GPOS-00157, SRG-OS-000373-GPOS-00158", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:176", - "label": "check" - }, - { - "data": "Configure the operating system to require users to supply a password for privilege escalation.\n\nCheck the configuration of the \"/etc/sudoers\" file with the following command:\n# visudo\n\nRemove any occurrences of \"NOPASSWD\" tags in the file. \n\nCheck the configuration of the /etc/sudoers.d/* files with the following command:\n# grep -i nopasswd /etc/sudoers.d/*\n\nRemove any occurrences of \"NOPASSWD\" tags in the file.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-002038" - ], - "nist": [ - "IA-11" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without re-authentication, users may access resources or perform tasks for which they do not have authorization. \\n\\nWhen operating systems provide the capability to escalate a functional capability, it is critical the user re-authenticate.\\n\\nSatisfies: SRG-OS-000373-GPOS-00156, SRG-OS-000373-GPOS-00157, SRG-OS-000373-GPOS-00158\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204429", - "group_title": "SRG-OS-000373-GPOS-00156", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204429r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:176", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-36303r602619_fix", - "fixtext_fixref": "F-36303r602619_fix", - "ident": [ - { - "text": "CCE-80351-0", - "system": "http://cce.mitre.org" - }, - { - "text": "V-71947", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86571", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-002038", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-010340", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204429r603261_rule", - "time": "2021-12-17T10:39:30", - "severity": "medium", - "version": "RHEL-07-010340", - "weight": "10.000000", - "result": "pass", - "ident": [ - { - "text": "CCE-80351-0", - "system": "http://cce.mitre.org" - }, - { - "text": "V-71947", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86571", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-002038", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:176", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:30", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204430", - "title": "The Red Hat Enterprise Linux operating system must be configured so that users must re-authenticate for privilege escalation.", - "desc": "Without re-authentication, users may access resources or perform tasks for which they do not have authorization. \n\nWhen operating systems provide the capability to escalate a functional capability, it is critical the user reauthenticate.\n\nSatisfies: SRG-OS-000373-GPOS-00156, SRG-OS-000373-GPOS-00157, SRG-OS-000373-GPOS-00158", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:173", - "label": "check" - }, - { - "data": "Configure the operating system to require users to reauthenticate for privilege escalation.\n\nCheck the configuration of the \"/etc/sudoers\" file with the following command:\n\n# visudo\nRemove any occurrences of \"!authenticate\" tags in the file.\n\nCheck the configuration of the \"/etc/sudoers.d/*\" files with the following command:\n\n# grep -i authenticate /etc/sudoers /etc/sudoers.d/*\nRemove any occurrences of \"!authenticate\" tags in the file(s).", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-002038" - ], - "nist": [ - "IA-11" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without re-authentication, users may access resources or perform tasks for which they do not have authorization. \\n\\nWhen operating systems provide the capability to escalate a functional capability, it is critical the user reauthenticate.\\n\\nSatisfies: SRG-OS-000373-GPOS-00156, SRG-OS-000373-GPOS-00157, SRG-OS-000373-GPOS-00158\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204430", - "group_title": "SRG-OS-000373-GPOS-00156", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204430r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:173", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4554r88483_fix", - "fixtext_fixref": "F-4554r88483_fix", - "ident": [ - { - "text": "CCE-80350-2", - "system": "http://cce.mitre.org" - }, - { - "text": "V-71949", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86573", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-002038", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-010350", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204430r603261_rule", - "time": "2021-12-17T10:39:30", - "severity": "medium", - "version": "RHEL-07-010350", - "weight": "10.000000", - "result": "pass", - "ident": [ - { - "text": "CCE-80350-2", - "system": "http://cce.mitre.org" - }, - { - "text": "V-71949", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86573", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-002038", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:173", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:30", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204431", - "title": "The Red Hat Enterprise Linux operating system must be configured so that the delay between logon prompts following a failed console logon attempt is at least four seconds.", - "desc": "Configuring the operating system to implement organization-wide security implementation guides and security checklists verifies compliance with federal standards and establishes a common security baseline across DoD that reflects the most restrictive security posture consistent with operational requirements.\n\nConfiguration settings are the set of parameters that can be changed in hardware, software, or firmware components of the system that affect the security posture and/or functionality of the system. Security-related parameters are those parameters impacting the security state of the system, including the parameters required to satisfy other security control requirements. Security-related parameters include, for example, registry settings; account, file, and directory permission settings; and settings for functions, ports, protocols, services, and remote connections.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:101", - "label": "check" - }, - { - "data": "Configure the operating system to enforce a delay of at least four seconds between logon prompts following a failed console logon attempt.\n\nModify the \"/etc/login.defs\" file to set the \"FAIL_DELAY\" parameter to \"4\" or greater:\n\nFAIL_DELAY 4", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Configuring the operating system to implement organization-wide security implementation guides and security checklists verifies compliance with federal standards and establishes a common security baseline across DoD that reflects the most restrictive security posture consistent with operational requirements.\\n\\nConfiguration settings are the set of parameters that can be changed in hardware, software, or firmware components of the system that affect the security posture and/or functionality of the system. Security-related parameters are those parameters impacting the security state of the system, including the parameters required to satisfy other security control requirements. Security-related parameters include, for example, registry settings; account, file, and directory permission settings; and settings for functions, ports, protocols, services, and remote connections.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204431", - "group_title": "SRG-OS-000480-GPOS-00226", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204431r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-export": { - "export-name": "oval:mil.disa.stig.rhel7:var:3761", - "value-id": "xccdf_mil.disa.stig_value_var_accounts_fail_delay" - }, - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:101", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4555r88486_fix", - "fixtext_fixref": "F-4555r88486_fix", - "ident": [ - { - "text": "CCE-80352-8", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86575", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71951", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-010430", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204431r603261_rule", - "time": "2021-12-17T10:39:30", - "severity": "medium", - "version": "RHEL-07-010430", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-80352-8", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86575", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71951", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-export": { - "export-name": "oval:mil.disa.stig.rhel7:var:3761", - "value-id": "xccdf_mil.disa.stig_value_var_accounts_fail_delay" - }, - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:101", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - }, - "value": { - "id": "xccdf_mil.disa.stig_value_var_accounts_fail_delay", - "operator": "equals", - "type": "number", - "title": { - "text": "Maximum login attempts delay", - "xmlns:xhtml": "http://www.w3.org/1999/xhtml", - "xml:lang": "en-US" - }, - "description": { - "text": "Maximum time in seconds between fail login attempts before re-prompting.", - "xmlns:xhtml": "http://www.w3.org/1999/xhtml", - "xml:lang": "en-US" - }, - "value": [ - 4, - { - "text": 1, - "selector": "1" - }, - { - "text": 2, - "selector": "2" - }, - { - "text": 3, - "selector": "3" - }, - { - "text": 4, - "selector": "4" - }, - { - "text": 5, - "selector": "5" - } - ] - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:30", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204432", - "title": "The Red Hat Enterprise Linux operating system must not allow an unattended or automatic logon to the system via a graphical user interface.", - "desc": "Failure to restrict system access to authenticated users negatively impacts operating system security.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:1119", - "label": "check" - }, - { - "data": "Configure the operating system to not allow an unattended or automatic logon to the system via a graphical user interface.\n\nNote: If the system does not have GNOME installed, this requirement is Not Applicable.\n\nAdd or edit the line for the \"AutomaticLoginEnable\" parameter in the [daemon] section of the \"/etc/gdm/custom.conf\" file to \"false\":\n\n[daemon]\nAutomaticLoginEnable=false", - "label": "fix" - } - ], - "impact": 0.7, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "high", - "description": "{\"VulnDiscussion\":\"Failure to restrict system access to authenticated users negatively impacts operating system security.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204432", - "group_title": "SRG-OS-000480-GPOS-00229", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204432r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:1119", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4556r88489_fix", - "fixtext_fixref": "F-4556r88489_fix", - "ident": [ - { - "text": "CCE-80104-3", - "system": "http://cce.mitre.org" - }, - { - "text": "V-71953", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86577", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-010440", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204432r603261_rule", - "time": "2021-12-17T10:39:30", - "severity": "high", - "version": "RHEL-07-010440", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-80104-3", - "system": "http://cce.mitre.org" - }, - { - "text": "V-71953", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86577", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:1119", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:30", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204433", - "title": "The Red Hat Enterprise Linux operating system must not allow an unrestricted logon to the system.", - "desc": "Failure to restrict system access to authenticated users negatively impacts operating system security.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:1122", - "label": "check" - }, - { - "data": "Configure the operating system to not allow an unrestricted account to log on to the system via a graphical user interface.\n\nNote: If the system does not have GNOME installed, this requirement is Not Applicable.\n\nAdd or edit the line for the \"TimedLoginEnable\" parameter in the [daemon] section of the \"/etc/gdm/custom.conf\" file to \"false\":\n\n[daemon]\nTimedLoginEnable=false", - "label": "fix" - } - ], - "impact": 0.7, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "high", - "description": "{\"VulnDiscussion\":\"Failure to restrict system access to authenticated users negatively impacts operating system security.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204433", - "group_title": "SRG-OS-000480-GPOS-00229", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204433r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:1122", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4557r88492_fix", - "fixtext_fixref": "F-4557r88492_fix", - "ident": [ - { - "text": "CCE-80105-0", - "system": "http://cce.mitre.org" - }, - { - "text": "V-71955", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86579", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-010450", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204433r603261_rule", - "time": "2021-12-17T10:39:30", - "severity": "high", - "version": "RHEL-07-010450", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-80105-0", - "system": "http://cce.mitre.org" - }, - { - "text": "V-71955", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86579", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:1122", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:30", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204434", - "title": "The Red Hat Enterprise Linux operating system must not allow users to override SSH environment variables.", - "desc": "Failure to restrict system access to authenticated users negatively impacts operating system security.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:1385", - "label": "check" - }, - { - "data": "Configure the operating system to not allow users to override environment variables to the SSH daemon.\n\nEdit the \"/etc/ssh/sshd_config\" file to uncomment or add the line for \"PermitUserEnvironment\" keyword and set the value to \"no\":\n\nPermitUserEnvironment no\n\nThe SSH service must be restarted for changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Failure to restrict system access to authenticated users negatively impacts operating system security.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204434", - "group_title": "SRG-OS-000480-GPOS-00229", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204434r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:1385", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4558r88495_fix", - "fixtext_fixref": "F-4558r88495_fix", - "ident": [ - { - "text": "CCE-27363-1", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86581", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71957", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-010460", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204434r603261_rule", - "time": "2021-12-17T10:39:30", - "severity": "medium", - "version": "RHEL-07-010460", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-27363-1", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86581", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71957", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:1385", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:30", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204435", - "title": "The Red Hat Enterprise Linux operating system must not allow a non-certificate trusted host SSH logon to the system.", - "desc": "Failure to restrict system access to authenticated users negatively impacts operating system security.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:1011", - "label": "check" - }, - { - "data": "Configure the operating system to not allow a non-certificate trusted host SSH logon to the system.\n\nEdit the \"/etc/ssh/sshd_config\" file to uncomment or add the line for \"HostbasedAuthentication\" keyword and set the value to \"no\":\n\nHostbasedAuthentication no\n\nThe SSH service must be restarted for changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Failure to restrict system access to authenticated users negatively impacts operating system security.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204435", - "group_title": "SRG-OS-000480-GPOS-00229", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204435r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:1011", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4559r88498_fix", - "fixtext_fixref": "F-4559r88498_fix", - "ident": [ - { - "text": "CCE-27413-4", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86583", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71959", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-010470", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204435r603261_rule", - "time": "2021-12-17T10:39:30", - "severity": "medium", - "version": "RHEL-07-010470", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-27413-4", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86583", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71959", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:1011", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:30", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204437", - "title": "The Red Hat Enterprise Linux operating system must require authentication upon booting into single-user and maintenance modes.", - "desc": "If the system does not require valid root authentication before it boots into single-user or maintenance mode, anyone who invokes single-user or maintenance mode is granted privileged access to all files on the system.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:92519", - "label": "check" - }, - { - "data": "Configure the operating system to require authentication upon booting into single-user and maintenance modes.\n\nAdd or modify the \"ExecStart\" line in \"/usr/lib/systemd/system/rescue.service\" to include \"/usr/sbin/sulogin\":\n\nExecStart=-/bin/sh -c \"/usr/sbin/sulogin; /usr/bin/systemctl --fail --no-block default\"", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000213" - ], - "nist": [ - "AC-3" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"If the system does not require valid root authentication before it boots into single-user or maintenance mode, anyone who invokes single-user or maintenance mode is granted privileged access to all files on the system.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204437", - "group_title": "SRG-OS-000080-GPOS-00048", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204437r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:92519", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4561r88504_fix", - "fixtext_fixref": "F-4561r88504_fix", - "ident": [ - { - "text": "V-77823", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-92519", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000213", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-010481", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204437r603261_rule", - "time": "2021-12-17T10:39:30", - "severity": "medium", - "version": "RHEL-07-010481", - "weight": "10.000000", - "result": "pass", - "ident": [ - { - "text": "V-77823", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-92519", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000213", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:92519", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:30", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204438", - "title": "Red Hat Enterprise Linux operating systems version 7.2 or newer with a Basic Input/Output System (BIOS) must require authentication upon booting into single-user and maintenance modes.", - "desc": "If the system does not require valid authentication before it boots into single-user or maintenance mode, anyone who invokes single-user or maintenance mode is granted privileged access to all files on the system. GRUB 2 is the default boot loader for RHEL 7 and is designed to require a password to boot into single-user mode or make modifications to the boot menu.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:95717", - "label": "check" - }, - { - "data": "Configure the system to encrypt the boot password for the grub superusers account with the grub2-setpassword command, which creates/overwrites the /boot/grub2/user.cfg file.\n\nGenerate an encrypted grub2 password for the grub superusers account with the following command:\n \n$ sudo grub2-setpassword\nEnter password:\nConfirm password:", - "label": "fix" - } - ], - "impact": 0.7, - "refs": [], - "tags": { - "cci": [ - "CCI-000213" - ], - "nist": [ - "AC-3" - ], - "severity": "high", - "description": "{\"VulnDiscussion\":\"If the system does not require valid authentication before it boots into single-user or maintenance mode, anyone who invokes single-user or maintenance mode is granted privileged access to all files on the system. GRUB 2 is the default boot loader for RHEL 7 and is designed to require a password to boot into single-user mode or make modifications to the boot menu.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204438", - "group_title": "SRG-OS-000080-GPOS-00048", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204438r744095_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:95717", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4562r744094_fix", - "fixtext_fixref": "F-4562r744094_fix", - "ident": [ - { - "text": "CCE-27309-4", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-95717", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-81005", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000213", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-010482", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204438r744095_rule", - "time": "2021-12-17T10:39:30", - "severity": "high", - "version": "RHEL-07-010482", - "weight": "10.000000", - "result": "pass", - "ident": [ - { - "text": "CCE-27309-4", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-95717", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-81005", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000213", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:95717", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:30", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204440", - "title": "Red Hat Enterprise Linux operating systems version 7.2 or newer using Unified Extensible Firmware Interface (UEFI) must require authentication upon booting into single-user and maintenance modes.", - "desc": "If the system does not require valid authentication before it boots into single-user or maintenance mode, anyone who invokes single-user or maintenance mode is granted privileged access to all files on the system. GRUB 2 is the default boot loader for RHEL 7 and is designed to require a password to boot into single-user mode or make modifications to the boot menu.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:95719", - "label": "check" - }, - { - "data": "Configure the system to encrypt the boot password for the grub superusers account with the grub2-setpassword command, which creates/overwrites the /boot/efi/EFI/redhat/user.cfg file.\n\nGenerate an encrypted grub2 password for the grub superusers account with the following command:\n\n$ sudo grub2-setpassword\nEnter password:\nConfirm password:", - "label": "fix" - } - ], - "impact": 0.7, - "refs": [], - "tags": { - "cci": [ - "CCI-000213" - ], - "nist": [ - "AC-3" - ], - "severity": "high", - "description": "{\"VulnDiscussion\":\"If the system does not require valid authentication before it boots into single-user or maintenance mode, anyone who invokes single-user or maintenance mode is granted privileged access to all files on the system. GRUB 2 is the default boot loader for RHEL 7 and is designed to require a password to boot into single-user mode or make modifications to the boot menu.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204440", - "group_title": "SRG-OS-000080-GPOS-00048", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204440r744098_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:95719", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4564r744097_fix", - "fixtext_fixref": "F-4564r744097_fix", - "ident": [ - { - "text": "CCE-80354-4", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-95719", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-81007", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000213", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-010491", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204440r744098_rule", - "time": "2021-12-17T10:39:30", - "severity": "high", - "version": "RHEL-07-010491", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-80354-4", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-95719", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-81007", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000213", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:95719", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:30", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204442", - "title": "The Red Hat Enterprise Linux operating system must not have the rsh-server package installed.", - "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\n\nThe rsh-server service provides an unencrypted remote access service that does not provide for the confidentiality and integrity of user passwords or the remote session and has very weak authentication.\n\nIf a privileged user were to log on using this service, the privileged user password could be compromised.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:1271", - "label": "check" - }, - { - "data": "Configure the operating system to disable non-essential capabilities by removing the rsh-server package from the system with the following command:\n\n# yum remove rsh-server", - "label": "fix" - } - ], - "impact": 0.7, - "refs": [], - "tags": { - "cci": [ - "CCI-000381" - ], - "nist": [ - "CM-7 a" - ], - "severity": "high", - "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\\n\\nThe rsh-server service provides an unencrypted remote access service that does not provide for the confidentiality and integrity of user passwords or the remote session and has very weak authentication.\\n\\nIf a privileged user were to log on using this service, the privileged user password could be compromised.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204442", - "group_title": "SRG-OS-000095-GPOS-00049", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204442r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:1271", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4566r88519_fix", - "fixtext_fixref": "F-4566r88519_fix", - "ident": [ - { - "text": "CCE-27342-5", - "system": "http://cce.mitre.org" - }, - { - "text": "V-71967", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86591", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000381", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-020000", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204442r603261_rule", - "time": "2021-12-17T10:39:30", - "severity": "high", - "version": "RHEL-07-020000", - "weight": "10.000000", - "result": "pass", - "ident": [ - { - "text": "CCE-27342-5", - "system": "http://cce.mitre.org" - }, - { - "text": "V-71967", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86591", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000381", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:1271", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:30", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204443", - "title": "The Red Hat Enterprise Linux operating system must not have the ypserv package installed.", - "desc": "Removing the \"ypserv\" package decreases the risk of the accidental (or intentional) activation of NIS or NIS+ services.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:1309", - "label": "check" - }, - { - "data": "Configure the operating system to disable non-essential capabilities by removing the \"ypserv\" package from the system with the following command:\n\n# yum remove ypserv", - "label": "fix" - } - ], - "impact": 0.7, - "refs": [], - "tags": { - "cci": [ - "CCI-000381" - ], - "nist": [ - "CM-7 a" - ], - "severity": "high", - "description": "{\"VulnDiscussion\":\"Removing the \\\"ypserv\\\" package decreases the risk of the accidental (or intentional) activation of NIS or NIS+ services.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204443", - "group_title": "SRG-OS-000095-GPOS-00049", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204443r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:1309", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4567r88522_fix", - "fixtext_fixref": "F-4567r88522_fix", - "ident": [ - { - "text": "CCE-27399-5", - "system": "http://cce.mitre.org" - }, - { - "text": "V-71969", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86593", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000381", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-020010", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204443r603261_rule", - "time": "2021-12-17T10:39:30", - "severity": "high", - "version": "RHEL-07-020010", - "weight": "10.000000", - "result": "pass", - "ident": [ - { - "text": "CCE-27399-5", - "system": "http://cce.mitre.org" - }, - { - "text": "V-71969", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86593", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000381", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:1309", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:30", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204445", - "title": "The Red Hat Enterprise Linux operating system must be configured so that a file integrity tool verifies the baseline operating system configuration at least weekly.", - "desc": "Unauthorized changes to the baseline configuration could make the system vulnerable to various attacks or allow unauthorized access to the operating system. Changes to operating system configurations can have unintended side effects, some of which may be relevant to security.\n\nDetecting such changes and providing an automated response can help avoid unintended, negative consequences that could ultimately affect the security state of the operating system. The operating system's Information Management Officer (IMO)/Information System Security Officer (ISSO) and System Administrators (SAs) must be notified via email and/or monitoring system trap when there is an unauthorized modification of a configuration item.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:525", - "label": "check" - }, - { - "data": "Configure the file integrity tool to run automatically on the system at least weekly. The following example output is generic. It will set cron to run AIDE daily, but other file integrity tools may be used: \n\n# more /etc/cron.daily/aide\n#!/bin/bash\n\n/usr/sbin/aide --check | /bin/mail -s \"$HOSTNAME - Daily aide integrity check run\" root@sysname.mil", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001744" - ], - "nist": [ - "CM-3 (5)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Unauthorized changes to the baseline configuration could make the system vulnerable to various attacks or allow unauthorized access to the operating system. Changes to operating system configurations can have unintended side effects, some of which may be relevant to security.\\n\\nDetecting such changes and providing an automated response can help avoid unintended, negative consequences that could ultimately affect the security state of the operating system. The operating system's Information Management Officer (IMO)/Information System Security Officer (ISSO) and System Administrators (SAs) must be notified via email and/or monitoring system trap when there is an unauthorized modification of a configuration item.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204445", - "group_title": "SRG-OS-000363-GPOS-00150", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204445r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:525", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-36304r602622_fix", - "fixtext_fixref": "F-36304r602622_fix", - "ident": [ - { - "text": "CCE-26952-2", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86597", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71973", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001744", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-020030", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204445r603261_rule", - "time": "2021-12-17T10:39:30", - "severity": "medium", - "version": "RHEL-07-020030", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-26952-2", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86597", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71973", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001744", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:525", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:30", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204447", - "title": "The Red Hat Enterprise Linux operating system must prevent the installation of software, patches, service packs, device drivers, or operating system components from a repository without verification they have been digitally signed using a certificate that is issued by a Certificate Authority (CA) that is recognized and approved by the organization.", - "desc": "Changes to any software components can have significant effects on the overall security of the operating system. This requirement ensures the software has not been tampered with and that it has been provided by a trusted vendor.\n\nAccordingly, patches, service packs, device drivers, or operating system components must be signed with a certificate recognized and approved by the organization.\n\nVerifying the authenticity of the software prior to installation validates the integrity of the patch or upgrade received from a vendor. This verifies the software has not been tampered with and that it has been provided by a trusted vendor. Self-signed certificates are disallowed by this requirement. The operating system should not have to verify the software again. This requirement does not mandate DoD certificates for this purpose; however, the certificate used to verify the software must be from an approved CA.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:1027", - "label": "check" - }, - { - "data": "Configure the operating system to verify the signature of packages from a repository prior to install by setting the following option in the \"/etc/yum.conf\" file:\n\ngpgcheck=1", - "label": "fix" - } - ], - "impact": 0.7, - "refs": [], - "tags": { - "cci": [ - "CCI-001749" - ], - "nist": [ - "CM-5 (3)" - ], - "severity": "high", - "description": "{\"VulnDiscussion\":\"Changes to any software components can have significant effects on the overall security of the operating system. This requirement ensures the software has not been tampered with and that it has been provided by a trusted vendor.\\n\\nAccordingly, patches, service packs, device drivers, or operating system components must be signed with a certificate recognized and approved by the organization.\\n\\nVerifying the authenticity of the software prior to installation validates the integrity of the patch or upgrade received from a vendor. This verifies the software has not been tampered with and that it has been provided by a trusted vendor. Self-signed certificates are disallowed by this requirement. The operating system should not have to verify the software again. This requirement does not mandate DoD certificates for this purpose; however, the certificate used to verify the software must be from an approved CA.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204447", - "group_title": "SRG-OS-000366-GPOS-00153", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204447r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:1027", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4571r88534_fix", - "fixtext_fixref": "F-4571r88534_fix", - "ident": [ - { - "text": "CCE-26989-4", - "system": "http://cce.mitre.org" - }, - { - "text": "V-71977", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86601", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001749", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-020050", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204447r603261_rule", - "time": "2021-12-17T10:39:30", - "severity": "high", - "version": "RHEL-07-020050", - "weight": "10.000000", - "result": "pass", - "ident": [ - { - "text": "CCE-26989-4", - "system": "http://cce.mitre.org" - }, - { - "text": "V-71977", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86601", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001749", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:1027", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:30", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204448", - "title": "The Red Hat Enterprise Linux operating system must prevent the installation of software, patches, service packs, device drivers, or operating system components of local packages without verification they have been digitally signed using a certificate that is issued by a Certificate Authority (CA) that is recognized and approved by the organization.", - "desc": "Changes to any software components can have significant effects on the overall security of the operating system. This requirement ensures the software has not been tampered with and that it has been provided by a trusted vendor.\n\nAccordingly, patches, service packs, device drivers, or operating system components must be signed with a certificate recognized and approved by the organization.\n\nVerifying the authenticity of the software prior to installation validates the integrity of the patch or upgrade received from a vendor. This verifies the software has not been tampered with and that it has been provided by a trusted vendor. Self-signed certificates are disallowed by this requirement. The operating system should not have to verify the software again. This requirement does not mandate DoD certificates for this purpose; however, the certificate used to verify the software must be from an approved CA.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:110", - "label": "check" - }, - { - "data": "Configure the operating system to verify the signature of local packages prior to install by setting the following option in the \"/etc/yum.conf\" file:\n\nlocalpkg_gpgcheck=1", - "label": "fix" - } - ], - "impact": 0.7, - "refs": [], - "tags": { - "cci": [ - "CCI-001749" - ], - "nist": [ - "CM-5 (3)" - ], - "severity": "high", - "description": "{\"VulnDiscussion\":\"Changes to any software components can have significant effects on the overall security of the operating system. This requirement ensures the software has not been tampered with and that it has been provided by a trusted vendor.\\n\\nAccordingly, patches, service packs, device drivers, or operating system components must be signed with a certificate recognized and approved by the organization.\\n\\nVerifying the authenticity of the software prior to installation validates the integrity of the patch or upgrade received from a vendor. This verifies the software has not been tampered with and that it has been provided by a trusted vendor. Self-signed certificates are disallowed by this requirement. The operating system should not have to verify the software again. This requirement does not mandate DoD certificates for this purpose; however, the certificate used to verify the software must be from an approved CA.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204448", - "group_title": "SRG-OS-000366-GPOS-00153", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204448r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:110", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4572r88537_fix", - "fixtext_fixref": "F-4572r88537_fix", - "ident": [ - { - "text": "CCE-80347-8", - "system": "http://cce.mitre.org" - }, - { - "text": "V-71979", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86603", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001749", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-020060", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204448r603261_rule", - "time": "2021-12-17T10:39:30", - "severity": "high", - "version": "RHEL-07-020060", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-80347-8", - "system": "http://cce.mitre.org" - }, - { - "text": "V-71979", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86603", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001749", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:110", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:30", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204449", - "title": "The Red Hat Enterprise Linux operating system must be configured to disable USB mass storage.", - "desc": "USB mass storage permits easy introduction of unknown devices, thereby facilitating malicious activity.\n\nSatisfies: SRG-OS-000114-GPOS-00059, SRG-OS-000378-GPOS-00163, SRG-OS-000480-GPOS-00227", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:1141", - "label": "check" - }, - { - "data": "Configure the operating system to disable the ability to use the USB Storage kernel module.\n\nCreate a file under \"/etc/modprobe.d\" with the following command:\n\n# touch /etc/modprobe.d/usb-storage.conf\n\nAdd the following line to the created file:\n\ninstall usb-storage /bin/true\n\nConfigure the operating system to disable the ability to use USB mass storage devices.\n\n# vi /etc/modprobe.d/blacklist.conf\n\nAdd or update the line:\n\nblacklist usb-storage", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366", - "CCI-000778", - "CCI-001958" - ], - "nist": [ - "CM-6 b", - "IA-3", - "IA-3" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"USB mass storage permits easy introduction of unknown devices, thereby facilitating malicious activity.\\n\\nSatisfies: SRG-OS-000114-GPOS-00059, SRG-OS-000378-GPOS-00163, SRG-OS-000480-GPOS-00227\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204449", - "group_title": "SRG-OS-000114-GPOS-00059", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204449r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:1141", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4573r462538_fix", - "fixtext_fixref": "F-4573r462538_fix", - "ident": [ - { - "text": "SV-86607", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71983", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000778", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001958", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-020100", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204449r603261_rule", - "time": "2021-12-17T10:39:30", - "severity": "medium", - "version": "RHEL-07-020100", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "SV-86607", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71983", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000778", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001958", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:1141", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:30", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204450", - "title": "The Red Hat Enterprise Linux operating system must be configured so that the Datagram Congestion Control Protocol (DCCP) kernel module is disabled unless required.", - "desc": "Disabling DCCP protects the system against exploitation of any flaws in the protocol implementation.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:92517", - "label": "check" - }, - { - "data": "Configure the operating system to disable the ability to use the DCCP kernel module.\n\nCreate a file under \"/etc/modprobe.d\" with the following command:\n\n# touch /etc/modprobe.d/dccp.conf\n\nAdd the following line to the created file:\n\ninstall dccp /bin/true\n\nEnsure that the DCCP module is blacklisted: \n\n# vi /etc/modprobe.d/blacklist.conf\n\nAdd or update the line:\n\nblacklist dccp", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001958" - ], - "nist": [ - "IA-3" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Disabling DCCP protects the system against exploitation of any flaws in the protocol implementation.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204450", - "group_title": "SRG-OS-000378-GPOS-00163", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204450r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:92517", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4574r88543_fix", - "fixtext_fixref": "F-4574r88543_fix", - "ident": [ - { - "text": "V-77821", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-92517", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001958", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-020101", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204450r603261_rule", - "time": "2021-12-17T10:39:30", - "severity": "medium", - "version": "RHEL-07-020101", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "V-77821", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-92517", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001958", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:92517", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:30", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204451", - "title": "The Red Hat Enterprise Linux operating system must disable the file system automounter unless required.", - "desc": "Automatically mounting file systems permits easy introduction of unknown devices, thereby facilitating malicious activity.\n\nSatisfies: SRG-OS-000114-GPOS-00059, SRG-OS-000378-GPOS-00163, SRG-OS-000480-GPOS-00227", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:86609", - "label": "check" - }, - { - "data": "Configure the operating system to disable the ability to automount devices.\n\nTurn off the automount service with the following commands:\n\n# systemctl stop autofs\n# systemctl disable autofs\n\nIf \"autofs\" is required for Network File System (NFS), it must be documented with the ISSO.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366", - "CCI-000778", - "CCI-001958" - ], - "nist": [ - "CM-6 b", - "IA-3", - "IA-3" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Automatically mounting file systems permits easy introduction of unknown devices, thereby facilitating malicious activity.\\n\\nSatisfies: SRG-OS-000114-GPOS-00059, SRG-OS-000378-GPOS-00163, SRG-OS-000480-GPOS-00227\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204451", - "group_title": "SRG-OS-000114-GPOS-00059", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204451r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:86609", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4575r88546_fix", - "fixtext_fixref": "F-4575r88546_fix", - "ident": [ - { - "text": "CCE-27498-5", - "system": "http://cce.mitre.org" - }, - { - "text": "V-71985", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86609", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000778", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001958", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-020110", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204451r603261_rule", - "time": "2021-12-17T10:39:31", - "severity": "medium", - "version": "RHEL-07-020110", - "weight": "10.000000", - "result": "pass", - "ident": [ - { - "text": "CCE-27498-5", - "system": "http://cce.mitre.org" - }, - { - "text": "V-71985", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86609", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000778", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001958", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:86609", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:31", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204452", - "title": "The Red Hat Enterprise Linux operating system must remove all software components after updated versions have been installed.", - "desc": "Previous versions of software components that are not removed from the information system after updates have been installed may be exploited by adversaries. Some information technology products may remove older versions of software automatically from the information system.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:108", - "label": "check" - }, - { - "data": "Configure the operating system to remove all software components after updated versions have been installed.\n\nSet the \"clean_requirements_on_remove\" option to \"1\" in the \"/etc/yum.conf\" file:\n\nclean_requirements_on_remove=1", - "label": "fix" - } - ], - "impact": 0.3, - "refs": [], - "tags": { - "cci": [ - "CCI-002617" - ], - "nist": [ - "SI-2 (6)" - ], - "severity": "low", - "description": "{\"VulnDiscussion\":\"Previous versions of software components that are not removed from the information system after updates have been installed may be exploited by adversaries. Some information technology products may remove older versions of software automatically from the information system.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204452", - "group_title": "SRG-OS-000437-GPOS-00194", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204452r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:108", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4576r88549_fix", - "fixtext_fixref": "F-4576r88549_fix", - "ident": [ - { - "text": "CCE-80346-0", - "system": "http://cce.mitre.org" - }, - { - "text": "V-71987", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86611", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-002617", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-020200", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204452r603261_rule", - "time": "2021-12-17T10:39:31", - "severity": "low", - "version": "RHEL-07-020200", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-80346-0", - "system": "http://cce.mitre.org" - }, - { - "text": "V-71987", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86611", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-002617", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:108", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:31", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204457", - "title": "The Red Hat Enterprise Linux operating system must define default permissions for all authenticated users in such a way that the user can only read and modify their own files.", - "desc": "Setting the most restrictive default permissions ensures that when new accounts are created, they do not have unnecessary access.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:518", - "label": "check" - }, - { - "data": "Configure the operating system to define default permissions for all authenticated users in such a way that the user can only read and modify their own files.\n\nAdd or edit the line for the \"UMASK\" parameter in \"/etc/login.defs\" file to \"077\":\n\nUMASK 077", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Setting the most restrictive default permissions ensures that when new accounts are created, they do not have unnecessary access.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204457", - "group_title": "SRG-OS-000480-GPOS-00228", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204457r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-export": { - "export-name": "oval:mil.disa.stig.rhel7:var:4211", - "value-id": "xccdf_mil.disa.stig_value_var_accounts_user_umask" - }, - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:518", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4581r88564_fix", - "fixtext_fixref": "F-4581r88564_fix", - "ident": [ - { - "text": "CCE-80205-8", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86619", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71995", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-020240", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204457r603261_rule", - "time": "2021-12-17T10:39:31", - "severity": "medium", - "version": "RHEL-07-020240", - "weight": "10.000000", - "result": "pass", - "ident": [ - { - "text": "CCE-80205-8", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86619", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71995", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-export": { - "export-name": "oval:mil.disa.stig.rhel7:var:4211", - "value-id": "xccdf_mil.disa.stig_value_var_accounts_user_umask" - }, - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:518", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - }, - "value": { - "id": "xccdf_mil.disa.stig_value_var_accounts_user_umask", - "operator": "equals", - "type": "string", - "title": { - "text": "Sensible umask", - "xmlns:xhtml": "http://www.w3.org/1999/xhtml", - "xml:lang": "en-US" - }, - "description": { - "text": "Enter default user umask", - "xmlns:xhtml": "http://www.w3.org/1999/xhtml", - "xml:lang": "en-US" - }, - "value": [ - 77, - { - "text": 7, - "selector": "007" - }, - { - "text": 22, - "selector": "022" - }, - { - "text": 27, - "selector": "027" - }, - { - "text": 77, - "selector": "077" - } - ] - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:31", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204458", - "title": "The Red Hat Enterprise Linux operating system must be a vendor supported release.", - "desc": "An operating system release is considered \"supported\" if the vendor continues to provide security patches for the product. With an unsupported release, it will not be possible to resolve security issues discovered in the system software.\n\nRed Hat offers the Extended Update Support (EUS) Add-On to a Red Hat Enterprise Linux subscription, for a fee, for those customers who wish to standardize on a specific minor release for an extended period. RHEL 7.7 marks the final minor release that EUS will be available, while 7.9 is the final minor release overall.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:169", - "label": "check" - }, - { - "data": "Upgrade to a supported version of the operating system.", - "label": "fix" - } - ], - "impact": 0.7, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "high", - "description": "{\"VulnDiscussion\":\"An operating system release is considered \\\"supported\\\" if the vendor continues to provide security patches for the product. With an unsupported release, it will not be possible to resolve security issues discovered in the system software.\\n\\nRed Hat offers the Extended Update Support (EUS) Add-On to a Red Hat Enterprise Linux subscription, for a fee, for those customers who wish to standardize on a specific minor release for an extended period. RHEL 7.7 marks the final minor release that EUS will be available, while 7.9 is the final minor release overall.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204458", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204458r744100_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:169", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4582r462547_fix", - "fixtext_fixref": "F-4582r462547_fix", - "ident": [ - { - "text": "CCE-80349-4", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86621", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71997", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-020250", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204458r744100_rule", - "time": "2021-12-17T10:39:31", - "severity": "high", - "version": "RHEL-07-020250", - "weight": "10.000000", - "result": "pass", - "ident": [ - { - "text": "CCE-80349-4", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86621", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71997", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:169", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:31", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204461", - "title": "The Red Hat Enterprise Linux operating system must be configured so that all Group Identifiers (GIDs) referenced in the /etc/passwd file are defined in the /etc/group file.", - "desc": "If a user is assigned the GID of a group not existing on the system, and a group with the GID is subsequently created, the user may have unintended rights to any files associated with the group.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:1117", - "label": "check" - }, - { - "data": "Configure the system to define all GIDs found in the \"/etc/passwd\" file by modifying the \"/etc/group\" file to add any non-existent group referenced in the \"/etc/passwd\" file, or change the GIDs referenced in the \"/etc/passwd\" file to a group that exists in \"/etc/group\".", - "label": "fix" - } - ], - "impact": 0.3, - "refs": [], - "tags": { - "cci": [ - "CCI-000764" - ], - "nist": [ - "IA-2" - ], - "severity": "low", - "description": "{\"VulnDiscussion\":\"If a user is assigned the GID of a group not existing on the system, and a group with the GID is subsequently created, the user may have unintended rights to any files associated with the group.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204461", - "group_title": "SRG-OS-000104-GPOS-00051", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204461r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:1117", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4585r88576_fix", - "fixtext_fixref": "F-4585r88576_fix", - "ident": [ - { - "text": "CCE-27503-2", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72003", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86627", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000764", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-020300", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204461r603261_rule", - "time": "2021-12-17T10:39:31", - "severity": "low", - "version": "RHEL-07-020300", - "weight": "10.000000", - "result": "pass", - "ident": [ - { - "text": "CCE-27503-2", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72003", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86627", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000764", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:1117", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:31", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204462", - "title": "The Red Hat Enterprise Linux operating system must be configured so that the root account must be the only account having unrestricted access to the system.", - "desc": "If an account other than root also has a User Identifier (UID) of \"0\", it has root authority, giving that account unrestricted access to the entire operating system. Multiple accounts with a UID of \"0\" afford an opportunity for potential intruders to guess a password for a privileged account.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:457", - "label": "check" - }, - { - "data": "Change the UID of any account on the system, other than root, that has a UID of \"0\". \n\nIf the account is associated with system commands or applications, the UID should be changed to one greater than \"0\" but less than \"1000\". Otherwise, assign a UID of greater than \"1000\" that has not already been assigned.", - "label": "fix" - } - ], - "impact": 0.7, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "high", - "description": "{\"VulnDiscussion\":\"If an account other than root also has a User Identifier (UID) of \\\"0\\\", it has root authority, giving that account unrestricted access to the entire operating system. Multiple accounts with a UID of \\\"0\\\" afford an opportunity for potential intruders to guess a password for a privileged account.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204462", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204462r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:457", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4586r88579_fix", - "fixtext_fixref": "F-4586r88579_fix", - "ident": [ - { - "text": "CCE-27175-9", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86629", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72005", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-020310", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204462r603261_rule", - "time": "2021-12-17T10:39:31", - "severity": "high", - "version": "RHEL-07-020310", - "weight": "10.000000", - "result": "pass", - "ident": [ - { - "text": "CCE-27175-9", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86629", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72005", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:457", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:31", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204466", - "title": "The Red Hat Enterprise Linux operating system must be configured so that all local interactive user accounts, upon creation, are assigned a home directory.", - "desc": "If local interactive users are not assigned a valid home directory, there is no place for the storage and control of files they should own.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:447", - "label": "check" - }, - { - "data": "Configure the operating system to assign home directories to all new local interactive users by setting the \"CREATE_HOME\" parameter in \"/etc/login.defs\" to \"yes\" as follows.\n\nCREATE_HOME yes", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"If local interactive users are not assigned a valid home directory, there is no place for the storage and control of files they should own.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204466", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204466r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:447", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4590r88591_fix", - "fixtext_fixref": "F-4590r88591_fix", - "ident": [ - { - "text": "CCE-80434-4", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72013", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86637", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-020610", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204466r603261_rule", - "time": "2021-12-17T10:39:31", - "severity": "medium", - "version": "RHEL-07-020610", - "weight": "10.000000", - "result": "pass", - "ident": [ - { - "text": "CCE-80434-4", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72013", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86637", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:447", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:31", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204467", - "title": "The Red Hat Enterprise Linux operating system must be configured so that all local interactive users have a home directory assigned and defined in the /etc/passwd file.", - "desc": "If local interactive users are not assigned a valid home directory, there is no place for the storage and control of files they should own.\n\nIn addition, if a local interactive user has a home directory defined that does not exist, the user may be given access to the / directory as the current working directory upon logon. This could create a Denial of Service because the user would not be able to access their logon configuration files, and it may give them visibility to system files they normally would not be able to access.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:86639", - "label": "check" - }, - { - "data": "Create home directories to all local interactive users that currently do not have a home directory assigned. Use the following commands to create the user home directory assigned in \"/etc/ passwd\":\n\nNote: The example will be for the user smithj, who has a home directory of \"/home/smithj\", a UID of \"smithj\", and a Group Identifier (GID) of \"users\" assigned in \"/etc/passwd\".\n\n# mkdir /home/smithj \n# chown smithj /home/smithj\n# chgrp users /home/smithj\n# chmod 0750 /home/smithj", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"If local interactive users are not assigned a valid home directory, there is no place for the storage and control of files they should own.\\n\\nIn addition, if a local interactive user has a home directory defined that does not exist, the user may be given access to the / directory as the current working directory upon logon. This could create a Denial of Service because the user would not be able to access their logon configuration files, and it may give them visibility to system files they normally would not be able to access.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204467", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204467r603826_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:86639", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4591r462550_fix", - "fixtext_fixref": "F-4591r462550_fix", - "ident": [ - { - "text": "V-72015", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86639", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-020620", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204467r603826_rule", - "time": "2021-12-17T10:39:31", - "severity": "medium", - "version": "RHEL-07-020620", - "weight": "10.000000", - "result": "pass", - "ident": [ - { - "text": "V-72015", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86639", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:86639", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:31", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204482", - "title": "The Red Hat Enterprise Linux operating system must prevent files with the setuid and setgid bit set from being executed on file systems that are being imported via Network File System (NFS).", - "desc": "The \"nosuid\" mount option causes the system to not execute \"setuid\" and \"setgid\" files with owner privileges. This option must be used for mounting any file system not containing approved \"setuid\" and \"setguid\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:1186", - "label": "check" - }, - { - "data": "Configure the \"/etc/fstab\" to use the \"nosuid\" option on file systems that are being imported via NFS.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"The \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204482", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204482r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:1186", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4606r88639_fix", - "fixtext_fixref": "F-4606r88639_fix", - "ident": [ - { - "text": "CCE-80240-5", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86669", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72045", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-021020", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204482r603261_rule", - "time": "2021-12-17T10:39:31", - "severity": "medium", - "version": "RHEL-07-021020", - "weight": "10.000000", - "result": "pass", - "ident": [ - { - "text": "CCE-80240-5", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86669", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72045", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:1186", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:31", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204483", - "title": "The Red Hat Enterprise Linux operating system must prevent binary files from being executed on file systems that are being imported via Network File System (NFS).", - "desc": "The \"noexec\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:1178", - "label": "check" - }, - { - "data": "Configure the \"/etc/fstab\" to use the \"noexec\" option on file systems that are being imported via NFS.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"The \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204483", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204483r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:1178", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4607r88642_fix", - "fixtext_fixref": "F-4607r88642_fix", - "ident": [ - { - "text": "CCE-80436-9", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-87813", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-73161", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-021021", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204483r603261_rule", - "time": "2021-12-17T10:39:31", - "severity": "medium", - "version": "RHEL-07-021021", - "weight": "10.000000", - "result": "pass", - "ident": [ - { - "text": "CCE-80436-9", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-87813", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-73161", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:1178", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:31", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204487", - "title": "The Red Hat Enterprise Linux operating system must be configured so that all world-writable directories are group-owned by root, sys, bin, or an application group.", - "desc": "If a world-writable directory is not group-owned by root, sys, bin, or an application Group Identifier (GID), unauthorized users may be able to modify files created by others.\n\nThe only authorized public directories are those temporary directories supplied with the system or those designed to be temporary file repositories. The setting is normally reserved for directories used by the system and by users for temporary file storage, (e.g., /tmp), and for directories requiring global read/write access.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:1009", - "label": "check" - }, - { - "data": "All directories in local partitions which are world-writable should be group-owned by root or another system account. If any world-writable directories are not group-owned by a system account, this should be investigated. Following this, the directories should be deleted or assigned to an appropriate group.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"If a world-writable directory is not group-owned by root, sys, bin, or an application Group Identifier (GID), unauthorized users may be able to modify files created by others.\\n\\nThe only authorized public directories are those temporary directories supplied with the system or those designed to be temporary file repositories. The setting is normally reserved for directories used by the system and by users for temporary file storage, (e.g., /tmp), and for directories requiring global read/write access.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204487", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204487r744106_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:1009", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-36308r602634_fix", - "fixtext_fixref": "F-36308r602634_fix", - "ident": [ - { - "text": "CCE-80136-5", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72047", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86671", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-021030", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204487r744106_rule", - "time": "2021-12-17T10:39:38", - "severity": "medium", - "version": "RHEL-07-021030", - "weight": "10.000000", - "result": "pass", - "ident": [ - { - "text": "CCE-80136-5", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72047", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86671", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:1009", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:38", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204490", - "title": "The Red Hat Enterprise Linux operating system must be configured so that the cron.allow file, if it exists, is owned by root.", - "desc": "If the owner of the \"cron.allow\" file is not set to root, the possibility exists for an unauthorized user to view or to edit sensitive information.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:116", - "label": "check" - }, - { - "data": "Set the owner on the \"/etc/cron.allow\" file to root with the following command:\n\n# chown root /etc/cron.allow", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"If the owner of the \\\"cron.allow\\\" file is not set to root, the possibility exists for an unauthorized user to view or to edit sensitive information.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204490", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204490r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:116", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4614r88663_fix", - "fixtext_fixref": "F-4614r88663_fix", - "ident": [ - { - "text": "CCE-80378-3", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72053", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86677", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-021110", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204490r603261_rule", - "time": "2021-12-17T10:39:38", - "severity": "medium", - "version": "RHEL-07-021110", - "weight": "10.000000", - "result": "pass", - "ident": [ - { - "text": "CCE-80378-3", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72053", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86677", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:116", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:38", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204491", - "title": "The Red Hat Enterprise Linux operating system must be configured so that the cron.allow file, if it exists, is group-owned by root.", - "desc": "If the group owner of the \"cron.allow\" file is not set to root, sensitive information could be viewed or edited by unauthorized users.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:114", - "label": "check" - }, - { - "data": "Set the group owner on the \"/etc/cron.allow\" file to root with the following command:\n\n# chgrp root /etc/cron.allow", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"If the group owner of the \\\"cron.allow\\\" file is not set to root, sensitive information could be viewed or edited by unauthorized users.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204491", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204491r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:114", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4615r88666_fix", - "fixtext_fixref": "F-4615r88666_fix", - "ident": [ - { - "text": "CCE-80379-1", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86679", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72055", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-021120", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204491r603261_rule", - "time": "2021-12-17T10:39:38", - "severity": "medium", - "version": "RHEL-07-021120", - "weight": "10.000000", - "result": "pass", - "ident": [ - { - "text": "CCE-80379-1", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86679", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72055", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:114", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:38", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204493", - "title": "The Red Hat Enterprise Linux operating system must be configured so that a separate file system is used for user home directories (such as /home or an equivalent).", - "desc": "The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:1311", - "label": "check" - }, - { - "data": "Migrate the \"/home\" directory onto a separate file system/partition.", - "label": "fix" - } - ], - "impact": 0.3, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "low", - "description": "{\"VulnDiscussion\":\"The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204493", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204493r603840_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:1311", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4617r88672_fix", - "fixtext_fixref": "F-4617r88672_fix", - "ident": [ - { - "text": "CCE-80144-9", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86683", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72059", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-021310", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204493r603840_rule", - "time": "2021-12-17T10:39:39", - "severity": "low", - "version": "RHEL-07-021310", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-80144-9", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86683", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72059", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:1311", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204494", - "title": "The Red Hat Enterprise Linux operating system must use a separate file system for /var.", - "desc": "The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:1315", - "label": "check" - }, - { - "data": "Migrate the \"/var\" path onto a separate file system.", - "label": "fix" - } - ], - "impact": 0.3, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "low", - "description": "{\"VulnDiscussion\":\"The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204494", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204494r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:1315", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4618r88675_fix", - "fixtext_fixref": "F-4618r88675_fix", - "ident": [ - { - "text": "CCE-26404-4", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72061", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86685", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-021320", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204494r603261_rule", - "time": "2021-12-17T10:39:39", - "severity": "low", - "version": "RHEL-07-021320", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-26404-4", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72061", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86685", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:1315", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204495", - "title": "The Red Hat Enterprise Linux operating system must use a separate file system for the system audit data path.", - "desc": "The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:1319", - "label": "check" - }, - { - "data": "Migrate the system audit data path onto a separate file system.", - "label": "fix" - } - ], - "impact": 0.3, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "low", - "description": "{\"VulnDiscussion\":\"The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204495", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204495r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:1319", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4619r88678_fix", - "fixtext_fixref": "F-4619r88678_fix", - "ident": [ - { - "text": "SV-86687", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72063", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-021330", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204495r603261_rule", - "time": "2021-12-17T10:39:39", - "severity": "low", - "version": "RHEL-07-021330", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "SV-86687", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72063", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:1319", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204496", - "title": "The Red Hat Enterprise Linux operating system must use a separate file system for /tmp (or equivalent).", - "desc": "The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:86689", - "label": "check" - }, - { - "data": "Start the \"tmp.mount\" service with the following command:\n\n# systemctl enable tmp.mount\n \nOR\n\nEdit the \"/etc/fstab\" file and ensure the \"/tmp\" directory is defined in the fstab with a device and mount point.", - "label": "fix" - } - ], - "impact": 0.3, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "low", - "description": "{\"VulnDiscussion\":\"The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204496", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204496r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:86689", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-36309r602637_fix", - "fixtext_fixref": "F-36309r602637_fix", - "ident": [ - { - "text": "CCE-27173-4", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86689", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72065", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-021340", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204496r603261_rule", - "time": "2021-12-17T10:39:39", - "severity": "low", - "version": "RHEL-07-021340", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-27173-4", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86689", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72065", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:86689", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204497", - "title": "The Red Hat Enterprise Linux operating system must implement NIST FIPS-validated cryptography for the following: to provision digital signatures, to generate cryptographic hashes, and to protect data requiring data-at-rest protections in accordance with applicable federal laws, Executive Orders, directives, policies, regulations, and standards.", - "desc": "Use of weak or untested encryption algorithms undermines the purposes of using encryption to protect data. The operating system must implement cryptographic modules adhering to the higher standards approved by the federal government since this provides assurance they have been tested and validated.\n\nSatisfies: SRG-OS-000033-GPOS-00014, SRG-OS-000185-GPOS-00079, SRG-OS-000396-GPOS-00176, SRG-OS-000405-GPOS-00184, SRG-OS-000478-GPOS-00223", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:126", - "label": "check" - }, - { - "data": "Configure the operating system to implement DoD-approved encryption by installing the dracut-fips package.\n\nTo enable strict FIPS compliance, the fips=1 kernel option needs to be added to the kernel command line during system installation so key generation is done with FIPS-approved algorithms and continuous monitoring tests in place.\n\nConfigure the operating system to implement DoD-approved encryption by following the steps below: \n\nThe fips=1 kernel option needs to be added to the kernel command line during system installation so that key generation is done with FIPS-approved algorithms and continuous monitoring tests in place. Users should also ensure that the system has plenty of entropy during the installation process by moving the mouse around, or if no mouse is available, ensuring that many keystrokes are typed. The recommended amount of keystrokes is 256 and more. Less than 256 keystrokes may generate a non-unique key.\n\nInstall the dracut-fips package with the following command:\n\n# yum install dracut-fips\n\nRecreate the \"initramfs\" file with the following command:\n\nNote: This command will overwrite the existing \"initramfs\" file.\n\n# dracut -f\n\nModify the kernel command line of the current kernel in the \"grub.cfg\" file by adding the following option to the GRUB_CMDLINE_LINUX key in the \"/etc/default/grub\" file and then rebuild the \"grub.cfg\" file:\n\nfips=1\n\nChanges to \"/etc/default/grub\" require rebuilding the \"grub.cfg\" file as follows:\n\nOn BIOS-based machines, use the following command:\n\n# grub2-mkconfig -o /boot/grub2/grub.cfg\n\nOn UEFI-based machines, use the following command:\n\n# grub2-mkconfig -o /boot/efi/EFI/redhat/grub.cfg\n\nIf /boot or /boot/efi reside on separate partitions, the kernel parameter boot= must be added to the kernel command line. You can identify a partition by running the df /boot or df /boot/efi command:\n\n# df /boot\nFilesystem 1K-blocks Used Available Use% Mounted on\n/dev/sda1 495844 53780 416464 12% /boot\n\nTo ensure the \"boot=\" configuration option will work even if device naming changes occur between boots, identify the universally unique identifier (UUID) of the partition with the following command:\n\n# blkid /dev/sda1\n/dev/sda1: UUID=\"05c000f1-a213-759e-c7a2-f11b7424c797\" TYPE=\"ext4\"\n\nFor the example above, append the following string to the kernel command line:\n\nboot=UUID=05c000f1-a213-759e-c7a2-f11b7424c797\n\nIf the file /etc/system-fips does not exists, recreate it:\n\n# touch /etc/ system-fips\n\nReboot the system for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.7, - "refs": [], - "tags": { - "cci": [ - "CCI-000068", - "CCI-001199", - "CCI-002450", - "CCI-002476" - ], - "nist": [ - "AC-17 (2)", - "SC-28", - "SC-13 b", - "SC-28 (1)" - ], - "severity": "high", - "description": "{\"VulnDiscussion\":\"Use of weak or untested encryption algorithms undermines the purposes of using encryption to protect data. The operating system must implement cryptographic modules adhering to the higher standards approved by the federal government since this provides assurance they have been tested and validated.\\n\\nSatisfies: SRG-OS-000033-GPOS-00014, SRG-OS-000185-GPOS-00079, SRG-OS-000396-GPOS-00176, SRG-OS-000405-GPOS-00184, SRG-OS-000478-GPOS-00223\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204497", - "group_title": "SRG-OS-000033-GPOS-00014", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204497r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:126", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-36310r602640_fix", - "fixtext_fixref": "F-36310r602640_fix", - "ident": [ - { - "text": "CCE-80359-3", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86691", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72067", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000068", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001199", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002450", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002476", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-021350", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204497r603261_rule", - "time": "2021-12-17T10:39:39", - "severity": "high", - "version": "RHEL-07-021350", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-80359-3", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86691", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72067", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000068", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001199", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002450", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002476", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:126", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204502", - "title": "The Red Hat Enterprise Linux operating system must not have the telnet-server package installed.", - "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\n\nExamples of non-essential capabilities include, but are not limited to, games, software packages, tools, and demonstration software not related to requirements or providing a wide array of functionality not required for every mission, but which cannot be disabled.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:1292", - "label": "check" - }, - { - "data": "Configure the operating system to disable non-essential capabilities by removing the telnet-server package from the system with the following command:\n\n# yum remove telnet-server", - "label": "fix" - } - ], - "impact": 0.7, - "refs": [], - "tags": { - "cci": [ - "CCI-000381" - ], - "nist": [ - "CM-7 a" - ], - "severity": "high", - "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\\n\\nExamples of non-essential capabilities include, but are not limited to, games, software packages, tools, and demonstration software not related to requirements or providing a wide array of functionality not required for every mission, but which cannot be disabled.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204502", - "group_title": "SRG-OS-000095-GPOS-00049", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204502r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:1292", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4626r88699_fix", - "fixtext_fixref": "F-4626r88699_fix", - "ident": [ - { - "text": "CCE-27165-0", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72077", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86701", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000381", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-021710", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204502r603261_rule", - "time": "2021-12-17T10:39:39", - "severity": "high", - "version": "RHEL-07-021710", - "weight": "10.000000", - "result": "pass", - "ident": [ - { - "text": "CCE-27165-0", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72077", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86701", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000381", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:1292", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204503", - "title": "The Red Hat Enterprise Linux operating system must be configured so that auditing is configured to produce records containing information to establish what type of events occurred, where the events occurred, the source of the events, and the outcome of the events. These audit records must also identify individual identities of group account users.", - "desc": "Without establishing what type of events occurred, it would be difficult to establish, correlate, and investigate the events leading up to an outage or attack.\n\nAudit record content that may be necessary to satisfy this requirement includes, for example, time stamps, source and destination addresses, user/process identifiers, event descriptions, success/fail indications, filenames involved, and access control or flow control rules invoked.\n\nAssociating event types with detected events in the operating system audit logs provides a means of investigating an attack; recognizing resource utilization or capacity thresholds; or identifying an improperly configured operating system.\n\nSatisfies: SRG-OS-000038-GPOS-00016, SRG-OS-000039-GPOS-00017, SRG-OS-000042-GPOS-00021, SRG-OS-000254-GPOS-00095, SRG-OS-000255-GPOS-00096", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:86703", - "label": "check" - }, - { - "data": "Configure the operating system to produce audit records containing information to establish when (date and time) the events occurred.\n\nEnable the auditd service with the following command:\n\n# systemctl start auditd.service", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000126", - "CCI-000131" - ], - "nist": [ - "AU-2 c", - "AU-3 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without establishing what type of events occurred, it would be difficult to establish, correlate, and investigate the events leading up to an outage or attack.\\n\\nAudit record content that may be necessary to satisfy this requirement includes, for example, time stamps, source and destination addresses, user/process identifiers, event descriptions, success/fail indications, filenames involved, and access control or flow control rules invoked.\\n\\nAssociating event types with detected events in the operating system audit logs provides a means of investigating an attack; recognizing resource utilization or capacity thresholds; or identifying an improperly configured operating system.\\n\\nSatisfies: SRG-OS-000038-GPOS-00016, SRG-OS-000039-GPOS-00017, SRG-OS-000042-GPOS-00021, SRG-OS-000254-GPOS-00095, SRG-OS-000255-GPOS-00096\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204503", - "group_title": "SRG-OS-000038-GPOS-00016", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204503r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:86703", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-36311r602643_fix", - "fixtext_fixref": "F-36311r602643_fix", - "ident": [ - { - "text": "CCE-27407-6", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86703", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72079", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000126", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000131", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-030000", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204503r603261_rule", - "time": "2021-12-17T10:39:39", - "severity": "medium", - "version": "RHEL-07-030000", - "weight": "10.000000", - "result": "pass", - "ident": [ - { - "text": "CCE-27407-6", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86703", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72079", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000126", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000131", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:86703", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204504", - "title": "The Red Hat Enterprise Linux operating system must shut down upon audit processing failure, unless availability is an overriding concern. If availability is a concern, the system must alert the designated staff (System Administrator [SA] and Information System Security Officer [ISSO] at a minimum) in the event of an audit processing failure.", - "desc": "It is critical for the appropriate personnel to be aware if a system is at risk of failing to process audit logs as required. Without this notification, the security personnel may be unaware of an impending failure of the audit capability, and system operation may be adversely affected.\n\nAudit processing failures include software/hardware errors, failures in the audit capturing mechanisms, and audit storage capacity being reached or exceeded.\n\nThis requirement applies to each audit data storage repository (i.e., distinct information system component where audit records are stored), the centralized audit storage capacity of organizations (i.e., all audit data storage repositories combined), or both.\n\nSatisfies: SRG-OS-000046-GPOS-00022, SRG-OS-000047-GPOS-00023", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:776", - "label": "check" - }, - { - "data": "Configure the operating system to shut down in the event of an audit processing failure.\n\nAdd or correct the option to shut down the operating system with the following command:\n\n# auditctl -f 2\n\nEdit the \"/etc/audit/rules.d/audit.rules\" file and add the following line:\n\n-f 2\n\nIf availability has been determined to be more important, and this decision is documented with the ISSO, configure the operating system to notify system administration staff and ISSO staff in the event of an audit processing failure with the following command:\n\n# auditctl -f 1\n\nEdit the \"/etc/audit/rules.d/audit.rules\" file and add the following line:\n\n-f 1\n\nKernel log monitoring must also be configured to properly alert designated staff.\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000139" - ], - "nist": [ - "AU-5 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"It is critical for the appropriate personnel to be aware if a system is at risk of failing to process audit logs as required. Without this notification, the security personnel may be unaware of an impending failure of the audit capability, and system operation may be adversely affected.\\n\\nAudit processing failures include software/hardware errors, failures in the audit capturing mechanisms, and audit storage capacity being reached or exceeded.\\n\\nThis requirement applies to each audit data storage repository (i.e., distinct information system component where audit records are stored), the centralized audit storage capacity of organizations (i.e., all audit data storage repositories combined), or both.\\n\\nSatisfies: SRG-OS-000046-GPOS-00022, SRG-OS-000047-GPOS-00023\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204504", - "group_title": "SRG-OS-000046-GPOS-00022", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204504r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:776", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4628r462467_fix", - "fixtext_fixref": "F-4628r462467_fix", - "ident": [ - { - "text": "CCE-80381-7", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72081", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86705", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000139", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-030010", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204504r603261_rule", - "time": "2021-12-17T10:39:39", - "severity": "medium", - "version": "RHEL-07-030010", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-80381-7", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72081", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86705", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000139", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:776", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204506", - "title": "The Red Hat Enterprise Linux operating system must be configured to off-load audit logs onto a different system or storage media from the system being audited.", - "desc": "Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\n\nOff-loading is a common process in information systems with limited audit storage capacity.\n\nOne method of off-loading audit logs in Red Hat Enterprise Linux is with the use of the audisp-remote dameon. Without the configuration of the \"au-remote\" plugin, the audisp-remote daemon will not off load the logs from the system being audited.\n\nSatisfies: SRG-OS-000342-GPOS-00133, SRG-OS-000479-GPOS-00224", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:95729", - "label": "check" - }, - { - "data": "Edit the /etc/audisp/plugins.d/au-remote.conf file and add or update the following values:\n\ndirection = out\npath = /sbin/audisp-remote\ntype = always\n\nThe audit daemon must be restarted for changes to take effect:\n\n# service auditd restart", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001851" - ], - "nist": [ - "AU-4 (1)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\\n\\nOff-loading is a common process in information systems with limited audit storage capacity.\\n\\nOne method of off-loading audit logs in Red Hat Enterprise Linux is with the use of the audisp-remote dameon. Without the configuration of the \\\"au-remote\\\" plugin, the audisp-remote daemon will not off load the logs from the system being audited.\\n\\nSatisfies: SRG-OS-000342-GPOS-00133, SRG-OS-000479-GPOS-00224\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204506", - "group_title": "SRG-OS-000342-GPOS-00133", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204506r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:95729", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4630r462470_fix", - "fixtext_fixref": "F-4630r462470_fix", - "ident": [ - { - "text": "SV-95729", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-81017", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001851", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-030201", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204506r603261_rule", - "time": "2021-12-17T10:39:39", - "severity": "medium", - "version": "RHEL-07-030201", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "SV-95729", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-81017", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001851", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:95729", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204507", - "title": "The Red Hat Enterprise Linux operating system must take appropriate action when the remote logging buffer is full.", - "desc": "Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\n\nOff-loading is a common process in information systems with limited audit storage capacity.\n\nOne method of off-loading audit logs in Red Hat Enterprise Linux is with the use of the audisp-remote dameon. When the remote buffer is full, audit logs will not be collected and sent to the central log server.\n\nSatisfies: SRG-OS-000342-GPOS-00133, SRG-OS-000479-GPOS-00224", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:95731", - "label": "check" - }, - { - "data": "Edit the /etc/audisp/audispd.conf file and add or update the \"overflow_action\" option:\n\noverflow_action = syslog\n\nThe audit daemon must be restarted for changes to take effect:\n\n# service auditd restart", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001851" - ], - "nist": [ - "AU-4 (1)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\\n\\nOff-loading is a common process in information systems with limited audit storage capacity.\\n\\nOne method of off-loading audit logs in Red Hat Enterprise Linux is with the use of the audisp-remote dameon. When the remote buffer is full, audit logs will not be collected and sent to the central log server.\\n\\nSatisfies: SRG-OS-000342-GPOS-00133, SRG-OS-000479-GPOS-00224\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204507", - "group_title": "SRG-OS-000342-GPOS-00133", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204507r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:95731", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-36312r602646_fix", - "fixtext_fixref": "F-36312r602646_fix", - "ident": [ - { - "text": "V-81019", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-95731", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001851", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-030210", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204507r603261_rule", - "time": "2021-12-17T10:39:39", - "severity": "medium", - "version": "RHEL-07-030210", - "weight": "10.000000", - "result": "pass", - "ident": [ - { - "text": "V-81019", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-95731", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001851", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:95731", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204508", - "title": "The Red Hat Enterprise Linux operating system must label all off-loaded audit logs before sending them to the central log server.", - "desc": "Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\n\nOff-loading is a common process in information systems with limited audit storage capacity.\n\nOne method of off-loading audit logs in Red Hat Enterprise Linux is with the use of the audisp-remote dameon. When audit logs are not labeled before they are sent to a central log server, the audit data will not be able to be analyzed and tied back to the correct system.\n\nSatisfies: SRG-OS-000342-GPOS-00133, SRG-OS-000479-GPOS-00224", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:95733", - "label": "check" - }, - { - "data": "Edit the /etc/audisp/audispd.conf file and add or update the \"name_format\" option:\n\nname_format = hostname\n\nThe audit daemon must be restarted for changes to take effect:\n\n# service auditd restart", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001851" - ], - "nist": [ - "AU-4 (1)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\\n\\nOff-loading is a common process in information systems with limited audit storage capacity.\\n\\nOne method of off-loading audit logs in Red Hat Enterprise Linux is with the use of the audisp-remote dameon. When audit logs are not labeled before they are sent to a central log server, the audit data will not be able to be analyzed and tied back to the correct system.\\n\\nSatisfies: SRG-OS-000342-GPOS-00133, SRG-OS-000479-GPOS-00224\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204508", - "group_title": "SRG-OS-000342-GPOS-00133", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204508r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:95733", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-36313r602649_fix", - "fixtext_fixref": "F-36313r602649_fix", - "ident": [ - { - "text": "SV-95733", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-81021", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001851", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-030211", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204508r603261_rule", - "time": "2021-12-17T10:39:39", - "severity": "medium", - "version": "RHEL-07-030211", - "weight": "10.000000", - "result": "pass", - "ident": [ - { - "text": "SV-95733", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-81021", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001851", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:95733", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204509", - "title": "The Red Hat Enterprise Linux operating system must off-load audit records onto a different system or media from the system being audited.", - "desc": "Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\n\nOff-loading is a common process in information systems with limited audit storage capacity.\n\nSatisfies: SRG-OS-000342-GPOS-00133, SRG-OS-000479-GPOS-00224", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:86707", - "label": "check" - }, - { - "data": "Configure the operating system to off-load audit records onto a different system or media from the system being audited.\n\nSet the remote server option in \"/etc/audisp/audisp-remote.conf\" with the IP address of the log aggregation server.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001851" - ], - "nist": [ - "AU-4 (1)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\\n\\nOff-loading is a common process in information systems with limited audit storage capacity.\\n\\nSatisfies: SRG-OS-000342-GPOS-00133, SRG-OS-000479-GPOS-00224\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204509", - "group_title": "SRG-OS-000342-GPOS-00133", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204509r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:86707", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4633r88720_fix", - "fixtext_fixref": "F-4633r88720_fix", - "ident": [ - { - "text": "V-72083", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86707", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001851", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-030300", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204509r603261_rule", - "time": "2021-12-17T10:39:39", - "severity": "medium", - "version": "RHEL-07-030300", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "V-72083", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86707", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001851", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:86707", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204510", - "title": "The Red Hat Enterprise Linux operating system must encrypt the transfer of audit records off-loaded onto a different system or media from the system being audited.", - "desc": "Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\n\nOff-loading is a common process in information systems with limited audit storage capacity.\n\nSatisfies: SRG-OS-000342-GPOS-00133, SRG-OS-000479-GPOS-00224", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:86709", - "label": "check" - }, - { - "data": "Configure the operating system to encrypt the transfer of off-loaded audit records onto a different system or media from the system being audited.\n\nUncomment the \"enable_krb5\" option in \"/etc/audisp/audisp-remote.conf\" and set it with the following line:\n\nenable_krb5 = yes", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001851" - ], - "nist": [ - "AU-4 (1)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\\n\\nOff-loading is a common process in information systems with limited audit storage capacity.\\n\\nSatisfies: SRG-OS-000342-GPOS-00133, SRG-OS-000479-GPOS-00224\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204510", - "group_title": "SRG-OS-000342-GPOS-00133", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204510r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:86709", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4634r88723_fix", - "fixtext_fixref": "F-4634r88723_fix", - "ident": [ - { - "text": "V-72085", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86709", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001851", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-030310", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204510r603261_rule", - "time": "2021-12-17T10:39:39", - "severity": "medium", - "version": "RHEL-07-030310", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "V-72085", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86709", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001851", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:86709", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204511", - "title": "The Red Hat Enterprise Linux operating system must be configured so that the audit system takes appropriate action when the audit storage volume is full.", - "desc": "Taking appropriate action in case of a filled audit storage volume will minimize the possibility of losing audit records.\nOne method of off-loading audit logs in Red Hat Enterprise Linux is with the use of the audisp-remote dameon.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:86711", - "label": "check" - }, - { - "data": "Configure the action the operating system takes if the disk the audit records are written to becomes full.\n\nUncomment or edit the \"disk_full_action\" option in \"/etc/audisp/audisp-remote.conf\" and set it to \"syslog\", \"single\", or \"halt\", such as the following line:\n\ndisk_full_action = single", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001851" - ], - "nist": [ - "AU-4 (1)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Taking appropriate action in case of a filled audit storage volume will minimize the possibility of losing audit records.\\nOne method of off-loading audit logs in Red Hat Enterprise Linux is with the use of the audisp-remote dameon.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204511", - "group_title": "SRG-OS-000342-GPOS-00133", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204511r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:86711", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-36314r602652_fix", - "fixtext_fixref": "F-36314r602652_fix", - "ident": [ - { - "text": "V-72087", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86711", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001851", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-030320", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204511r603261_rule", - "time": "2021-12-17T10:39:39", - "severity": "medium", - "version": "RHEL-07-030320", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "V-72087", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86711", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001851", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:86711", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204512", - "title": "The Red Hat Enterprise Linux operating system must be configured so that the audit system takes appropriate action when there is an error sending audit records to a remote system.", - "desc": "Taking appropriate action when there is an error sending audit records to a remote system will minimize the possibility of losing audit records.\nOne method of off-loading audit logs in Red Hat Enterprise Linux is with the use of the audisp-remote dameon.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:87815", - "label": "check" - }, - { - "data": "Configure the action the operating system takes if there is an error sending audit records to a remote system.\n\nUncomment the \"network_failure_action\" option in \"/etc/audisp/audisp-remote.conf\" and set it to \"syslog\", \"single\", or \"halt\".\n\nnetwork_failure_action = syslog", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001851" - ], - "nist": [ - "AU-4 (1)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Taking appropriate action when there is an error sending audit records to a remote system will minimize the possibility of losing audit records.\\nOne method of off-loading audit logs in Red Hat Enterprise Linux is with the use of the audisp-remote dameon.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204512", - "group_title": "SRG-OS-000342-GPOS-00133", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204512r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:87815", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-36315r602655_fix", - "fixtext_fixref": "F-36315r602655_fix", - "ident": [ - { - "text": "V-73163", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-87815", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001851", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-030321", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204512r603261_rule", - "time": "2021-12-17T10:39:39", - "severity": "medium", - "version": "RHEL-07-030321", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "V-73163", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-87815", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001851", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:87815", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204514", - "title": "The Red Hat Enterprise Linux operating system must immediately notify the System Administrator (SA) and Information System Security Officer (ISSO) (at a minimum) via email when the threshold for the repository maximum audit record storage capacity is reached.", - "desc": "If security personnel are not notified immediately when the threshold for the repository maximum audit record storage capacity is reached, they are unable to expand the audit record storage capacity before records are lost.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:86715", - "label": "check" - }, - { - "data": "Configure the operating system to immediately notify the SA and ISSO (at a minimum) when the threshold for the repository maximum audit record storage capacity is reached.\n\nUncomment or edit the \"space_left_action\" keyword in \"/etc/audit/auditd.conf\" and set it to \"email\". \n \nspace_left_action = email", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001855" - ], - "nist": [ - "AU-5 (1)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"If security personnel are not notified immediately when the threshold for the repository maximum audit record storage capacity is reached, they are unable to expand the audit record storage capacity before records are lost.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204514", - "group_title": "SRG-OS-000343-GPOS-00134", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204514r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:86715", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4638r88735_fix", - "fixtext_fixref": "F-4638r88735_fix", - "ident": [ - { - "text": "V-72091", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86715", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001855", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-030340", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204514r603261_rule", - "time": "2021-12-17T10:39:39", - "severity": "medium", - "version": "RHEL-07-030340", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "V-72091", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86715", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001855", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:86715", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204515", - "title": "The Red Hat Enterprise Linux operating system must immediately notify the System Administrator (SA) and Information System Security Officer (ISSO) (at a minimum) when the threshold for the repository maximum audit record storage capacity is reached.", - "desc": "If security personnel are not notified immediately when the threshold for the repository maximum audit record storage capacity is reached, they are unable to expand the audit record storage capacity before records are lost.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:885", - "label": "check" - }, - { - "data": "Configure the operating system to immediately notify the SA and ISSO (at a minimum) when the threshold for the repository maximum audit record storage capacity is reached.\n\nUncomment or edit the \"action_mail_acct\" keyword in \"/etc/audit/auditd.conf\" and set it to root and any other accounts associated with security personnel. \n \naction_mail_acct = root", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001855" - ], - "nist": [ - "AU-5 (1)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"If security personnel are not notified immediately when the threshold for the repository maximum audit record storage capacity is reached, they are unable to expand the audit record storage capacity before records are lost.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204515", - "group_title": "SRG-OS-000343-GPOS-00134", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204515r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-export": { - "export-name": "oval:mil.disa.stig.rhel7:var:3821", - "value-id": "xccdf_mil.disa.stig_value_var_auditd_action_mail_acct" - }, - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:885", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4639r88738_fix", - "fixtext_fixref": "F-4639r88738_fix", - "ident": [ - { - "text": "CCE-27394-6", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72093", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86717", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001855", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-030350", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204515r603261_rule", - "time": "2021-12-17T10:39:39", - "severity": "medium", - "version": "RHEL-07-030350", - "weight": "10.000000", - "result": "pass", - "ident": [ - { - "text": "CCE-27394-6", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72093", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86717", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001855", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-export": { - "export-name": "oval:mil.disa.stig.rhel7:var:3821", - "value-id": "xccdf_mil.disa.stig_value_var_auditd_action_mail_acct" - }, - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:885", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - }, - "value": { - "id": "xccdf_mil.disa.stig_value_var_auditd_action_mail_acct", - "type": "string", - "title": { - "text": "Account for auditd to send email when actions occurs", - "xmlns:xhtml": "http://www.w3.org/1999/xhtml", - "xml:lang": "en-US" - }, - "description": { - "text": "The setting for action_mail_acct in /etc/audit/auditd.conf", - "xmlns:xhtml": "http://www.w3.org/1999/xhtml", - "xml:lang": "en-US" - }, - "value": [ - "root", - { - "text": "root", - "selector": "root" - }, - { - "text": "admin", - "selector": "admin" - } - ] - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204516", - "title": "The Red Hat Enterprise Linux operating system must audit all executions of privileged functions.", - "desc": "Misuse of privileged functions, either intentionally or unintentionally by authorized users, or by unauthorized external entities that have compromised information system accounts, is a serious and ongoing concern and can have significant adverse impacts on organizations. Auditing the use of privileged functions is one way to detect such misuse and identify the risk from insider threats and the advanced persistent threat.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:710", - "label": "check" - }, - { - "data": "Configure the operating system to audit the execution of privileged functions.\n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S execve -C uid!=euid -F euid=0 -k setuid\n-a always,exit -F arch=b64 -S execve -C uid!=euid -F euid=0 -k setuid\n-a always,exit -F arch=b32 -S execve -C gid!=egid -F egid=0 -k setgid\n-a always,exit -F arch=b64 -S execve -C gid!=egid -F egid=0 -k setgid\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-002234" - ], - "nist": [ - "AC-6 (9)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Misuse of privileged functions, either intentionally or unintentionally by authorized users, or by unauthorized external entities that have compromised information system accounts, is a serious and ongoing concern and can have significant adverse impacts on organizations. Auditing the use of privileged functions is one way to detect such misuse and identify the risk from insider threats and the advanced persistent threat.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204516", - "group_title": "SRG-OS-000327-GPOS-00127", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204516r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:710", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4640r88741_fix", - "fixtext_fixref": "F-4640r88741_fix", - "ident": [ - { - "text": "V-72095", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86719", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-002234", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-030360", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204516r603261_rule", - "time": "2021-12-17T10:39:39", - "severity": "medium", - "version": "RHEL-07-030360", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "V-72095", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86719", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-002234", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:710", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204517", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the chown syscall.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000474-GPOS-00219", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:552", - "label": "check" - }, - { - "data": "Add or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S chown -F auid>=1000 -F auid!=unset -k perm_mod\n\n-a always,exit -F arch=b64 -S chown -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000126", - "CCI-000172" - ], - "nist": [ - "AU-2 c", - "AU-12 c" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000474-GPOS-00219\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204517", - "group_title": "SRG-OS-000064-GPOS-00033", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204517r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:552", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4641r462559_fix", - "fixtext_fixref": "F-4641r462559_fix", - "ident": [ - { - "text": "CCE-27364-9", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86721", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72097", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000126", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-030370", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204517r603261_rule", - "time": "2021-12-17T10:39:39", - "severity": "medium", - "version": "RHEL-07-030370", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-27364-9", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86721", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72097", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000126", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:552", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204518", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the fchown syscall.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000474-GPOS-00219", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:567", - "label": "check" - }, - { - "data": "Add or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S fchown -F auid>=1000 -F auid!=unset -k perm_mod\n\n-a always,exit -F arch=b64 -S fchown -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000126", - "CCI-000172" - ], - "nist": [ - "AU-2 c", - "AU-12 c" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000474-GPOS-00219\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204518", - "group_title": "SRG-OS-000064-GPOS-00033", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204518r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:567", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4642r462562_fix", - "fixtext_fixref": "F-4642r462562_fix", - "ident": [ - { - "text": "CCE-27356-5", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86723", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72099", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000126", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-030380", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204518r603261_rule", - "time": "2021-12-17T10:39:39", - "severity": "medium", - "version": "RHEL-07-030380", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-27356-5", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86723", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72099", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000126", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:567", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204519", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the lchown syscall.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000474-GPOS-00219", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:587", - "label": "check" - }, - { - "data": "Add or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S lchown -F auid>=1000 -F auid!=unset -k perm_mod\n\n-a always,exit -F arch=b64 -S lchown -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000126", - "CCI-000172" - ], - "nist": [ - "AU-2 c", - "AU-12 c" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000474-GPOS-00219\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204519", - "group_title": "SRG-OS-000064-GPOS-00033", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204519r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:587", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4643r462565_fix", - "fixtext_fixref": "F-4643r462565_fix", - "ident": [ - { - "text": "CCE-27083-5", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72101", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86725", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000126", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-030390", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204519r603261_rule", - "time": "2021-12-17T10:39:39", - "severity": "medium", - "version": "RHEL-07-030390", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-27083-5", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72101", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86725", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000126", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:587", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204520", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the fchownat syscall.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000474-GPOS-00219", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:572", - "label": "check" - }, - { - "data": "Add or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S fchownat -F auid>=1000 -F auid!=unset -k perm_mod\n\n-a always,exit -F arch=b64 -S fchownat -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000126", - "CCI-000172" - ], - "nist": [ - "AU-2 c", - "AU-12 c" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000474-GPOS-00219\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204520", - "group_title": "SRG-OS-000064-GPOS-00033", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204520r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:572", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4644r462568_fix", - "fixtext_fixref": "F-4644r462568_fix", - "ident": [ - { - "text": "CCE-27387-0", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72103", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86727", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000126", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-030400", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204520r603261_rule", - "time": "2021-12-17T10:39:39", - "severity": "medium", - "version": "RHEL-07-030400", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-27387-0", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72103", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86727", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000126", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:572", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204521", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the chmod syscall.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:546", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"chmod\" syscall occur.\n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S chmod -F auid>=1000 -F auid!=unset -k perm_mod\n\n-a always,exit -F arch=b64 -S chmod -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000172" - ], - "nist": [ - "AU-12 c" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204521", - "group_title": "SRG-OS-000458-GPOS-00203", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204521r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:546", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4645r462571_fix", - "fixtext_fixref": "F-4645r462571_fix", - "ident": [ - { - "text": "CCE-27339-1", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86729", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72105", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-030410", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204521r603261_rule", - "time": "2021-12-17T10:39:39", - "severity": "medium", - "version": "RHEL-07-030410", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-27339-1", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86729", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72105", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:546", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204522", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the fchmod syscall.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:557", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"fchmod\" syscall occur.\n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S fchmod -F auid>=1000 -F auid!=unset -k perm_mod\n\n-a always,exit -F arch=b64 -S fchmod -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000172" - ], - "nist": [ - "AU-12 c" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204522", - "group_title": "SRG-OS-000458-GPOS-00203", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204522r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:557", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4646r462574_fix", - "fixtext_fixref": "F-4646r462574_fix", - "ident": [ - { - "text": "CCE-27393-8", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86731", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72107", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-030420", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204522r603261_rule", - "time": "2021-12-17T10:39:39", - "severity": "medium", - "version": "RHEL-07-030420", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-27393-8", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86731", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72107", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:557", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204523", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the fchmodat syscall.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:562", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"fchmodat\" syscall occur.\n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S fchmodat -F auid>=1000 -F auid!=unset -k perm_mod\n\n-a always,exit -F arch=b64 -S fchmodat -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000172" - ], - "nist": [ - "AU-12 c" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204523", - "group_title": "SRG-OS-000458-GPOS-00203", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204523r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:562", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4647r462577_fix", - "fixtext_fixref": "F-4647r462577_fix", - "ident": [ - { - "text": "CCE-27388-8", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86733", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72109", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-030430", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204523r603261_rule", - "time": "2021-12-17T10:39:39", - "severity": "medium", - "version": "RHEL-07-030430", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-27388-8", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86733", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72109", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:562", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204524", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the setxattr syscall.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:607", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"setxattr\" syscall occur.\n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S setxattr -F auid>=1000 -F auid!=unset -k perm_mod\n\n-a always,exit -F arch=b64 -S setxattr -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000172" - ], - "nist": [ - "AU-12 c" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204524", - "group_title": "SRG-OS-000458-GPOS-00203", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204524r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:607", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4648r462732_fix", - "fixtext_fixref": "F-4648r462732_fix", - "ident": [ - { - "text": "CCE-27213-8", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86735", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72111", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-030440", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204524r603261_rule", - "time": "2021-12-17T10:39:39", - "severity": "medium", - "version": "RHEL-07-030440", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-27213-8", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86735", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72111", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:607", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204525", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the fsetxattr syscall.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:582", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"fsetxattr\" syscall occur.\n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S fsetxattr -F auid>=1000 -F auid!=unset -k perm_mod\n\n-a always,exit -F arch=b64 -S fsetxattr -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000172" - ], - "nist": [ - "AU-12 c" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204525", - "group_title": "SRG-OS-000458-GPOS-00203", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204525r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:582", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4649r462580_fix", - "fixtext_fixref": "F-4649r462580_fix", - "ident": [ - { - "text": "CCE-27389-6", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86737", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72113", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-030450", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204525r603261_rule", - "time": "2021-12-17T10:39:39", - "severity": "medium", - "version": "RHEL-07-030450", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-27389-6", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86737", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72113", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:582", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204526", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the lsetxattr syscall.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:597", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"lsetxattr\" syscall occur.\n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S lsetxattr -F auid>=1000 -F auid!=unset -k perm_mod\n\n-a always,exit -F arch=b64 -S lsetxattr -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000172" - ], - "nist": [ - "AU-12 c" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204526", - "group_title": "SRG-OS-000458-GPOS-00203", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204526r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:597", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4650r462583_fix", - "fixtext_fixref": "F-4650r462583_fix", - "ident": [ - { - "text": "CCE-27280-7", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72115", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86739", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-030460", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204526r603261_rule", - "time": "2021-12-17T10:39:39", - "severity": "medium", - "version": "RHEL-07-030460", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-27280-7", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72115", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86739", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:597", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204527", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the removexattr syscall.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:602", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"removexattr\" syscall occur.\n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S removexattr -F auid>=1000 -F auid!=unset -k perm_mod\n\n-a always,exit -F arch=b64 -S removexattr -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000172" - ], - "nist": [ - "AU-12 c" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204527", - "group_title": "SRG-OS-000458-GPOS-00203", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204527r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:602", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4651r462586_fix", - "fixtext_fixref": "F-4651r462586_fix", - "ident": [ - { - "text": "CCE-27367-2", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72117", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86741", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-030470", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204527r603261_rule", - "time": "2021-12-17T10:39:39", - "severity": "medium", - "version": "RHEL-07-030470", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-27367-2", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72117", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86741", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:602", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204528", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the fremovexattr syscall.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:577", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"fremovexattr\" syscall occur.\n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S fremovexattr -F auid>=1000 -F auid!=unset -k perm_mod\n\n-a always,exit -F arch=b64 -S fremovexattr -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000172" - ], - "nist": [ - "AU-12 c" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204528", - "group_title": "SRG-OS-000458-GPOS-00203", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204528r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:577", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4652r462589_fix", - "fixtext_fixref": "F-4652r462589_fix", - "ident": [ - { - "text": "CCE-27353-2", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86743", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72119", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-030480", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204528r603261_rule", - "time": "2021-12-17T10:39:39", - "severity": "medium", - "version": "RHEL-07-030480", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-27353-2", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86743", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72119", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:577", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204529", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the lremovexattr syscall.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:592", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"lremovexattr\" syscall occur.\n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S lremovexattr -F auid>=1000 -F auid!=unset -k perm_mod\n\n-a always,exit -F arch=b64 -S lremovexattr -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000172" - ], - "nist": [ - "AU-12 c" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204529", - "group_title": "SRG-OS-000458-GPOS-00203", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204529r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:592", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4653r462592_fix", - "fixtext_fixref": "F-4653r462592_fix", - "ident": [ - { - "text": "CCE-27410-0", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72121", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86745", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-030490", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204529r603261_rule", - "time": "2021-12-17T10:39:39", - "severity": "medium", - "version": "RHEL-07-030490", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-27410-0", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72121", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86745", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:592", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204530", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the creat syscall.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000458-GPOS-00203, SRG-OS-000461-GPOS-00205, SRG-OS-000392-GPOS-00172", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:801", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"creat\" syscall occur.\n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules:\n\n-a always,exit -F arch=b32 -S creat -F exit=-EPERM -F auid>=1000 -F auid!=unset -k access\n\n-a always,exit -F arch=b32 -S creat -F exit=-EACCES -F auid>=1000 -F auid!=unset -k access\n\n-a always,exit -F arch=b64 -S creat -F exit=-EPERM -F auid>=1000 -F auid!=unset -k access\n\n-a always,exit -F arch=b64 -S creat -F exit=-EACCES -F auid>=1000 -F auid!=unset -k access\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000172", - "CCI-002884" - ], - "nist": [ - "AU-12 c", - "MA-4 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000458-GPOS-00203, SRG-OS-000461-GPOS-00205, SRG-OS-000392-GPOS-00172\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204530", - "group_title": "SRG-OS-000064-GPOS-00033", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204530r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:801", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4654r462595_fix", - "fixtext_fixref": "F-4654r462595_fix", - "ident": [ - { - "text": "CCE-80385-8", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72123", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86747", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-030500", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204530r603261_rule", - "time": "2021-12-17T10:39:39", - "severity": "medium", - "version": "RHEL-07-030500", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-80385-8", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72123", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86747", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:801", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204531", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the open syscall.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000458-GPOS-00203, SRG-OS-000461-GPOS-00205, SRG-OS-000392-GPOS-00172", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:805", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"open\" syscall occur.\n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S open -F exit=-EPERM -F auid>=1000 -F auid!=unset -k access\n\n-a always,exit -F arch=b32 -S open -F exit=-EACCES -F auid>=1000 -F auid!=unset -k access\n\n-a always,exit -F arch=b64 -S open -F exit=-EPERM -F auid>=1000 -F auid!=unset -k access\n\n-a always,exit -F arch=b64 -S open -F exit=-EACCES -F auid>=1000 -F auid!=unset -k access\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000172", - "CCI-002884" - ], - "nist": [ - "AU-12 c", - "MA-4 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000458-GPOS-00203, SRG-OS-000461-GPOS-00205, SRG-OS-000392-GPOS-00172\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204531", - "group_title": "SRG-OS-000064-GPOS-00033", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204531r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:805", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4655r462598_fix", - "fixtext_fixref": "F-4655r462598_fix", - "ident": [ - { - "text": "CCE-80386-6", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86749", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72125", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-030510", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204531r603261_rule", - "time": "2021-12-17T10:39:39", - "severity": "medium", - "version": "RHEL-07-030510", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-80386-6", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86749", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72125", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:805", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204532", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the openat syscall.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000458-GPOS-00203, SRG-OS-000461-GPOS-00205, SRG-OS-000392-GPOS-00172", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:803", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"openat\" syscall occur.\n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S openat -F exit=-EPERM -F auid>=1000 -F auid!=unset -k access\n\n-a always,exit -F arch=b32 -S openat -F exit=-EACCES -F auid>=1000 -F auid!=unset -k access\n\n-a always,exit -F arch=b64 -S openat -F exit=-EPERM -F auid>=1000 -F auid!=unset -k access\n\n-a always,exit -F arch=b64 -S openat -F exit=-EACCES -F auid>=1000 -F auid!=unset -k access\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000172", - "CCI-002884" - ], - "nist": [ - "AU-12 c", - "MA-4 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000458-GPOS-00203, SRG-OS-000461-GPOS-00205, SRG-OS-000392-GPOS-00172\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204532", - "group_title": "SRG-OS-000064-GPOS-00033", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204532r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:803", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4656r462601_fix", - "fixtext_fixref": "F-4656r462601_fix", - "ident": [ - { - "text": "CCE-80387-4", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72127", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86751", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-030520", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204532r603261_rule", - "time": "2021-12-17T10:39:39", - "severity": "medium", - "version": "RHEL-07-030520", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-80387-4", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72127", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86751", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:803", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204533", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the open_by_handle_at syscall.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000458-GPOS-00203, SRG-OS-000461-GPOS-00205, SRG-OS-000392-GPOS-00172", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:804", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"open_by_handle_at\" syscall occur.\n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S open_by_handle_at -F exit=-EPERM -F auid>=1000 -F auid!=unset -k access\n\n-a always,exit -F arch=b32 -S open_by_handle_at -F exit=-EACCES -F auid>=1000 -F auid!=unset -k access\n\n-a always,exit -F arch=b64 -S open_by_handle_at -F exit=-EPERM -F auid>=1000 -F auid!=unset -k access\n\n-a always,exit -F arch=b64 -S open_by_handle_at -F exit=-EACCES -F auid>=1000 -F auid!=unset -k access\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000172", - "CCI-002884" - ], - "nist": [ - "AU-12 c", - "MA-4 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000458-GPOS-00203, SRG-OS-000461-GPOS-00205, SRG-OS-000392-GPOS-00172\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204533", - "group_title": "SRG-OS-000064-GPOS-00033", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204533r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:804", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4657r462604_fix", - "fixtext_fixref": "F-4657r462604_fix", - "ident": [ - { - "text": "CCE-80388-2", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86753", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72129", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-030530", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204533r603261_rule", - "time": "2021-12-17T10:39:39", - "severity": "medium", - "version": "RHEL-07-030530", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-80388-2", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86753", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72129", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:804", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204534", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the truncate syscall.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000458-GPOS-00203, SRG-OS-000461-GPOS-00205, SRG-OS-000392-GPOS-00172", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:806", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"truncate\" syscall occur.\n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S truncate -F exit=-EPERM -F auid>=1000 -F auid!=unset -k access\n\n-a always,exit -F arch=b32 -S truncate -F exit=-EACCES -F auid>=1000 -F auid!=unset -k access\n\n-a always,exit -F arch=b64 -S truncate -F exit=-EPERM -F auid>=1000 -F auid!=unset -k access\n\n-a always,exit -F arch=b64 -S truncate -F exit=-EACCES -F auid>=1000 -F auid!=unset -k access\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000172", - "CCI-002884" - ], - "nist": [ - "AU-12 c", - "MA-4 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000458-GPOS-00203, SRG-OS-000461-GPOS-00205, SRG-OS-000392-GPOS-00172\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204534", - "group_title": "SRG-OS-000064-GPOS-00033", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204534r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:806", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4658r462607_fix", - "fixtext_fixref": "F-4658r462607_fix", - "ident": [ - { - "text": "CCE-80389-0", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86755", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72131", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-030540", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204534r603261_rule", - "time": "2021-12-17T10:39:39", - "severity": "medium", - "version": "RHEL-07-030540", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-80389-0", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86755", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72131", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:806", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204535", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the ftruncate syscall.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000458-GPOS-00203, SRG-OS-000461-GPOS-00205, SRG-OS-000392-GPOS-00172", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:802", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"ftruncate\" syscall occur.\n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S ftruncate -F exit=-EPERM -F auid>=1000 -F auid!=unset -k access\n\n-a always,exit -F arch=b32 -S ftruncate -F exit=-EACCES -F auid>=1000 -F auid!=unset -k access\n\n-a always,exit -F arch=b64 -S ftruncate -F exit=-EPERM -F auid>=1000 -F auid!=unset -k access\n\n-a always,exit -F arch=b64 -S ftruncate -F exit=-EACCES -F auid>=1000 -F auid!=unset -k access\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000172", - "CCI-002884" - ], - "nist": [ - "AU-12 c", - "MA-4 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000458-GPOS-00203, SRG-OS-000461-GPOS-00205, SRG-OS-000392-GPOS-00172\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204535", - "group_title": "SRG-OS-000064-GPOS-00033", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204535r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:802", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4659r462610_fix", - "fixtext_fixref": "F-4659r462610_fix", - "ident": [ - { - "text": "CCE-80390-8", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72133", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86757", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-030550", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204535r603261_rule", - "time": "2021-12-17T10:39:39", - "severity": "medium", - "version": "RHEL-07-030550", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-80390-8", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72133", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86757", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:802", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204536", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the semanage command.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000392-GPOS-00172, SRG-OS-000463-GPOS-00207, SRG-OS-000465-GPOS-00209", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:618", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"semanage\" command occur.\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F path=/usr/sbin/semanage -F auid>=1000 -F auid!=unset -k privileged-priv_change\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000172", - "CCI-002884" - ], - "nist": [ - "AU-12 c", - "MA-4 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000392-GPOS-00172, SRG-OS-000463-GPOS-00207, SRG-OS-000465-GPOS-00209\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204536", - "group_title": "SRG-OS-000392-GPOS-00172", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204536r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:618", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4660r462613_fix", - "fixtext_fixref": "F-4660r462613_fix", - "ident": [ - { - "text": "CCE-80391-6", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86759", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72135", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-030560", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204536r603261_rule", - "time": "2021-12-17T10:39:39", - "severity": "medium", - "version": "RHEL-07-030560", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-80391-6", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86759", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72135", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:618", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204537", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the setsebool command.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000392-GPOS-00172, SRG-OS-000463-GPOS-00207, SRG-OS-000465-GPOS-00209", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:621", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"setsebool\" command occur.\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F path=/usr/sbin/setsebool -F auid>=1000 -F auid!=unset -k privileged-priv_change\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000172", - "CCI-002884" - ], - "nist": [ - "AU-12 c", - "MA-4 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000392-GPOS-00172, SRG-OS-000463-GPOS-00207, SRG-OS-000465-GPOS-00209\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204537", - "group_title": "SRG-OS-000392-GPOS-00172", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204537r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:621", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4661r462616_fix", - "fixtext_fixref": "F-4661r462616_fix", - "ident": [ - { - "text": "CCE-80392-4", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72137", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86761", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-030570", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204537r603261_rule", - "time": "2021-12-17T10:39:39", - "severity": "medium", - "version": "RHEL-07-030570", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-80392-4", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72137", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86761", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:621", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204538", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the chcon command.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000392-GPOS-00172, SRG-OS-000463-GPOS-00207, SRG-OS-000465-GPOS-00209", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:612", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"chcon\" command occur.\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F path=/usr/bin/chcon -F auid>=1000 -F auid!=unset -k privileged-priv_change\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000172", - "CCI-002884" - ], - "nist": [ - "AU-12 c", - "MA-4 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000392-GPOS-00172, SRG-OS-000463-GPOS-00207, SRG-OS-000465-GPOS-00209\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204538", - "group_title": "SRG-OS-000392-GPOS-00172", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204538r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:612", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4662r462619_fix", - "fixtext_fixref": "F-4662r462619_fix", - "ident": [ - { - "text": "CCE-80393-2", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72139", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86763", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-030580", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204538r603261_rule", - "time": "2021-12-17T10:39:39", - "severity": "medium", - "version": "RHEL-07-030580", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-80393-2", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72139", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86763", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:612", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204539", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the setfiles command.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000392-GPOS-00172, SRG-OS-000463-GPOS-00207, SRG-OS-000465-GPOS-00209", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:86765", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"setfiles\" command occur.\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F path=/usr/sbin/setfiles -F auid>=1000 -F auid!=unset -k privileged-priv_change\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000172", - "CCI-002884" - ], - "nist": [ - "AU-12 c", - "MA-4 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000392-GPOS-00172, SRG-OS-000463-GPOS-00207, SRG-OS-000465-GPOS-00209\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204539", - "group_title": "SRG-OS-000392-GPOS-00172", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204539r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:86765", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4663r462622_fix", - "fixtext_fixref": "F-4663r462622_fix", - "ident": [ - { - "text": "V-72141", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86765", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-030590", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204539r603261_rule", - "time": "2021-12-17T10:39:39", - "severity": "medium", - "version": "RHEL-07-030590", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "V-72141", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86765", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:86765", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204540", - "title": "The Red Hat Enterprise Linux operating system must generate audit records for all unsuccessful account access events.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nSatisfies: SRG-OS-000392-GPOS-00172, SRG-OS-000470-GPOS-00214, SRG-OS-000473-GPOS-00218", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:675", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when unsuccessful account access events occur. \n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\": \n\n-w /var/run/faillock -p wa -k logins\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000126", - "CCI-000172", - "CCI-002884" - ], - "nist": [ - "AU-2 c", - "AU-12 c", - "MA-4 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000392-GPOS-00172, SRG-OS-000470-GPOS-00214, SRG-OS-000473-GPOS-00218\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204540", - "group_title": "SRG-OS-000392-GPOS-00172", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204540r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:675", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4664r88813_fix", - "fixtext_fixref": "F-4664r88813_fix", - "ident": [ - { - "text": "CCE-80383-3", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72145", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86769", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000126", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-030610", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204540r603261_rule", - "time": "2021-12-17T10:39:39", - "severity": "medium", - "version": "RHEL-07-030610", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-80383-3", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72145", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86769", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000126", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:675", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204541", - "title": "The Red Hat Enterprise Linux operating system must generate audit records for all successful account access events.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nSatisfies: SRG-OS-000392-GPOS-00172, SRG-OS-000470-GPOS-00214, SRG-OS-000473-GPOS-00218", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:676", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful account access events occur. \n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\": \n\n-w /var/log/lastlog -p wa -k logins\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000126", - "CCI-000172", - "CCI-002884" - ], - "nist": [ - "AU-2 c", - "AU-12 c", - "MA-4 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000392-GPOS-00172, SRG-OS-000470-GPOS-00214, SRG-OS-000473-GPOS-00218\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204541", - "group_title": "SRG-OS-000392-GPOS-00172", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204541r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:676", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4665r88816_fix", - "fixtext_fixref": "F-4665r88816_fix", - "ident": [ - { - "text": "CCE-80384-1", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72147", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86771", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000126", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-030620", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204541r603261_rule", - "time": "2021-12-17T10:39:39", - "severity": "medium", - "version": "RHEL-07-030620", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-80384-1", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72147", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86771", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000126", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:676", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204542", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the passwd command.", - "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged password commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:733", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"passwd\" command occur.\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F path=/usr/bin/passwd -F auid>=1000 -F auid!=unset -k privileged-passwd\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000135", - "CCI-000172", - "CCI-002884" - ], - "nist": [ - "AU-3 (1)", - "AU-12 c", - "MA-4 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged password commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204542", - "group_title": "SRG-OS-000042-GPOS-00020", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204542r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:733", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4666r462625_fix", - "fixtext_fixref": "F-4666r462625_fix", - "ident": [ - { - "text": "CCE-80395-7", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86773", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72149", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000135", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-030630", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204542r603261_rule", - "time": "2021-12-17T10:39:39", - "severity": "medium", - "version": "RHEL-07-030630", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-80395-7", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86773", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72149", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000135", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:733", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204543", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the unix_chkpwd command.", - "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged password commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:760", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"unix_chkpwd\" command occur.\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F path=/usr/sbin/unix_chkpwd -F auid>=1000 -F auid!=unset -k privileged-passwd\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000135", - "CCI-000172", - "CCI-002884" - ], - "nist": [ - "AU-3 (1)", - "AU-12 c", - "MA-4 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged password commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204543", - "group_title": "SRG-OS-000042-GPOS-00020", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204543r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:760", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4667r462628_fix", - "fixtext_fixref": "F-4667r462628_fix", - "ident": [ - { - "text": "CCE-80396-5", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86775", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72151", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000135", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-030640", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204543r603261_rule", - "time": "2021-12-17T10:39:39", - "severity": "medium", - "version": "RHEL-07-030640", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-80396-5", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86775", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72151", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000135", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:760", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204544", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the gpasswd command.", - "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged password commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:724", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"gpasswd\" command occur.\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F path=/usr/bin/gpasswd -F auid>=1000 -F auid!=unset -k privileged-passwd\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000135", - "CCI-000172", - "CCI-002884" - ], - "nist": [ - "AU-3 (1)", - "AU-12 c", - "MA-4 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged password commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204544", - "group_title": "SRG-OS-000042-GPOS-00020", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204544r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:724", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4668r462631_fix", - "fixtext_fixref": "F-4668r462631_fix", - "ident": [ - { - "text": "CCE-80397-3", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86777", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72153", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000135", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-030650", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204544r603261_rule", - "time": "2021-12-17T10:39:39", - "severity": "medium", - "version": "RHEL-07-030650", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-80397-3", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86777", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72153", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000135", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:724", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204545", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the chage command.", - "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged password commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:715", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"chage\" command occur.\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F path=/usr/bin/chage -F auid>=1000 -F auid!=unset -k privileged-passwd\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000135", - "CCI-000172", - "CCI-002884" - ], - "nist": [ - "AU-3 (1)", - "AU-12 c", - "MA-4 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged password commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204545", - "group_title": "SRG-OS-000042-GPOS-00020", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204545r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:715", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4669r462634_fix", - "fixtext_fixref": "F-4669r462634_fix", - "ident": [ - { - "text": "CCE-80398-1", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86779", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72155", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000135", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-030660", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204545r603261_rule", - "time": "2021-12-17T10:39:39", - "severity": "medium", - "version": "RHEL-07-030660", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-80398-1", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86779", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72155", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000135", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:715", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204546", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the userhelper command.", - "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged password commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:763", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"userhelper\" command occur.\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F path=/usr/sbin/userhelper -F auid>=1000 -F auid!=unset -k privileged-passwd\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000135", - "CCI-000172", - "CCI-002884" - ], - "nist": [ - "AU-3 (1)", - "AU-12 c", - "MA-4 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged password commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204546", - "group_title": "SRG-OS-000042-GPOS-00020", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204546r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:763", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4670r462637_fix", - "fixtext_fixref": "F-4670r462637_fix", - "ident": [ - { - "text": "CCE-80399-9", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86781", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72157", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000135", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-030670", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204546r603261_rule", - "time": "2021-12-17T10:39:39", - "severity": "medium", - "version": "RHEL-07-030670", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-80399-9", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86781", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72157", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000135", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:763", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204547", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the su command.", - "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged access commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:748", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"su\" command occur.\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\": \n\n-a always,exit -F path=/usr/bin/su -F auid>=1000 -F auid!=unset -k privileged-priv_change \n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000130", - "CCI-000135", - "CCI-000172", - "CCI-002884" - ], - "nist": [ - "AU-3 a", - "AU-3 (1)", - "AU-12 c", - "MA-4 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged access commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204547", - "group_title": "SRG-OS-000037-GPOS-00015", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204547r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:748", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4671r462640_fix", - "fixtext_fixref": "F-4671r462640_fix", - "ident": [ - { - "text": "CCE-80400-5", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86783", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72159", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000130", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000135", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-030680", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204547r603261_rule", - "time": "2021-12-17T10:39:39", - "severity": "medium", - "version": "RHEL-07-030680", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-80400-5", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86783", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72159", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000130", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000135", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:748", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204548", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the sudo command.", - "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged access commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:751", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"sudo\" command occur.\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\": \n\n-a always,exit -F path=/usr/bin/sudo -F auid>=1000 -F auid!=unset -k privileged-priv_change \n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000130", - "CCI-000135", - "CCI-000172", - "CCI-002884" - ], - "nist": [ - "AU-3 a", - "AU-3 (1)", - "AU-12 c", - "MA-4 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged access commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204548", - "group_title": "SRG-OS-000037-GPOS-00015", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204548r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:751", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4672r462643_fix", - "fixtext_fixref": "F-4672r462643_fix", - "ident": [ - { - "text": "CCE-80401-3", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72161", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86785", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000130", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000135", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-030690", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204548r603261_rule", - "time": "2021-12-17T10:39:39", - "severity": "medium", - "version": "RHEL-07-030690", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-80401-3", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72161", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86785", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000130", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000135", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:751", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204549", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the sudoers file and all files in the /etc/sudoers.d/ directory.", - "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged access commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\n\nSatisfies: SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:773", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to access the \"/etc/sudoers\" file and files in the \"/etc/sudoers.d/\" directory.\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-w /etc/sudoers -p wa -k privileged-actions\n\n-w /etc/sudoers.d/ -p wa -k privileged-actions\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000130", - "CCI-000135", - "CCI-000172", - "CCI-002884" - ], - "nist": [ - "AU-3 a", - "AU-3 (1)", - "AU-12 c", - "MA-4 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged access commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nSatisfies: SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204549", - "group_title": "SRG-OS-000037-GPOS-00015", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204549r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:773", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4673r88840_fix", - "fixtext_fixref": "F-4673r88840_fix", - "ident": [ - { - "text": "CCE-27461-3", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72163", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86787", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000130", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000135", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-030700", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204549r603261_rule", - "time": "2021-12-17T10:39:39", - "severity": "medium", - "version": "RHEL-07-030700", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-27461-3", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72163", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86787", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000130", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000135", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:773", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204550", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the newgrp command.", - "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged access commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:727", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"newgrp\" command occur.\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\": \n\n-a always,exit -F path=/usr/bin/newgrp -F auid>=1000 -F auid!=unset -k privileged-priv_change\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000130", - "CCI-000135", - "CCI-000172", - "CCI-002884" - ], - "nist": [ - "AU-3 a", - "AU-3 (1)", - "AU-12 c", - "MA-4 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged access commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204550", - "group_title": "SRG-OS-000037-GPOS-00015", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204550r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:727", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4674r462646_fix", - "fixtext_fixref": "F-4674r462646_fix", - "ident": [ - { - "text": "CCE-80403-9", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72165", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86789", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000130", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000135", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-030710", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204550r603261_rule", - "time": "2021-12-17T10:39:39", - "severity": "medium", - "version": "RHEL-07-030710", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-80403-9", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72165", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86789", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000130", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000135", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:727", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204551", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the chsh command.", - "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged access commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:718", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"chsh\" command occur.\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\": \n\n-a always,exit -F path=/usr/bin/chsh -F auid>=1000 -F auid!=unset -k privileged-priv_change\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000130", - "CCI-000135", - "CCI-000172", - "CCI-002884" - ], - "nist": [ - "AU-3 a", - "AU-3 (1)", - "AU-12 c", - "MA-4 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged access commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204551", - "group_title": "SRG-OS-000037-GPOS-00015", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204551r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:718", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4675r462649_fix", - "fixtext_fixref": "F-4675r462649_fix", - "ident": [ - { - "text": "CCE-80404-7", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86791", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72167", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000130", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000135", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-030720", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204551r603261_rule", - "time": "2021-12-17T10:39:39", - "severity": "medium", - "version": "RHEL-07-030720", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-80404-7", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86791", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72167", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000130", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000135", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:718", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204552", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the mount command and syscall.", - "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged mount commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:686", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"mount\" command and syscall occur.\n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S mount -F auid>=1000 -F auid!=unset -k privileged-mount\n-a always,exit -F arch=b64 -S mount -F auid>=1000 -F auid!=unset -k privileged-mount\n-a always,exit -F path=/usr/bin/mount -F auid>=1000 -F auid!=unset -k privileged-mount\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000135", - "CCI-002884" - ], - "nist": [ - "AU-3 (1)", - "MA-4 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged mount commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204552", - "group_title": "SRG-OS-000042-GPOS-00020", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204552r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:686", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4676r462652_fix", - "fixtext_fixref": "F-4676r462652_fix", - "ident": [ - { - "text": "CCE-27447-2", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72171", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86795", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000135", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-030740", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204552r603261_rule", - "time": "2021-12-17T10:39:39", - "severity": "medium", - "version": "RHEL-07-030740", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-27447-2", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72171", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86795", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000135", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:686", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204553", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the umount command.", - "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged mount commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:757", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"umount\" command occur.\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\": \n\n-a always,exit -F path=/usr/bin/umount -F auid>=1000 -F auid!=unset -k privileged-mount\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000135", - "CCI-002884" - ], - "nist": [ - "AU-3 (1)", - "MA-4 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged mount commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204553", - "group_title": "SRG-OS-000042-GPOS-00020", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204553r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:757", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4677r462655_fix", - "fixtext_fixref": "F-4677r462655_fix", - "ident": [ - { - "text": "CCE-80405-4", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72173", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86797", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000135", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-030750", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204553r603261_rule", - "time": "2021-12-17T10:39:39", - "severity": "medium", - "version": "RHEL-07-030750", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-80405-4", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72173", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86797", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000135", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:757", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204554", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the postdrop command.", - "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged postfix commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:736", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"postdrop\" command occur.\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\": \n\n-a always,exit -F path=/usr/sbin/postdrop -F auid>=1000 -F auid!=unset -k privileged-postfix\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000135", - "CCI-002884" - ], - "nist": [ - "AU-3 (1)", - "MA-4 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged postfix commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204554", - "group_title": "SRG-OS-000042-GPOS-00020", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204554r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:736", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4678r462658_fix", - "fixtext_fixref": "F-4678r462658_fix", - "ident": [ - { - "text": "CCE-80406-2", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72175", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86799", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000135", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-030760", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204554r603261_rule", - "time": "2021-12-17T10:39:39", - "severity": "medium", - "version": "RHEL-07-030760", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-80406-2", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72175", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86799", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000135", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:736", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204555", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the postqueue command.", - "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged postfix commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:739", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"postqueue\" command occur. \n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\": \n\n-a always,exit -F path=/usr/sbin/postqueue -F auid>=1000 -F auid!=unset -k privileged-postfix\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000135", - "CCI-002884" - ], - "nist": [ - "AU-3 (1)", - "MA-4 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged postfix commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204555", - "group_title": "SRG-OS-000042-GPOS-00020", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204555r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:739", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4679r462661_fix", - "fixtext_fixref": "F-4679r462661_fix", - "ident": [ - { - "text": "CCE-80407-0", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86801", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72177", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000135", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-030770", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204555r603261_rule", - "time": "2021-12-17T10:39:39", - "severity": "medium", - "version": "RHEL-07-030770", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-80407-0", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86801", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72177", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000135", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:739", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204556", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the ssh-keysign command.", - "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged ssh commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:745", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"ssh-keysign\" command occur. \n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\": \n\n-a always,exit -F path=/usr/libexec/openssh/ssh-keysign -F auid>=1000 -F auid!=unset -k privileged-ssh\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000135", - "CCI-000172", - "CCI-002884" - ], - "nist": [ - "AU-3 (1)", - "AU-12 c", - "MA-4 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged ssh commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204556", - "group_title": "SRG-OS-000042-GPOS-00020", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204556r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:745", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4680r462664_fix", - "fixtext_fixref": "F-4680r462664_fix", - "ident": [ - { - "text": "CCE-80408-8", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86803", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72179", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000135", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-030780", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204556r603261_rule", - "time": "2021-12-17T10:39:39", - "severity": "medium", - "version": "RHEL-07-030780", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-80408-8", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86803", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72179", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000135", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:745", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204557", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the crontab command.", - "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:721", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"crontab\" command occur. \n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\": \n\n-a always,exit -F path=/usr/bin/crontab -F auid>=1000 -F auid!=unset -k privileged-cron\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000135", - "CCI-000172", - "CCI-002884" - ], - "nist": [ - "AU-3 (1)", - "AU-12 c", - "MA-4 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204557", - "group_title": "SRG-OS-000042-GPOS-00020", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204557r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:721", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4681r462667_fix", - "fixtext_fixref": "F-4681r462667_fix", - "ident": [ - { - "text": "CCE-80410-4", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86807", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72183", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000135", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-030800", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204557r603261_rule", - "time": "2021-12-17T10:39:39", - "severity": "medium", - "version": "RHEL-07-030800", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-80410-4", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86807", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72183", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000135", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:721", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204558", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the pam_timestamp_check command.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:730", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"pam_timestamp_check\" command occur. \n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\": \n\n-a always,exit -F path=/usr/sbin/pam_timestamp_check -F auid>=1000 -F auid!=unset -k privileged-pam\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000172" - ], - "nist": [ - "AU-12 c" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204558", - "group_title": "SRG-OS-000471-GPOS-00215", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204558r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:730", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4682r462670_fix", - "fixtext_fixref": "F-4682r462670_fix", - "ident": [ - { - "text": "CCE-80411-2", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72185", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86809", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-030810", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204558r603261_rule", - "time": "2021-12-17T10:39:39", - "severity": "medium", - "version": "RHEL-07-030810", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-80411-2", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72185", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86809", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:730", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204559", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the create_module syscall.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one. \n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nSatisfies: SRG-OS-000471-GPOS-00216, SRG-OS-000477-GPOS-00222", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:93705", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"create_module\" syscall occur.\n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S create_module -k module-change\n\n-a always,exit -F arch=b64 -S create_module -k module-change\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000172" - ], - "nist": [ - "AU-12 c" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one. \\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000471-GPOS-00216, SRG-OS-000477-GPOS-00222\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204559", - "group_title": "SRG-OS-000471-GPOS-00216", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204559r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:93705", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4683r88870_fix", - "fixtext_fixref": "F-4683r88870_fix", - "ident": [ - { - "text": "V-78999", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-93705", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-030819", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204559r603261_rule", - "time": "2021-12-17T10:39:39", - "severity": "medium", - "version": "RHEL-07-030819", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "V-78999", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-93705", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:93705", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204560", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the init_module syscall.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one. \n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nSatisfies: SRG-OS-000471-GPOS-00216, SRG-OS-000477-GPOS-00222", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:657", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"init_module\" syscall occur. \n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S init_module -k module-change\n\n-a always,exit -F arch=b64 -S init_module -k module-change\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000172" - ], - "nist": [ - "AU-12 c" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one. \\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000471-GPOS-00216, SRG-OS-000477-GPOS-00222\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204560", - "group_title": "SRG-OS-000471-GPOS-00216", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204560r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:657", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4684r88873_fix", - "fixtext_fixref": "F-4684r88873_fix", - "ident": [ - { - "text": "CCE-80414-6", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72187", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86811", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-030820", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204560r603261_rule", - "time": "2021-12-17T10:39:39", - "severity": "medium", - "version": "RHEL-07-030820", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-80414-6", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72187", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86811", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:657", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204561", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the finit_module syscall.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one. \n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nSatisfies: SRG-OS-000471-GPOS-00216, SRG-OS-000477-GPOS-00222", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:93707", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"finit_module\" syscall occur. \n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\": \n\n-a always,exit -F arch=b32 -S finit_module -k module-change\n\n-a always,exit -F arch=b64 -S finit_module -k module-change\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000172" - ], - "nist": [ - "AU-12 c" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one. \\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000471-GPOS-00216, SRG-OS-000477-GPOS-00222\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204561", - "group_title": "SRG-OS-000471-GPOS-00216", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204561r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:93707", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4685r88876_fix", - "fixtext_fixref": "F-4685r88876_fix", - "ident": [ - { - "text": "CCE-80547-3", - "system": "http://cce.mitre.org" - }, - { - "text": "V-79001", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-93707", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-030821", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204561r603261_rule", - "time": "2021-12-17T10:39:39", - "severity": "medium", - "version": "RHEL-07-030821", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-80547-3", - "system": "http://cce.mitre.org" - }, - { - "text": "V-79001", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-93707", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:93707", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204562", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the delete_module syscall.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one. \n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nSatisfies: SRG-OS-000471-GPOS-00216, SRG-OS-000477-GPOS-00222", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:658", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"delete_module\" syscall occur. \n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\": \n\n-a always,exit -F arch=b32 -S delete_module -k module-change\n\n-a always,exit -F arch=b64 -S delete_module -k module-change\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000172" - ], - "nist": [ - "AU-12 c" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one. \\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000471-GPOS-00216, SRG-OS-000477-GPOS-00222\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204562", - "group_title": "SRG-OS-000471-GPOS-00216", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204562r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:658", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4686r88879_fix", - "fixtext_fixref": "F-4686r88879_fix", - "ident": [ - { - "text": "CCE-80415-3", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72189", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86813", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-030830", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204562r603261_rule", - "time": "2021-12-17T10:39:39", - "severity": "medium", - "version": "RHEL-07-030830", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-80415-3", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72189", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86813", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:658", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204563", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the kmod command.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one. \n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000471-GPOS-00216, SRG-OS-000477-GPOS-00222", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:86815", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"kmod\" command occur. \n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-w /usr/bin/kmod -p x -F auid!=unset -k module-change\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000172" - ], - "nist": [ - "AU-12 c" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one. \\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000471-GPOS-00216, SRG-OS-000477-GPOS-00222\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204563", - "group_title": "SRG-OS-000471-GPOS-00216", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204563r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:86815", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4687r462673_fix", - "fixtext_fixref": "F-4687r462673_fix", - "ident": [ - { - "text": "SV-86815", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72191", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-030840", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204563r603261_rule", - "time": "2021-12-17T10:39:39", - "severity": "medium", - "version": "RHEL-07-030840", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "SV-86815", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72191", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:86815", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204564", - "title": "The Red Hat Enterprise Linux operating system must generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/passwd.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nSatisfies: SRG-OS-000004-GPOS-00004, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000476-GPOS-00221", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:875", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records for all account creations, modifications, disabling, and termination events that affect \"/etc/passwd\".\n\nAdd or update the following rule \"/etc/audit/rules.d/audit.rules\":\n\n-w /etc/passwd -p wa -k identity\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000018", - "CCI-000172", - "CCI-001403", - "CCI-002130" - ], - "nist": [ - "AC-2 (4)", - "AU-12 c", - "AC-2 (4)", - "AC-2 (4)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000004-GPOS-00004, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000476-GPOS-00221\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204564", - "group_title": "SRG-OS-000004-GPOS-00004", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204564r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:875", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4688r88885_fix", - "fixtext_fixref": "F-4688r88885_fix", - "ident": [ - { - "text": "CCE-80435-1", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86821", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72197", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000018", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001403", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002130", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-030870", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204564r603261_rule", - "time": "2021-12-17T10:39:39", - "severity": "medium", - "version": "RHEL-07-030870", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-80435-1", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86821", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72197", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000018", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001403", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002130", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:875", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204565", - "title": "The Red Hat Enterprise Linux operating system must generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/group.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:866", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records for all account creations, modifications, disabling, and termination events that affect \"/etc/group\".\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-w /etc/group -p wa -k identity\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000018", - "CCI-000172", - "CCI-001403", - "CCI-002130" - ], - "nist": [ - "AC-2 (4)", - "AU-12 c", - "AC-2 (4)", - "AC-2 (4)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204565", - "group_title": "SRG-OS-000004-GPOS-00004", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204565r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:866", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4689r88888_fix", - "fixtext_fixref": "F-4689r88888_fix", - "ident": [ - { - "text": "CCE-80433-6", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-87817", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-73165", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000018", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001403", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002130", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-030871", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204565r603261_rule", - "time": "2021-12-17T10:39:39", - "severity": "medium", - "version": "RHEL-07-030871", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-80433-6", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-87817", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-73165", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000018", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001403", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002130", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:866", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204566", - "title": "The Red Hat Enterprise Linux operating system must generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/gshadow.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:869", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records for all account creations, modifications, disabling, and termination events that affect \"/etc/gshadow\".\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-w /etc/gshadow -p wa -k identity\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000018", - "CCI-000172", - "CCI-001403", - "CCI-002130" - ], - "nist": [ - "AC-2 (4)", - "AU-12 c", - "AC-2 (4)", - "AC-2 (4)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204566", - "group_title": "SRG-OS-000004-GPOS-00004", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204566r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:869", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4690r88891_fix", - "fixtext_fixref": "F-4690r88891_fix", - "ident": [ - { - "text": "CCE-80432-8", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-87819", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-73167", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000018", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001403", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002130", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-030872", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204566r603261_rule", - "time": "2021-12-17T10:39:39", - "severity": "medium", - "version": "RHEL-07-030872", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-80432-8", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-87819", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-73167", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000018", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001403", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002130", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:869", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204567", - "title": "The Red Hat Enterprise Linux operating system must generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/shadow.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:878", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/shadow.\n\nAdd or update the following file system rule in \"/etc/audit/rules.d/audit.rules\":\n\n-w /etc/shadow -p wa -k identity\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000018", - "CCI-000172", - "CCI-001403", - "CCI-002130" - ], - "nist": [ - "AC-2 (4)", - "AU-12 c", - "AC-2 (4)", - "AC-2 (4)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204567", - "group_title": "SRG-OS-000004-GPOS-00004", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204567r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:878", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4691r88894_fix", - "fixtext_fixref": "F-4691r88894_fix", - "ident": [ - { - "text": "CCE-80431-0", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-87823", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-73171", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000018", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001403", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002130", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-030873", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204567r603261_rule", - "time": "2021-12-17T10:39:39", - "severity": "medium", - "version": "RHEL-07-030873", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-80431-0", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-87823", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-73171", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000018", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001403", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002130", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:878", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204568", - "title": "The Red Hat Enterprise Linux operating system must generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/security/opasswd.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:872", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/security/opasswd.\n\nAdd or update the following file system rule in \"/etc/audit/rules.d/audit.rules\":\n\n-w /etc/security/opasswd -p wa -k identity\n\nThe audit daemon must be restarted for the changes to take effect:\n# systemctl restart auditd", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000018", - "CCI-000172", - "CCI-001403", - "CCI-002130" - ], - "nist": [ - "AC-2 (4)", - "AU-12 c", - "AC-2 (4)", - "AC-2 (4)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204568", - "group_title": "SRG-OS-000004-GPOS-00004", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204568r744115_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:872", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4692r744114_fix", - "fixtext_fixref": "F-4692r744114_fix", - "ident": [ - { - "text": "CCE-80430-2", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-87825", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-73173", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000018", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001403", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002130", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-030874", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204568r744115_rule", - "time": "2021-12-17T10:39:39", - "severity": "medium", - "version": "RHEL-07-030874", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-80430-2", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-87825", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-73173", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000018", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001403", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002130", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:872", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204569", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the rename syscall.", - "desc": "If the system is not configured to audit certain activities and write them to an audit log, it is more difficult to detect and track system compromises and damages incurred during a system compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000466-GPOS-00210, SRG-OS-000467-GPOS-00211, SRG-OS-000468-GPOS-00212, SRG-OS-000392-GPOS-00172", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:628", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"rename\" syscall occur.\n\nAdd the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S rename -F auid>=1000 -F auid!=unset -k delete\n\n-a always,exit -F arch=b64 -S rename -F auid>=1000 -F auid!=unset -k delete\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000172", - "CCI-002884" - ], - "nist": [ - "AU-12 c", - "MA-4 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"If the system is not configured to audit certain activities and write them to an audit log, it is more difficult to detect and track system compromises and damages incurred during a system compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000466-GPOS-00210, SRG-OS-000467-GPOS-00211, SRG-OS-000468-GPOS-00212, SRG-OS-000392-GPOS-00172\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204569", - "group_title": "SRG-OS-000466-GPOS-00210", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204569r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:628", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4693r462676_fix", - "fixtext_fixref": "F-4693r462676_fix", - "ident": [ - { - "text": "CCE-27206-2", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86823", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72199", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-030880", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204569r603261_rule", - "time": "2021-12-17T10:39:39", - "severity": "medium", - "version": "RHEL-07-030880", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-27206-2", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86823", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72199", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:628", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204570", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the renameat syscall.", - "desc": "If the system is not configured to audit certain activities and write them to an audit log, it is more difficult to detect and track system compromises and damages incurred during a system compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000466-GPOS-00210, SRG-OS-000467-GPOS-00211, SRG-OS-000468-GPOS-00212, SRG-OS-000392-GPOS-00172", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:629", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"renameat\" syscall occur.\n\nAdd the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S renameat -F auid>=1000 -F auid!=unset -k delete\n\n-a always,exit -F arch=b64 -S renameat -F auid>=1000 -F auid!=unset -k delete\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000172", - "CCI-002884" - ], - "nist": [ - "AU-12 c", - "MA-4 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"If the system is not configured to audit certain activities and write them to an audit log, it is more difficult to detect and track system compromises and damages incurred during a system compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000466-GPOS-00210, SRG-OS-000467-GPOS-00211, SRG-OS-000468-GPOS-00212, SRG-OS-000392-GPOS-00172\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204570", - "group_title": "SRG-OS-000466-GPOS-00210", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204570r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:629", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4694r462679_fix", - "fixtext_fixref": "F-4694r462679_fix", - "ident": [ - { - "text": "CCE-80413-8", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86825", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72201", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-030890", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204570r603261_rule", - "time": "2021-12-17T10:39:39", - "severity": "medium", - "version": "RHEL-07-030890", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-80413-8", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86825", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72201", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:629", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204571", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the rmdir syscall.", - "desc": "If the system is not configured to audit certain activities and write them to an audit log, it is more difficult to detect and track system compromises and damages incurred during a system compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000466-GPOS-00210, SRG-OS-000467-GPOS-00211, SRG-OS-000468-GPOS-00212, SRG-OS-000392-GPOS-00172", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:625", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"rmdir\" syscall occur.\n\nAdd the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S rmdir -F auid>=1000 -F auid!=unset -k delete\n\n-a always,exit -F arch=b64 -S rmdir -F auid>=1000 -F auid!=unset -k delete\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000172", - "CCI-002884" - ], - "nist": [ - "AU-12 c", - "MA-4 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"If the system is not configured to audit certain activities and write them to an audit log, it is more difficult to detect and track system compromises and damages incurred during a system compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000466-GPOS-00210, SRG-OS-000467-GPOS-00211, SRG-OS-000468-GPOS-00212, SRG-OS-000392-GPOS-00172\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204571", - "group_title": "SRG-OS-000466-GPOS-00210", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204571r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:625", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4695r462682_fix", - "fixtext_fixref": "F-4695r462682_fix", - "ident": [ - { - "text": "CCE-80412-0", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72203", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86827", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-030900", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204571r603261_rule", - "time": "2021-12-17T10:39:39", - "severity": "medium", - "version": "RHEL-07-030900", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-80412-0", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72203", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86827", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:625", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204572", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the unlink syscall.", - "desc": "If the system is not configured to audit certain activities and write them to an audit log, it is more difficult to detect and track system compromises and damages incurred during a system compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000466-GPOS-00210, SRG-OS-000467-GPOS-00211, SRG-OS-000468-GPOS-00212, SRG-OS-000392-GPOS-00172", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:626", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"unlink\" syscall occur.\n\nAdd the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S unlink -F auid>=1000 -F auid!=unset -k delete\n\n-a always,exit -F arch=b64 -S unlink -F auid>=1000 -F auid!=unset -k delete\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000172", - "CCI-002884" - ], - "nist": [ - "AU-12 c", - "MA-4 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"If the system is not configured to audit certain activities and write them to an audit log, it is more difficult to detect and track system compromises and damages incurred during a system compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000466-GPOS-00210, SRG-OS-000467-GPOS-00211, SRG-OS-000468-GPOS-00212, SRG-OS-000392-GPOS-00172\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204572", - "group_title": "SRG-OS-000466-GPOS-00210", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204572r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:626", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4696r462685_fix", - "fixtext_fixref": "F-4696r462685_fix", - "ident": [ - { - "text": "CCE-27206-2", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72205", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86829", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-030910", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204572r603261_rule", - "time": "2021-12-17T10:39:39", - "severity": "medium", - "version": "RHEL-07-030910", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-27206-2", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72205", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86829", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:626", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204573", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the unlinkat syscall.", - "desc": "If the system is not configured to audit certain activities and write them to an audit log, it is more difficult to detect and track system compromises and damages incurred during a system compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000466-GPOS-00210, SRG-OS-000467-GPOS-00211, SRG-OS-000468-GPOS-00212, SRG-OS-000392-GPOS-00172", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:627", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"unlinkat\" syscall occur.\n\nAdd the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S unlinkat -F auid>=1000 -F auid!=unset -k delete\n\n-a always,exit -F arch=b64 -S unlinkat -F auid>=1000 -F auid!=unset -k delete\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000172", - "CCI-002884" - ], - "nist": [ - "AU-12 c", - "MA-4 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"If the system is not configured to audit certain activities and write them to an audit log, it is more difficult to detect and track system compromises and damages incurred during a system compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000466-GPOS-00210, SRG-OS-000467-GPOS-00211, SRG-OS-000468-GPOS-00212, SRG-OS-000392-GPOS-00172\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204573", - "group_title": "SRG-OS-000466-GPOS-00210", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204573r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:627", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4697r462688_fix", - "fixtext_fixref": "F-4697r462688_fix", - "ident": [ - { - "text": "CCE-27206-2", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72207", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86831", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-030920", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204573r603261_rule", - "time": "2021-12-17T10:39:39", - "severity": "medium", - "version": "RHEL-07-030920", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-27206-2", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72207", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86831", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:627", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204576", - "title": "The Red Hat Enterprise Linux operating system must limit the number of concurrent sessions to 10 for all accounts and/or account types.", - "desc": "Operating system management includes the ability to control the number of users and user sessions that utilize an operating system. Limiting the number of allowed users and sessions per user is helpful in reducing the risks related to DoS attacks.\n\nThis requirement addresses concurrent sessions for information system accounts and does not address concurrent sessions by single users via multiple system accounts. The maximum number of concurrent sessions should be defined based on mission needs and the operational environment for each system.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:449", - "label": "check" - }, - { - "data": "Configure the operating system to limit the number of concurrent sessions to \"10\" for all accounts and/or account types.\n\nAdd the following line to the top of the /etc/security/limits.conf or in a \".conf\" file defined in /etc/security/limits.d/ :\n\n* hard maxlogins 10", - "label": "fix" - } - ], - "impact": 0.3, - "refs": [], - "tags": { - "cci": [ - "CCI-000054" - ], - "nist": [ - "AC-10" - ], - "severity": "low", - "description": "{\"VulnDiscussion\":\"Operating system management includes the ability to control the number of users and user sessions that utilize an operating system. Limiting the number of allowed users and sessions per user is helpful in reducing the risks related to DoS attacks.\\n\\nThis requirement addresses concurrent sessions for information system accounts and does not address concurrent sessions by single users via multiple system accounts. The maximum number of concurrent sessions should be defined based on mission needs and the operational environment for each system.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204576", - "group_title": "SRG-OS-000027-GPOS-00008", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204576r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-export": { - "export-name": "oval:mil.disa.stig.rhel7:var:3792", - "value-id": "xccdf_mil.disa.stig_value_var_accounts_max_concurrent_login_sessions" - }, - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:449", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4700r88921_fix", - "fixtext_fixref": "F-4700r88921_fix", - "ident": [ - { - "text": "CCE-27081-9", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72217", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86841", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000054", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-040000", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204576r603261_rule", - "time": "2021-12-17T10:39:39", - "severity": "low", - "version": "RHEL-07-040000", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-27081-9", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72217", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86841", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000054", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-export": { - "export-name": "oval:mil.disa.stig.rhel7:var:3792", - "value-id": "xccdf_mil.disa.stig_value_var_accounts_max_concurrent_login_sessions" - }, - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:449", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - }, - "value": { - "id": "xccdf_mil.disa.stig_value_var_accounts_max_concurrent_login_sessions", - "operator": "equals", - "type": "number", - "title": { - "text": "Maximum concurrent login sessions", - "xmlns:xhtml": "http://www.w3.org/1999/xhtml", - "xml:lang": "en-US" - }, - "description": { - "text": "Maximum number of concurrent sessions by a user", - "xmlns:xhtml": "http://www.w3.org/1999/xhtml", - "xml:lang": "en-US" - }, - "value": [ - 10, - { - "text": 1, - "selector": "1" - }, - { - "text": 3, - "selector": "3" - }, - { - "text": 5, - "selector": "5" - }, - { - "text": 10, - "selector": "10" - }, - { - "text": 15, - "selector": "15" - }, - { - "text": 20, - "selector": "20" - } - ] - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204578", - "title": "The Red Hat Enterprise Linux 7 operating system must implement DoD-approved encryption to protect the confidentiality of SSH connections.", - "desc": "Unapproved mechanisms that are used for authentication to the cryptographic module are not verified and therefore cannot be relied upon to provide confidentiality or integrity, and DoD data may be compromised.\n\nOperating systems utilizing encryption are required to use FIPS-compliant mechanisms for authenticating to cryptographic modules.\n\nFIPS 140-2 is the current standard for validating that mechanisms used to access cryptographic modules utilize authentication that meets DoD requirements. This allows for Security Levels 1, 2, 3, or 4 for use on a general purpose computing system.\n\nThe system will attempt to use the first cipher presented by the client that matches the server list. Listing the values \"strongest to weakest\" is a method to ensure the use of the strongest cipher available to secure the SSH connection.\n\nSatisfies: SRG-OS-000033-GPOS-00014, SRG-OS-000120-GPOS-00061, SRG-OS-000125-GPOS-00065, SRG-OS-000250-GPOS-00093, SRG-OS-000393-GPOS-00173", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:1399", - "label": "check" - }, - { - "data": "Configure SSH to use FIPS 140-2 approved cryptographic algorithms.\n\nAdd the following line (or modify the line to have the required value) to the \"/etc/ssh/sshd_config\" file (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor).\n\nCiphers aes256-ctr,aes192-ctr,aes128-ctr\n\nThe SSH service must be restarted for changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000068", - "CCI-000366", - "CCI-000803" - ], - "nist": [ - "AC-17 (2)", - "CM-6 b", - "IA-7" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Unapproved mechanisms that are used for authentication to the cryptographic module are not verified and therefore cannot be relied upon to provide confidentiality or integrity, and DoD data may be compromised.\\n\\nOperating systems utilizing encryption are required to use FIPS-compliant mechanisms for authenticating to cryptographic modules.\\n\\nFIPS 140-2 is the current standard for validating that mechanisms used to access cryptographic modules utilize authentication that meets DoD requirements. This allows for Security Levels 1, 2, 3, or 4 for use on a general purpose computing system.\\n\\nThe system will attempt to use the first cipher presented by the client that matches the server list. Listing the values \\\"strongest to weakest\\\" is a method to ensure the use of the strongest cipher available to secure the SSH connection.\\n\\nSatisfies: SRG-OS-000033-GPOS-00014, SRG-OS-000120-GPOS-00061, SRG-OS-000125-GPOS-00065, SRG-OS-000250-GPOS-00093, SRG-OS-000393-GPOS-00173\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204578", - "group_title": "SRG-OS-000033-GPOS-00014", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204578r744116_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:1399", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4702r622306_fix", - "fixtext_fixref": "F-4702r622306_fix", - "ident": [ - { - "text": "CCE-27295-5", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72221", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86845", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000068", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000803", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-040110", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204578r744116_rule", - "time": "2021-12-17T10:39:39", - "severity": "medium", - "version": "RHEL-07-040110", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-27295-5", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72221", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86845", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000068", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000803", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:1399", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204579", - "title": "The Red Hat Enterprise Linux operating system must be configured so that all network connections associated with a communication session are terminated at the end of the session or after 15 minutes of inactivity from the user at a command prompt, except to fulfill documented and validated mission requirements.", - "desc": "Terminating an idle session within a short time period reduces the window of opportunity for unauthorized personnel to take control of a management session enabled on the console or console port that has been left unattended. In addition, quickly terminating an idle session will also free up resources committed by the managed network element. \n\nTerminating network connections associated with communications sessions includes, for example, de-allocating associated TCP/IP address/port pairs at the operating system level and de-allocating networking assignments at the application level if multiple application sessions are using a single operating system-level network connection. This does not mean that the operating system terminates all sessions or network access; it only ends the inactive session and releases the resources associated with that session.\n\nSatisfies: SRG-OS-000029-GPOS-00010, SRG-OS-000163-GPOS-00072", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:510", - "label": "check" - }, - { - "data": "Configure the operating system to terminate all network connections associated with a communications session at the end of the session or after a period of inactivity.\n\nCreate a script to enforce the inactivity timeout (for example /etc/profile.d/tmout.sh) such as:\n\n#!/bin/bash\n\ndeclare -xr TMOUT=900", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001133", - "CCI-002361" - ], - "nist": [ - "SC-10", - "AC-12" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Terminating an idle session within a short time period reduces the window of opportunity for unauthorized personnel to take control of a management session enabled on the console or console port that has been left unattended. In addition, quickly terminating an idle session will also free up resources committed by the managed network element. \\n\\nTerminating network connections associated with communications sessions includes, for example, de-allocating associated TCP/IP address/port pairs at the operating system level and de-allocating networking assignments at the application level if multiple application sessions are using a single operating system-level network connection. This does not mean that the operating system terminates all sessions or network access; it only ends the inactive session and releases the resources associated with that session.\\n\\nSatisfies: SRG-OS-000029-GPOS-00010, SRG-OS-000163-GPOS-00072\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204579", - "group_title": "SRG-OS-000163-GPOS-00072", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204579r646844_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:510", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4703r646843_fix", - "fixtext_fixref": "F-4703r646843_fix", - "ident": [ - { - "text": "SV-86847", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72223", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001133", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002361", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-040160", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204579r646844_rule", - "time": "2021-12-17T10:39:39", - "severity": "medium", - "version": "RHEL-07-040160", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "SV-86847", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72223", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001133", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002361", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:510", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204584", - "title": "The Red Hat Enterprise Linux operating system must implement virtual address space randomization.", - "desc": "Address space layout randomization (ASLR) makes it more difficult for an attacker to predict the location of attack code he or she has introduced into a process's address space during an attempt at exploitation. Additionally, ASLR also makes it more difficult for an attacker to know the location of existing code in order to repurpose it using return-oriented programming (ROP) techniques.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:92521", - "label": "check" - }, - { - "data": "Configure the operating system implement virtual address space randomization.\n\nSet the system to the required kernel parameter by adding the following line to \"/etc/sysctl.conf\" or a config file in the /etc/sysctl.d/ directory (or modify the line to have the required value):\n\nkernel.randomize_va_space = 2\n\nIssue the following command to make the changes take effect:\n\n# sysctl --system", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Address space layout randomization (ASLR) makes it more difficult for an attacker to predict the location of attack code he or she has introduced into a process's address space during an attempt at exploitation. Additionally, ASLR also makes it more difficult for an attacker to know the location of existing code in order to repurpose it using return-oriented programming (ROP) techniques.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204584", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204584r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:92521", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4708r88945_fix", - "fixtext_fixref": "F-4708r88945_fix", - "ident": [ - { - "text": "SV-92521", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-77825", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-040201", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204584r603261_rule", - "time": "2021-12-17T10:39:40", - "severity": "medium", - "version": "RHEL-07-040201", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "SV-92521", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-77825", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:92521", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:40", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204585", - "title": "The Red Hat Enterprise Linux operating system must be configured so that all networked systems have SSH installed.", - "desc": "Without protection of the transmitted information, confidentiality and integrity may be compromised because unprotected communications can be intercepted and either read or altered. \n\nThis requirement applies to both internal and external networks and all types of information system components from which information can be transmitted (e.g., servers, mobile devices, notebook computers, printers, copiers, scanners, and facsimile machines). Communication paths outside the physical protection of a controlled boundary are exposed to the possibility of interception and modification. \n\nProtecting the confidentiality and integrity of organizational information can be accomplished by physical means (e.g., employing physical distribution systems) or by logical means (e.g., employing cryptographic techniques). If physical means of protection are employed, logical means (cryptography) do not have to be employed, and vice versa.\n\nSatisfies: SRG-OS-000423-GPOS-00187, SRG-OS-000424-GPOS-00188, SRG-OS-000425-GPOS-00189, SRG-OS-000426-GPOS-00190", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:4248", - "label": "check" - }, - { - "data": "Install SSH packages onto the host with the following commands:\n\n# yum install openssh-server.x86_64", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-002418", - "CCI-002420", - "CCI-002421", - "CCI-002422" - ], - "nist": [ - "SC-8", - "SC-8 (2)", - "SC-8 (1)", - "SC-8 (2)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without protection of the transmitted information, confidentiality and integrity may be compromised because unprotected communications can be intercepted and either read or altered. \\n\\nThis requirement applies to both internal and external networks and all types of information system components from which information can be transmitted (e.g., servers, mobile devices, notebook computers, printers, copiers, scanners, and facsimile machines). Communication paths outside the physical protection of a controlled boundary are exposed to the possibility of interception and modification. \\n\\nProtecting the confidentiality and integrity of organizational information can be accomplished by physical means (e.g., employing physical distribution systems) or by logical means (e.g., employing cryptographic techniques). If physical means of protection are employed, logical means (cryptography) do not have to be employed, and vice versa.\\n\\nSatisfies: SRG-OS-000423-GPOS-00187, SRG-OS-000424-GPOS-00188, SRG-OS-000425-GPOS-00189, SRG-OS-000426-GPOS-00190\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204585", - "group_title": "SRG-OS-000423-GPOS-00187", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204585r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:4248", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4709r88948_fix", - "fixtext_fixref": "F-4709r88948_fix", - "ident": [ - { - "text": "CCE-80215-7", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86857", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72233", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-002418", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002420", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002421", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002422", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-040300", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204585r603261_rule", - "time": "2021-12-17T10:39:40", - "severity": "medium", - "version": "RHEL-07-040300", - "weight": "10.000000", - "result": "pass", - "ident": [ - { - "text": "CCE-80215-7", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86857", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72233", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-002418", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002420", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002421", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002422", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:4248", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:40", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204587", - "title": "The Red Hat Enterprise Linux operating system must be configured so that all network connections associated with SSH traffic are terminated at the end of the session or after 10 minutes of inactivity, except to fulfill documented and validated mission requirements.", - "desc": "Terminating an idle SSH session within a short time period reduces the window of opportunity for unauthorized personnel to take control of a management session enabled on the console or console port that has been left unattended. In addition, quickly terminating an idle SSH session will also free up resources committed by the managed network element.\n\nTerminating network connections associated with communications sessions includes, for example, de-allocating associated TCP/IP address/port pairs at the operating system level and de-allocating networking assignments at the application level if multiple application sessions are using a single operating system-level network connection. This does not mean that the operating system terminates all sessions or network access; it only ends the inactive session and releases the resources associated with that session.\n\nSatisfies: SRG-OS-000163-GPOS-00072, SRG-OS-000279-GPOS-00109", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:1391", - "label": "check" - }, - { - "data": "Configure the operating system to automatically terminate a user session after inactivity time-outs have expired or at shutdown.\n\nAdd the following line (or modify the line to have the required value) to the \"/etc/ssh/sshd_config\" file (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor):\n\nClientAliveInterval 600\n\nThe SSH service must be restarted for changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001133", - "CCI-002361" - ], - "nist": [ - "SC-10", - "AC-12" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Terminating an idle SSH session within a short time period reduces the window of opportunity for unauthorized personnel to take control of a management session enabled on the console or console port that has been left unattended. In addition, quickly terminating an idle SSH session will also free up resources committed by the managed network element.\\n\\nTerminating network connections associated with communications sessions includes, for example, de-allocating associated TCP/IP address/port pairs at the operating system level and de-allocating networking assignments at the application level if multiple application sessions are using a single operating system-level network connection. This does not mean that the operating system terminates all sessions or network access; it only ends the inactive session and releases the resources associated with that session.\\n\\nSatisfies: SRG-OS-000163-GPOS-00072, SRG-OS-000279-GPOS-00109\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204587", - "group_title": "SRG-OS-000163-GPOS-00072", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204587r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-export": { - "export-name": "oval:mil.disa.stig.rhel7:var:3866", - "value-id": "xccdf_mil.disa.stig_value_sshd_idle_timeout_value" - }, - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:1391", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4711r88954_fix", - "fixtext_fixref": "F-4711r88954_fix", - "ident": [ - { - "text": "CCE-27433-2", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72237", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86861", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001133", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002361", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-040320", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204587r603261_rule", - "time": "2021-12-17T10:39:40", - "severity": "medium", - "version": "RHEL-07-040320", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-27433-2", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72237", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86861", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001133", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002361", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-export": { - "export-name": "oval:mil.disa.stig.rhel7:var:3866", - "value-id": "xccdf_mil.disa.stig_value_sshd_idle_timeout_value" - }, - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:1391", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - }, - "value": { - "id": "xccdf_mil.disa.stig_value_sshd_idle_timeout_value", - "operator": "equals", - "type": "number", - "title": { - "text": "SSH session Idle time", - "xmlns:xhtml": "http://www.w3.org/1999/xhtml", - "xml:lang": "en-US" - }, - "description": { - "text": "Specify duration of allowed idle time.", - "xmlns:xhtml": "http://www.w3.org/1999/xhtml", - "xml:lang": "en-US" - }, - "value": [ - 600, - { - "text": 300, - "selector": "5_minutes" - }, - { - "text": 600, - "selector": "10_minutes" - }, - { - "text": 900, - "selector": "15_minutes" - }, - { - "text": 3600, - "selector": "60_minutes" - }, - { - "text": 7200, - "selector": "120_minutes" - } - ] - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:40", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204588", - "title": "The Red Hat Enterprise Linux operating system must be configured so that the SSH daemon does not allow authentication using RSA rhosts authentication.", - "desc": "Configuring this setting for the SSH daemon provides additional assurance that remote logon via SSH will require a password, even in the event of misconfiguration elsewhere.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:1379", - "label": "check" - }, - { - "data": "Configure the SSH daemon to not allow authentication using RSA rhosts authentication.\n\nAdd the following line in \"/etc/ssh/sshd_config\", or uncomment the line and set the value to \"no\":\n\nRhostsRSAAuthentication no\n\nThe SSH service must be restarted for changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Configuring this setting for the SSH daemon provides additional assurance that remote logon via SSH will require a password, even in the event of misconfiguration elsewhere.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204588", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204588r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:1379", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4712r88957_fix", - "fixtext_fixref": "F-4712r88957_fix", - "ident": [ - { - "text": "CCE-80373-4", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72239", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86863", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-040330", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204588r603261_rule", - "time": "2021-12-17T10:39:40", - "severity": "medium", - "version": "RHEL-07-040330", - "weight": "10.000000", - "result": "pass", - "ident": [ - { - "text": "CCE-80373-4", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72239", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86863", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:1379", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:40", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204589", - "title": "The Red Hat Enterprise Linux operating system must be configured so that all network connections associated with SSH traffic terminate after a period of inactivity.", - "desc": "Terminating an idle SSH session within a short time period reduces the window of opportunity for unauthorized personnel to take control of a management session enabled on the console or console port that has been left unattended. In addition, quickly terminating an idle SSH session will also free up resources committed by the managed network element.\n\nTerminating network connections associated with communications sessions includes, for example, de-allocating associated TCP/IP address/port pairs at the operating system level and de-allocating networking assignments at the application level if multiple application sessions are using a single operating system-level network connection. This does not mean that the operating system terminates all sessions or network access; it only ends the inactive session and releases the resources associated with that session.\n\nSatisfies: SRG-OS-000163-GPOS-00072, SRG-OS-000279-GPOS-00109", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:1393", - "label": "check" - }, - { - "data": "Configure the operating system to terminate automatically a user session after inactivity time-outs have expired or at shutdown.\n\nAdd the following line (or modify the line to have the required value) to the \"/etc/ssh/sshd_config\" file (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor):\n\nClientAliveCountMax 0\n\nThe SSH service must be restarted for changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001133", - "CCI-002361" - ], - "nist": [ - "SC-10", - "AC-12" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Terminating an idle SSH session within a short time period reduces the window of opportunity for unauthorized personnel to take control of a management session enabled on the console or console port that has been left unattended. In addition, quickly terminating an idle SSH session will also free up resources committed by the managed network element.\\n\\nTerminating network connections associated with communications sessions includes, for example, de-allocating associated TCP/IP address/port pairs at the operating system level and de-allocating networking assignments at the application level if multiple application sessions are using a single operating system-level network connection. This does not mean that the operating system terminates all sessions or network access; it only ends the inactive session and releases the resources associated with that session.\\n\\nSatisfies: SRG-OS-000163-GPOS-00072, SRG-OS-000279-GPOS-00109\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204589", - "group_title": "SRG-OS-000163-GPOS-00072", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204589r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:1393", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4713r88960_fix", - "fixtext_fixref": "F-4713r88960_fix", - "ident": [ - { - "text": "CCE-27082-7", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86865", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72241", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001133", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002361", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-040340", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204589r603261_rule", - "time": "2021-12-17T10:39:40", - "severity": "medium", - "version": "RHEL-07-040340", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-27082-7", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86865", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72241", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001133", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002361", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:1393", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:40", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204590", - "title": "The Red Hat Enterprise Linux operating system must be configured so that the SSH daemon does not allow authentication using rhosts authentication.", - "desc": "Configuring this setting for the SSH daemon provides additional assurance that remote logon via SSH will require a password, even in the event of misconfiguration elsewhere.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:1377", - "label": "check" - }, - { - "data": "Configure the SSH daemon to not allow authentication using known hosts authentication.\n\nAdd the following line in \"/etc/ssh/sshd_config\", or uncomment the line and set the value to \"yes\":\n\nIgnoreRhosts yes", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Configuring this setting for the SSH daemon provides additional assurance that remote logon via SSH will require a password, even in the event of misconfiguration elsewhere.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204590", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204590r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:1377", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4714r88963_fix", - "fixtext_fixref": "F-4714r88963_fix", - "ident": [ - { - "text": "CCE-27377-1", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72243", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86867", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-040350", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204590r603261_rule", - "time": "2021-12-17T10:39:40", - "severity": "medium", - "version": "RHEL-07-040350", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-27377-1", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72243", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86867", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:1377", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:40", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204591", - "title": "The Red Hat Enterprise Linux operating system must display the date and time of the last successful account logon upon an SSH logon.", - "desc": "Providing users with feedback on when account accesses via SSH last occurred facilitates user recognition and reporting of unauthorized account use.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:166", - "label": "check" - }, - { - "data": "Configure SSH to provide users with feedback on when account accesses last occurred by setting the required configuration options in \"/etc/pam.d/sshd\" or in the \"sshd_config\" file used by the system (\"/etc/ssh/sshd_config\" will be used in the example) (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor).\n\nModify the \"PrintLastLog\" line in \"/etc/ssh/sshd_config\" to match the following:\n\nPrintLastLog yes\n\nThe SSH service must be restarted for changes to \"sshd_config\" to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Providing users with feedback on when account accesses via SSH last occurred facilitates user recognition and reporting of unauthorized account use.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204591", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204591r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:166", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4715r88966_fix", - "fixtext_fixref": "F-4715r88966_fix", - "ident": [ - { - "text": "CCE-80225-6", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72245", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86869", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-040360", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204591r603261_rule", - "time": "2021-12-17T10:39:40", - "severity": "medium", - "version": "RHEL-07-040360", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-80225-6", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72245", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86869", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:166", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:40", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204592", - "title": "The Red Hat Enterprise Linux operating system must not permit direct logons to the root account using remote access via SSH.", - "desc": "Even though the communications channel may be encrypted, an additional layer of security is gained by extending the policy of not logging on directly as root. In addition, logging on with a user-specific account provides individual accountability of actions performed on the system.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:1381", - "label": "check" - }, - { - "data": "Configure SSH to stop users from logging on remotely as the root user.\n\nEdit the appropriate \"/etc/ssh/sshd_config\" file to uncomment or add the line for the \"PermitRootLogin\" keyword and set its value to \"no\" (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor):\n\nPermitRootLogin no\n\nThe SSH service must be restarted for changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Even though the communications channel may be encrypted, an additional layer of security is gained by extending the policy of not logging on directly as root. In addition, logging on with a user-specific account provides individual accountability of actions performed on the system.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204592", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204592r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:1381", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4716r88969_fix", - "fixtext_fixref": "F-4716r88969_fix", - "ident": [ - { - "text": "CCE-27445-6", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72247", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86871", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-040370", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204592r603261_rule", - "time": "2021-12-17T10:39:40", - "severity": "medium", - "version": "RHEL-07-040370", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-27445-6", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72247", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86871", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:1381", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:40", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204593", - "title": "The Red Hat Enterprise Linux operating system must be configured so that the SSH daemon does not allow authentication using known hosts authentication.", - "desc": "Configuring this setting for the SSH daemon provides additional assurance that remote logon via SSH will require a password, even in the event of misconfiguration elsewhere.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:1383", - "label": "check" - }, - { - "data": "Configure the SSH daemon to not allow authentication using known hosts authentication.\n\nAdd the following line in \"/etc/ssh/sshd_config\", or uncomment the line and set the value to \"yes\":\n\nIgnoreUserKnownHosts yes\n\nThe SSH service must be restarted for changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Configuring this setting for the SSH daemon provides additional assurance that remote logon via SSH will require a password, even in the event of misconfiguration elsewhere.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204593", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204593r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:1383", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4717r88972_fix", - "fixtext_fixref": "F-4717r88972_fix", - "ident": [ - { - "text": "CCE-80372-6", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72249", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86873", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-040380", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204593r603261_rule", - "time": "2021-12-17T10:39:40", - "severity": "medium", - "version": "RHEL-07-040380", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-80372-6", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72249", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86873", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:1383", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:40", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204594", - "title": "The Red Hat Enterprise Linux operating system must be configured so that the SSH daemon is configured to only use the SSHv2 protocol.", - "desc": "SSHv1 is an insecure implementation of the SSH protocol and has many well-known vulnerability exploits. Exploits of the SSH daemon could provide immediate root access to the system.\n\nSatisfies: SRG-OS-000074-GPOS-00042, SRG-OS-000480-GPOS-00227", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:1373", - "label": "check" - }, - { - "data": "Remove all Protocol lines that reference version \"1\" in \"/etc/ssh/sshd_config\" (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor). The \"Protocol\" line must be as follows:\n\nProtocol 2\n\nThe SSH service must be restarted for changes to take effect.", - "label": "fix" - } - ], - "impact": 0.7, - "refs": [], - "tags": { - "cci": [ - "CCI-000197", - "CCI-000366" - ], - "nist": [ - "IA-5 (1) (c)", - "CM-6 b" - ], - "severity": "high", - "description": "{\"VulnDiscussion\":\"SSHv1 is an insecure implementation of the SSH protocol and has many well-known vulnerability exploits. Exploits of the SSH daemon could provide immediate root access to the system.\\n\\nSatisfies: SRG-OS-000074-GPOS-00042, SRG-OS-000480-GPOS-00227\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204594", - "group_title": "SRG-OS-000074-GPOS-00042", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204594r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:1373", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4718r88975_fix", - "fixtext_fixref": "F-4718r88975_fix", - "ident": [ - { - "text": "CCE-27320-1", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86875", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72251", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000197", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-040390", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204594r603261_rule", - "time": "2021-12-17T10:39:40", - "severity": "high", - "version": "RHEL-07-040390", - "weight": "10.000000", - "result": "pass", - "ident": [ - { - "text": "CCE-27320-1", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86875", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72251", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000197", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:1373", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:40", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204595", - "title": "The Red Hat Enterprise Linux operating system must be configured so that the SSH daemon is configured to only use Message Authentication Codes (MACs) employing FIPS 140-2 approved cryptographic hash algorithms.", - "desc": "DoD information systems are required to use FIPS 140-2 approved cryptographic hash functions. The only SSHv2 hash algorithm meeting this requirement is SHA.\n\nThe system will attempt to use the first hash presented by the client that matches the server list. Listing the values \"strongest to weakest\" is a method to ensure the use of the strongest hash available to secure the SSH connection.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:168", - "label": "check" - }, - { - "data": "Edit the \"/etc/ssh/sshd_config\" file to uncomment or add the line for the \"MACs\" keyword and set its value to \"hmac-sha2-512\" and/or \"hmac-sha2-256\" (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor):\n\nMACs hmac-sha2-512,hmac-sha2-256\n\nThe SSH service must be restarted for changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001453" - ], - "nist": [ - "AC-17 (2)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"DoD information systems are required to use FIPS 140-2 approved cryptographic hash functions. The only SSHv2 hash algorithm meeting this requirement is SHA.\\n\\nThe system will attempt to use the first hash presented by the client that matches the server list. Listing the values \\\"strongest to weakest\\\" is a method to ensure the use of the strongest hash available to secure the SSH connection.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204595", - "group_title": "SRG-OS-000250-GPOS-00093", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204595r744117_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:168", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4719r622309_fix", - "fixtext_fixref": "F-4719r622309_fix", - "ident": [ - { - "text": "CCE-27455-5", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86877", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72253", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001453", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-040400", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204595r744117_rule", - "time": "2021-12-17T10:39:40", - "severity": "medium", - "version": "RHEL-07-040400", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-27455-5", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86877", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72253", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001453", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:168", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:40", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204596", - "title": "The Red Hat Enterprise Linux operating system must be configured so that the SSH public host key files have mode 0644 or less permissive.", - "desc": "If a public host key file is modified by an unauthorized user, the SSH service may be compromised.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:120", - "label": "check" - }, - { - "data": "Note: SSH public key files may be found in other directories on the system depending on the installation. \n\nChange the mode of public host key files under \"/etc/ssh\" to \"0644\" with the following command:\n\n# chmod 0644 /etc/ssh/*.key.pub", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"If a public host key file is modified by an unauthorized user, the SSH service may be compromised.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204596", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204596r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:120", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4720r88981_fix", - "fixtext_fixref": "F-4720r88981_fix", - "ident": [ - { - "text": "CCE-27311-0", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72255", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86879", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-040410", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204596r603261_rule", - "time": "2021-12-17T10:39:40", - "severity": "medium", - "version": "RHEL-07-040410", - "weight": "10.000000", - "result": "pass", - "ident": [ - { - "text": "CCE-27311-0", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72255", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86879", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:120", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:40", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204597", - "title": "The Red Hat Enterprise Linux operating system must be configured so that the SSH private host key files have mode 0600 or less permissive.", - "desc": "If an unauthorized user obtains the private SSH host key file, the host could be impersonated.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:118", - "label": "check" - }, - { - "data": "Configure the mode of SSH private host key files under \"/etc/ssh\" to \"0600\" with the following command:\n\n# chmod 0600 /path/to/file/ssh_host*key", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"If an unauthorized user obtains the private SSH host key file, the host could be impersonated.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204597", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204597r792834_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:118", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4721r792833_fix", - "fixtext_fixref": "F-4721r792833_fix", - "ident": [ - { - "text": "CCE-27485-2", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72257", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86881", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-040420", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204597r792834_rule", - "time": "2021-12-17T10:39:40", - "severity": "medium", - "version": "RHEL-07-040420", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-27485-2", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72257", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86881", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:118", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:40", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204598", - "title": "The Red Hat Enterprise Linux operating system must be configured so that the SSH daemon does not permit Generic Security Service Application Program Interface (GSSAPI) authentication unless needed.", - "desc": "GSSAPI authentication is used to provide additional authentication mechanisms to applications. Allowing GSSAPI authentication through SSH exposes the system's GSSAPI to remote hosts, increasing the attack surface of the system. GSSAPI authentication must be disabled unless needed.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:160", - "label": "check" - }, - { - "data": "Uncomment the \"GSSAPIAuthentication\" keyword in \"/etc/ssh/sshd_config\" (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor) and set the value to \"no\": \n\nGSSAPIAuthentication no\n\nThe SSH service must be restarted for changes to take effect.\n\nIf GSSAPI authentication is required, it must be documented, to include the location of the configuration file, with the ISSO.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000318", - "CCI-000368", - "CCI-001812", - "CCI-001813", - "CCI-001814" - ], - "nist": [ - "CM-3 f", - "CM-6 c", - "CM-11 (2)", - "CM-5 (1) (a)", - "CM-5 (1)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"GSSAPI authentication is used to provide additional authentication mechanisms to applications. Allowing GSSAPI authentication through SSH exposes the system's GSSAPI to remote hosts, increasing the attack surface of the system. GSSAPI authentication must be disabled unless needed.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204598", - "group_title": "SRG-OS-000364-GPOS-00151", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204598r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:160", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4722r88987_fix", - "fixtext_fixref": "F-4722r88987_fix", - "ident": [ - { - "text": "V-72259", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86883", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000318", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000368", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001812", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001813", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001814", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-040430", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204598r603261_rule", - "time": "2021-12-17T10:39:40", - "severity": "medium", - "version": "RHEL-07-040430", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "V-72259", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86883", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000318", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000368", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001812", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001813", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001814", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:160", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:40", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204599", - "title": "The Red Hat Enterprise Linux operating system must be configured so that the SSH daemon does not permit Kerberos authentication unless needed.", - "desc": "Kerberos authentication for SSH is often implemented using Generic Security Service Application Program Interface (GSSAPI). If Kerberos is enabled through SSH, the SSH daemon provides a means of access to the system's Kerberos implementation. Vulnerabilities in the system's Kerberos implementation may then be subject to exploitation. To reduce the attack surface of the system, the Kerberos authentication mechanism within SSH must be disabled for systems not using this capability.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:162", - "label": "check" - }, - { - "data": "Uncomment the \"KerberosAuthentication\" keyword in \"/etc/ssh/sshd_config\" (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor) and set the value to \"no\":\n\nKerberosAuthentication no\n\nThe SSH service must be restarted for changes to take effect.\n\nIf Kerberos authentication is required, it must be documented, to include the location of the configuration file, with the ISSO.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000318", - "CCI-000368", - "CCI-001812", - "CCI-001813", - "CCI-001814" - ], - "nist": [ - "CM-3 f", - "CM-6 c", - "CM-11 (2)", - "CM-5 (1) (a)", - "CM-5 (1)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Kerberos authentication for SSH is often implemented using Generic Security Service Application Program Interface (GSSAPI). If Kerberos is enabled through SSH, the SSH daemon provides a means of access to the system's Kerberos implementation. Vulnerabilities in the system's Kerberos implementation may then be subject to exploitation. To reduce the attack surface of the system, the Kerberos authentication mechanism within SSH must be disabled for systems not using this capability.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204599", - "group_title": "SRG-OS-000364-GPOS-00151", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204599r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:162", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4723r88990_fix", - "fixtext_fixref": "F-4723r88990_fix", - "ident": [ - { - "text": "CCE-80221-5", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72261", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86885", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000318", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000368", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001812", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001813", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001814", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-040440", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204599r603261_rule", - "time": "2021-12-17T10:39:40", - "severity": "medium", - "version": "RHEL-07-040440", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-80221-5", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72261", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86885", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000318", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000368", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001812", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001813", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001814", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:162", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:40", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204600", - "title": "The Red Hat Enterprise Linux operating system must be configured so that the SSH daemon performs strict mode checking of home directory configuration files.", - "desc": "If other users have access to modify user-specific SSH configuration files, they may be able to log on to the system as another user.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:164", - "label": "check" - }, - { - "data": "Uncomment the \"StrictModes\" keyword in \"/etc/ssh/sshd_config\" (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor) and set the value to \"yes\":\n\nStrictModes yes\n\nThe SSH service must be restarted for changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"If other users have access to modify user-specific SSH configuration files, they may be able to log on to the system as another user.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204600", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204600r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:164", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4724r88993_fix", - "fixtext_fixref": "F-4724r88993_fix", - "ident": [ - { - "text": "CCE-80222-3", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86887", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72263", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-040450", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204600r603261_rule", - "time": "2021-12-17T10:39:40", - "severity": "medium", - "version": "RHEL-07-040450", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-80222-3", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86887", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72263", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:164", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:40", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204601", - "title": "The Red Hat Enterprise Linux operating system must be configured so that the SSH daemon uses privilege separation.", - "desc": "SSH daemon privilege separation causes the SSH process to drop root privileges when not needed, which would decrease the impact of software vulnerabilities in the unprivileged section.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:171", - "label": "check" - }, - { - "data": "Uncomment the \"UsePrivilegeSeparation\" keyword in \"/etc/ssh/sshd_config\" (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor) and set the value to \"sandbox\" or \"yes\":\n\nUsePrivilegeSeparation sandbox\n\nThe SSH service must be restarted for changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"SSH daemon privilege separation causes the SSH process to drop root privileges when not needed, which would decrease the impact of software vulnerabilities in the unprivileged section.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204601", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204601r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:171", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4725r88996_fix", - "fixtext_fixref": "F-4725r88996_fix", - "ident": [ - { - "text": "CCE-80223-1", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86889", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72265", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-040460", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204601r603261_rule", - "time": "2021-12-17T10:39:40", - "severity": "medium", - "version": "RHEL-07-040460", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-80223-1", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86889", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72265", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:171", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:40", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204602", - "title": "The Red Hat Enterprise Linux operating system must be configured so that the SSH daemon does not allow compression or only allows compression after successful authentication.", - "desc": "If compression is allowed in an SSH connection prior to authentication, vulnerabilities in the compression software could result in compromise of the system from an unauthenticated connection, potentially with root privileges.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:158", - "label": "check" - }, - { - "data": "Uncomment the \"Compression\" keyword in \"/etc/ssh/sshd_config\" (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor) on the system and set the value to \"delayed\" or \"no\":\n\nCompression no\n\nThe SSH service must be restarted for changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"If compression is allowed in an SSH connection prior to authentication, vulnerabilities in the compression software could result in compromise of the system from an unauthenticated connection, potentially with root privileges.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204602", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204602r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:158", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4726r88999_fix", - "fixtext_fixref": "F-4726r88999_fix", - "ident": [ - { - "text": "SV-86891", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72267", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-040470", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204602r603261_rule", - "time": "2021-12-17T10:39:40", - "severity": "medium", - "version": "RHEL-07-040470", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "SV-86891", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72267", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:158", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:40", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204605", - "title": "The Red Hat Enterprise Linux operating system must display the date and time of the last successful account logon upon logon.", - "desc": "Providing users with feedback on when account accesses last occurred facilitates user recognition and reporting of unauthorized account use.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:1020", - "label": "check" - }, - { - "data": "Configure the operating system to provide users with feedback on when account accesses last occurred by setting the required configuration options in \"/etc/pam.d/postlogin\". \n\nAdd the following line to the top of \"/etc/pam.d/postlogin\":\n\nsession required pam_lastlog.so showfailed", - "label": "fix" - } - ], - "impact": 0.3, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "low", - "description": "{\"VulnDiscussion\":\"Providing users with feedback on when account accesses last occurred facilitates user recognition and reporting of unauthorized account use.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204605", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204605r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:1020", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4729r89008_fix", - "fixtext_fixref": "F-4729r89008_fix", - "ident": [ - { - "text": "SV-86899", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72275", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-040530", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204605r603261_rule", - "time": "2021-12-17T10:39:40", - "severity": "low", - "version": "RHEL-07-040530", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "SV-86899", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72275", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:1020", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:40", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204606", - "title": "The Red Hat Enterprise Linux operating system must not contain .shosts files.", - "desc": "The .shosts files are used to configure host-based authentication for individual users or the system via SSH. Host-based authentication is not sufficient for preventing unauthorized access to the system, as it does not require interactive identification and authentication of a connection request, or for the use of two-factor authentication.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:86901", - "label": "check" - }, - { - "data": "Remove any found \".shosts\" files from the system.\n\n# rm /[path]/[to]/[file]/.shosts", - "label": "fix" - } - ], - "impact": 0.7, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "high", - "description": "{\"VulnDiscussion\":\"The .shosts files are used to configure host-based authentication for individual users or the system via SSH. Host-based authentication is not sufficient for preventing unauthorized access to the system, as it does not require interactive identification and authentication of a connection request, or for the use of two-factor authentication.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204606", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204606r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:86901", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4730r89011_fix", - "fixtext_fixref": "F-4730r89011_fix", - "ident": [ - { - "text": "SV-86901", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72277", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-040540", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204606r603261_rule", - "time": "2021-12-17T10:39:43", - "severity": "high", - "version": "RHEL-07-040540", - "weight": "10.000000", - "result": "pass", - "ident": [ - { - "text": "SV-86901", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72277", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:86901", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:43", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204607", - "title": "The Red Hat Enterprise Linux operating system must not contain shosts.equiv files.", - "desc": "The shosts.equiv files are used to configure host-based authentication for the system via SSH. Host-based authentication is not sufficient for preventing unauthorized access to the system, as it does not require interactive identification and authentication of a connection request, or for the use of two-factor authentication.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:86903", - "label": "check" - }, - { - "data": "Remove any found \"shosts.equiv\" files from the system.\n\n# rm /[path]/[to]/[file]/shosts.equiv", - "label": "fix" - } - ], - "impact": 0.7, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "high", - "description": "{\"VulnDiscussion\":\"The shosts.equiv files are used to configure host-based authentication for the system via SSH. Host-based authentication is not sufficient for preventing unauthorized access to the system, as it does not require interactive identification and authentication of a connection request, or for the use of two-factor authentication.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204607", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204607r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:86903", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4731r89014_fix", - "fixtext_fixref": "F-4731r89014_fix", - "ident": [ - { - "text": "SV-86903", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72279", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-040550", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204607r603261_rule", - "time": "2021-12-17T10:39:47", - "severity": "high", - "version": "RHEL-07-040550", - "weight": "10.000000", - "result": "pass", - "ident": [ - { - "text": "SV-86903", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72279", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:86903", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:47", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204609", - "title": "The Red Hat Enterprise Linux operating system must not forward Internet Protocol version 4 (IPv4) source-routed packets.", - "desc": "Source-routed packets allow the source of the packet to suggest that routers forward the packet along a different path than configured on the router, which can be used to bypass network security measures. This requirement applies only to the forwarding of source-routed traffic, such as when IPv4 forwarding is enabled and the system is functioning as a router.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:251", - "label": "check" - }, - { - "data": "Set the system to the required kernel parameter by adding the following line to \"/etc/sysctl.conf\" or a configuration file in the /etc/sysctl.d/ directory (or modify the line to have the required value):\n\nnet.ipv4.conf.all.accept_source_route = 0 \n\nIssue the following command to make the changes take effect:\n \n# sysctl -system", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Source-routed packets allow the source of the packet to suggest that routers forward the packet along a different path than configured on the router, which can be used to bypass network security measures. This requirement applies only to the forwarding of source-routed traffic, such as when IPv4 forwarding is enabled and the system is functioning as a router.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204609", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204609r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-export": { - "export-name": "oval:mil.disa.stig.rhel7:var:3771", - "value-id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_all_accept_source_route_value" - }, - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:251", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4733r89020_fix", - "fixtext_fixref": "F-4733r89020_fix", - "ident": [ - { - "text": "CCE-27434-0", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72283", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86907", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-040610", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204609r603261_rule", - "time": "2021-12-17T10:39:47", - "severity": "medium", - "version": "RHEL-07-040610", - "weight": "10.000000", - "result": "pass", - "ident": [ - { - "text": "CCE-27434-0", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72283", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86907", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-export": { - "export-name": "oval:mil.disa.stig.rhel7:var:3771", - "value-id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_all_accept_source_route_value" - }, - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:251", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - }, - "value": { - "id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_all_accept_source_route_value", - "operator": "equals", - "type": "number", - "title": { - "text": "net.ipv4.conf.all.accept_source_route", - "xmlns:xhtml": "http://www.w3.org/1999/xhtml", - "xml:lang": "en-US" - }, - "description": { - "text": "Trackers could be using source-routed packets to\ngenerate traffic that seems to be intra-net, but actually was\ncreated outside and has been redirected.", - "xmlns:xhtml": "http://www.w3.org/1999/xhtml", - "xml:lang": "en-US" - }, - "value": [ - 0, - { - "text": 1, - "selector": "enabled" - }, - { - "text": 0, - "selector": "disabled" - } - ] - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:47", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204612", - "title": "The Red Hat Enterprise Linux operating system must not forward Internet Protocol version 4 (IPv4) source-routed packets by default.", - "desc": "Source-routed packets allow the source of the packet to suggest that routers forward the packet along a different path than configured on the router, which can be used to bypass network security measures. This requirement applies only to the forwarding of source-routed traffic, such as when IPv4 forwarding is enabled and the system is functioning as a router.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:269", - "label": "check" - }, - { - "data": "Set the system to the required kernel parameter by adding the following line to \"/etc/sysctl.conf\" or a configuration file in the /etc/sysctl.d/ directory (or modify the line to have the required value):\n\nnet.ipv4.conf.default.accept_source_route = 0 \n\nIssue the following command to make the changes take effect:\n \n# sysctl --system", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Source-routed packets allow the source of the packet to suggest that routers forward the packet along a different path than configured on the router, which can be used to bypass network security measures. This requirement applies only to the forwarding of source-routed traffic, such as when IPv4 forwarding is enabled and the system is functioning as a router.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204612", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204612r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-export": { - "export-name": "oval:mil.disa.stig.rhel7:var:3776", - "value-id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_default_accept_source_route_value" - }, - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:269", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4736r89029_fix", - "fixtext_fixref": "F-4736r89029_fix", - "ident": [ - { - "text": "CCE-80162-1", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72285", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86909", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-040620", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204612r603261_rule", - "time": "2021-12-17T10:39:47", - "severity": "medium", - "version": "RHEL-07-040620", - "weight": "10.000000", - "result": "pass", - "ident": [ - { - "text": "CCE-80162-1", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72285", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86909", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-export": { - "export-name": "oval:mil.disa.stig.rhel7:var:3776", - "value-id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_default_accept_source_route_value" - }, - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:269", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - }, - "value": { - "id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_default_accept_source_route_value", - "operator": "equals", - "type": "number", - "title": { - "text": "net.ipv4.conf.default.accept_source_route", - "xmlns:xhtml": "http://www.w3.org/1999/xhtml", - "xml:lang": "en-US" - }, - "description": { - "text": "Disable IP source routing?", - "xmlns:xhtml": "http://www.w3.org/1999/xhtml", - "xml:lang": "en-US" - }, - "value": [ - 0, - { - "text": 1, - "selector": "enabled" - }, - { - "text": 0, - "selector": "disabled" - } - ] - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:47", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204613", - "title": "The Red Hat Enterprise Linux operating system must not respond to Internet Protocol version 4 (IPv4) Internet Control Message Protocol (ICMP) echoes sent to a broadcast address.", - "desc": "Responding to broadcast (ICMP) echoes facilitates network mapping and provides a vector for amplification attacks.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:284", - "label": "check" - }, - { - "data": "Set the system to the required kernel parameter by adding the following line to \"/etc/sysctl.conf\" or a configuration file in the /etc/sysctl.d/ directory (or modify the line to have the required value):\n\nnet.ipv4.icmp_echo_ignore_broadcasts = 1\n\nIssue the following command to make the changes take effect: \n\n# sysctl --system", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Responding to broadcast (ICMP) echoes facilitates network mapping and provides a vector for amplification attacks.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204613", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204613r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-export": { - "export-name": "oval:mil.disa.stig.rhel7:var:3780", - "value-id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_icmp_echo_ignore_broadcasts_value" - }, - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:284", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4737r89032_fix", - "fixtext_fixref": "F-4737r89032_fix", - "ident": [ - { - "text": "CCE-80165-4", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72287", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86911", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-040630", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204613r603261_rule", - "time": "2021-12-17T10:39:47", - "severity": "medium", - "version": "RHEL-07-040630", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-80165-4", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72287", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86911", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-export": { - "export-name": "oval:mil.disa.stig.rhel7:var:3780", - "value-id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_icmp_echo_ignore_broadcasts_value" - }, - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:284", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - }, - "value": { - "id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_icmp_echo_ignore_broadcasts_value", - "operator": "equals", - "type": "number", - "title": { - "text": "net.ipv4.icmp_echo_ignore_broadcasts", - "xmlns:xhtml": "http://www.w3.org/1999/xhtml", - "xml:lang": "en-US" - }, - "description": { - "text": "Ignore all ICMP ECHO and TIMESTAMP requests sent to it via broadcast/multicast", - "xmlns:xhtml": "http://www.w3.org/1999/xhtml", - "xml:lang": "en-US" - }, - "value": [ - 1, - { - "text": 1, - "selector": "enabled" - }, - { - "text": 0, - "selector": "disabled" - } - ] - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:47", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204614", - "title": "The Red Hat Enterprise Linux operating system must prevent Internet Protocol version 4 (IPv4) Internet Control Message Protocol (ICMP) redirect messages from being accepted.", - "desc": "ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages modify the host's route table and are unauthenticated. An illicit ICMP redirect message could result in a man-in-the-middle attack.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:266", - "label": "check" - }, - { - "data": "Set the system to not accept IPv4 ICMP redirect messages by adding the following line to \"/etc/sysctl.conf\" or a configuration file in the /etc/sysctl.d/ directory (or modify the line to have the required value):\n\nnet.ipv4.conf.default.accept_redirects = 0 \n\nIssue the following command to make the changes take effect:\n\n# sysctl --system", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages modify the host's route table and are unauthenticated. An illicit ICMP redirect message could result in a man-in-the-middle attack.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204614", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204614r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-export": { - "export-name": "oval:mil.disa.stig.rhel7:var:3775", - "value-id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_default_accept_redirects_value" - }, - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:266", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4738r89035_fix", - "fixtext_fixref": "F-4738r89035_fix", - "ident": [ - { - "text": "CCE-80163-9", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86913", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72289", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-040640", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204614r603261_rule", - "time": "2021-12-17T10:39:47", - "severity": "medium", - "version": "RHEL-07-040640", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-80163-9", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86913", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72289", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-export": { - "export-name": "oval:mil.disa.stig.rhel7:var:3775", - "value-id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_default_accept_redirects_value" - }, - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:266", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - }, - "value": { - "id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_default_accept_redirects_value", - "operator": "equals", - "type": "number", - "title": { - "text": "net.ipv4.conf.default.accept_redirects", - "xmlns:xhtml": "http://www.w3.org/1999/xhtml", - "xml:lang": "en-US" - }, - "description": { - "text": "Disable ICMP Redirect Acceptance?", - "xmlns:xhtml": "http://www.w3.org/1999/xhtml", - "xml:lang": "en-US" - }, - "value": [ - 0, - { - "text": 1, - "selector": "enabled" - }, - { - "text": 0, - "selector": "disabled" - } - ] - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:47", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204615", - "title": "The Red Hat Enterprise Linux operating system must ignore Internet Protocol version 4 (IPv4) Internet Control Message Protocol (ICMP) redirect messages.", - "desc": "ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages modify the host's route table and are unauthenticated. An illicit ICMP redirect message could result in a man-in-the-middle attack.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:248", - "label": "check" - }, - { - "data": "Set the system to ignore IPv4 ICMP redirect messages by adding the following line to \"/etc/sysctl.conf\" or a configuration file in the /etc/sysctl.d/ directory (or modify the line to have the required value):\n\nnet.ipv4.conf.all.accept_redirects = 0 \n\nIssue the following command to make the changes take effect:\n\n# sysctl --system", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages modify the host's route table and are unauthenticated. An illicit ICMP redirect message could result in a man-in-the-middle attack.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204615", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204615r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-export": { - "export-name": "oval:mil.disa.stig.rhel7:var:3770", - "value-id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_all_accept_redirects_value" - }, - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:248", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4739r89038_fix", - "fixtext_fixref": "F-4739r89038_fix", - "ident": [ - { - "text": "CCE-80158-9", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-87827", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-73175", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-040641", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204615r603261_rule", - "time": "2021-12-17T10:39:47", - "severity": "medium", - "version": "RHEL-07-040641", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-80158-9", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-87827", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-73175", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-export": { - "export-name": "oval:mil.disa.stig.rhel7:var:3770", - "value-id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_all_accept_redirects_value" - }, - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:248", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - }, - "value": { - "id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_all_accept_redirects_value", - "operator": "equals", - "type": "number", - "title": { - "text": "net.ipv4.conf.all.accept_redirects", - "xmlns:xhtml": "http://www.w3.org/1999/xhtml", - "xml:lang": "en-US" - }, - "description": { - "text": "Disable ICMP Redirect Acceptance", - "xmlns:xhtml": "http://www.w3.org/1999/xhtml", - "xml:lang": "en-US" - }, - "value": [ - 0, - { - "text": 1, - "selector": "enabled" - }, - { - "text": 0, - "selector": "disabled" - } - ] - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:47", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204616", - "title": "The Red Hat Enterprise Linux operating system must not allow interfaces to perform Internet Protocol version 4 (IPv4) Internet Control Message Protocol (ICMP) redirects by default.", - "desc": "ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages contain information from the system's route table, possibly revealing portions of the network topology.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:281", - "label": "check" - }, - { - "data": "Configure the system to not allow interfaces to perform IPv4 ICMP redirects by default. \n\nSet the system to the required kernel parameter by adding the following line to \"/etc/sysctl.conf\" or a configuration file in the /etc/sysctl.d/ directory (or modify the line to have the required value):\n\nnet.ipv4.conf.default.send_redirects = 0\n\nIssue the following command to make the changes take effect:\n\n# sysctl --system", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages contain information from the system's route table, possibly revealing portions of the network topology.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204616", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204616r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:281", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4740r89041_fix", - "fixtext_fixref": "F-4740r89041_fix", - "ident": [ - { - "text": "CCE-80156-3", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72291", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86915", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-040650", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204616r603261_rule", - "time": "2021-12-17T10:39:47", - "severity": "medium", - "version": "RHEL-07-040650", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-80156-3", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72291", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86915", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:281", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:47", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204617", - "title": "The Red Hat Enterprise Linux operating system must not send Internet Protocol version 4 (IPv4) Internet Control Message Protocol (ICMP) redirects.", - "desc": "ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages contain information from the system's route table, possibly revealing portions of the network topology.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:263", - "label": "check" - }, - { - "data": "Configure the system to not allow interfaces to perform IPv4 ICMP redirects. \n\nSet the system to the required kernel parameter by adding the following line to \"/etc/sysctl.conf\" or a configuration file in the /etc/sysctl.d/ directory (or modify the line to have the required value):\n\nnet.ipv4.conf.all.send_redirects = 0\n\nIssue the following command to make the changes take effect:\n\n# sysctl --system", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages contain information from the system's route table, possibly revealing portions of the network topology.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204617", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204617r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:263", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4741r89044_fix", - "fixtext_fixref": "F-4741r89044_fix", - "ident": [ - { - "text": "CCE-80156-3", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72293", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86917", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-040660", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204617r603261_rule", - "time": "2021-12-17T10:39:47", - "severity": "medium", - "version": "RHEL-07-040660", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-80156-3", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72293", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86917", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:263", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:47", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204620", - "title": "The Red Hat Enterprise Linux operating system must not have a File Transfer Protocol (FTP) server package installed unless needed.", - "desc": "The FTP service provides an unencrypted remote access that does not provide for the confidentiality and integrity of user passwords or the remote session. If a privileged user were to log on using this service, the privileged user password could be compromised. SSH or other encrypted file transfer methods must be used in place of this service.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:1301", - "label": "check" - }, - { - "data": "Document the \"vsftpd\" package with the ISSO as an operational requirement or remove it from the system with the following command:\n\n# yum remove vsftpd", - "label": "fix" - } - ], - "impact": 0.7, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "high", - "description": "{\"VulnDiscussion\":\"The FTP service provides an unencrypted remote access that does not provide for the confidentiality and integrity of user passwords or the remote session. If a privileged user were to log on using this service, the privileged user password could be compromised. SSH or other encrypted file transfer methods must be used in place of this service.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204620", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204620r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:1301", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4744r89053_fix", - "fixtext_fixref": "F-4744r89053_fix", - "ident": [ - { - "text": "SV-86923", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72299", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-040690", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204620r603261_rule", - "time": "2021-12-17T10:39:47", - "severity": "high", - "version": "RHEL-07-040690", - "weight": "10.000000", - "result": "pass", - "ident": [ - { - "text": "SV-86923", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72299", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:1301", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:47", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204621", - "title": "The Red Hat Enterprise Linux operating system must not have the Trivial File Transfer Protocol (TFTP) server package installed if not required for operational support.", - "desc": "If TFTP is required for operational support (such as the transmission of router configurations) its use must be documented with the Information System Security Officer (ISSO), restricted to only authorized personnel, and have access control rules established.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:1296", - "label": "check" - }, - { - "data": "Remove the TFTP package from the system with the following command:\n\n# yum remove tftp-server", - "label": "fix" - } - ], - "impact": 0.7, - "refs": [], - "tags": { - "cci": [ - "CCI-000318", - "CCI-000368", - "CCI-001812", - "CCI-001813", - "CCI-001814" - ], - "nist": [ - "CM-3 f", - "CM-6 c", - "CM-11 (2)", - "CM-5 (1) (a)", - "CM-5 (1)" - ], - "severity": "high", - "description": "{\"VulnDiscussion\":\"If TFTP is required for operational support (such as the transmission of router configurations) its use must be documented with the Information System Security Officer (ISSO), restricted to only authorized personnel, and have access control rules established.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204621", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204621r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:1296", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4745r89056_fix", - "fixtext_fixref": "F-4745r89056_fix", - "ident": [ - { - "text": "CCE-80213-2", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86925", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72301", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000318", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000368", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001812", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001813", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001814", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-040700", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204621r603261_rule", - "time": "2021-12-17T10:39:47", - "severity": "high", - "version": "RHEL-07-040700", - "weight": "10.000000", - "result": "pass", - "ident": [ - { - "text": "CCE-80213-2", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86925", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72301", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000318", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000368", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001812", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001813", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001814", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:1296", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:47", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204622", - "title": "The Red Hat Enterprise Linux operating system must be configured so that remote X connections are disabled except to fulfill documented and validated mission requirements.", - "desc": "The security risk of using X11 forwarding is that the client's X11 display server may be exposed to attack when the SSH client requests forwarding. A system administrator may have a stance in which they want to protect clients that may expose themselves to attack by unwittingly requesting X11 forwarding, which can warrant a ''no'' setting.\nX11 forwarding should be enabled with caution. Users with the ability to bypass file permissions on the remote host (for the user's X11 authorization database) can access the local X11 display through the forwarded connection. An attacker may then be able to perform activities such as keystroke monitoring if the ForwardX11Trusted option is also enabled.\nIf X11 services are not required for the system's intended function, they should be disabled or restricted as appropriate to the system’s needs.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:1389", - "label": "check" - }, - { - "data": "Edit the \"/etc/ssh/sshd_config\" file to uncomment or add the line for the \"X11Forwarding\" keyword and set its value to \"no\" (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor):\n\nX11Forwarding no\n\nThe SSH service must be restarted for changes to take effect:\n\n# systemctl restart sshd", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"The security risk of using X11 forwarding is that the client's X11 display server may be exposed to attack when the SSH client requests forwarding. A system administrator may have a stance in which they want to protect clients that may expose themselves to attack by unwittingly requesting X11 forwarding, which can warrant a ''no'' setting.\\nX11 forwarding should be enabled with caution. Users with the ability to bypass file permissions on the remote host (for the user's X11 authorization database) can access the local X11 display through the forwarded connection. An attacker may then be able to perform activities such as keystroke monitoring if the ForwardX11Trusted option is also enabled.\\nIf X11 services are not required for the system's intended function, they should be disabled or restricted as appropriate to the system’s needs.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204622", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204622r603849_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:1389", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4746r622312_fix", - "fixtext_fixref": "F-4746r622312_fix", - "ident": [ - { - "text": "CCE-80226-4", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86927", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72303", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-040710", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204622r603849_rule", - "time": "2021-12-17T10:39:47", - "severity": "medium", - "version": "RHEL-07-040710", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-80226-4", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86927", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72303", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:1389", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:47", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204624", - "title": "The Red Hat Enterprise Linux operating system must not have a graphical display manager installed unless approved.", - "desc": "Internet services that are not required for system or application processes must not be active to decrease the attack surface of the system. Graphical display managers have a long history of security vulnerabilities and must not be used unless approved and documented.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:1305", - "label": "check" - }, - { - "data": "Document the requirement for a graphical user interface with the ISSO or reinstall the operating system without the graphical user interface. If reinstallation is not feasible, then continue with the following procedure:\n\nOpen an SSH session and enter the following commands:\n\n$ sudo systemctl set-default multi-user.target\n\n$ sudo yum remove xorg-x11-server-Xorg xorg-x11-server-common xorg-x11-server-utils\n\nA reboot is required for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Internet services that are not required for system or application processes must not be active to decrease the attack surface of the system. Graphical display managers have a long history of security vulnerabilities and must not be used unless approved and documented.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204624", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204624r646847_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:1305", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-36316r646846_fix", - "fixtext_fixref": "F-36316r646846_fix", - "ident": [ - { - "text": "CCE-27218-7", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86931", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72307", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-040730", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204624r646847_rule", - "time": "2021-12-17T10:39:47", - "severity": "medium", - "version": "RHEL-07-040730", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-27218-7", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86931", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72307", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:1305", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:47", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204625", - "title": "The Red Hat Enterprise Linux operating system must not be performing packet forwarding unless the system is a router.", - "desc": "Routing protocol daemons are typically used on routers to exchange network topology information with other routers. If this software is used when not required, system network information may be unnecessarily transmitted across the network.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:290", - "label": "check" - }, - { - "data": "Set the system to the required kernel parameter by adding the following line to \"/etc/sysctl.conf\" or a configuration file in the /etc/sysctl.d/ directory (or modify the line to have the required value):\n\nnet.ipv4.ip_forward = 0\n\nIssue the following command to make the changes take effect:\n\n# sysctl --system", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Routing protocol daemons are typically used on routers to exchange network topology information with other routers. If this software is used when not required, system network information may be unnecessarily transmitted across the network.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204625", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204625r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:290", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4749r89068_fix", - "fixtext_fixref": "F-4749r89068_fix", - "ident": [ - { - "text": "CCE-80157-1", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86933", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72309", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-040740", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204625r603261_rule", - "time": "2021-12-17T10:39:47", - "severity": "medium", - "version": "RHEL-07-040740", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-80157-1", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86933", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72309", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:290", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:47", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204627", - "title": "SNMP community strings on the Red Hat Enterprise Linux operating system must be changed from the default.", - "desc": "Whether active or not, default Simple Network Management Protocol (SNMP) community strings must be changed to maintain security. If the service is running with the default authenticators, anyone can gather data about the system and the network and use the information to potentially compromise the integrity of the system or network(s). It is highly recommended that SNMP version 3 user authentication and message encryption be used in place of the version 2 community strings.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:1369", - "label": "check" - }, - { - "data": "If the \"/etc/snmp/snmpd.conf\" file exists, modify any lines that contain a community string value of \"public\" or \"private\" to another string value.", - "label": "fix" - } - ], - "impact": 0.7, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "high", - "description": "{\"VulnDiscussion\":\"Whether active or not, default Simple Network Management Protocol (SNMP) community strings must be changed to maintain security. If the service is running with the default authenticators, anyone can gather data about the system and the network and use the information to potentially compromise the integrity of the system or network(s). It is highly recommended that SNMP version 3 user authentication and message encryption be used in place of the version 2 community strings.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204627", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204627r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:1369", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4751r89074_fix", - "fixtext_fixref": "F-4751r89074_fix", - "ident": [ - { - "text": "CCE-27386-2", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86937", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72313", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-040800", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204627r603261_rule", - "time": "2021-12-17T10:39:47", - "severity": "high", - "version": "RHEL-07-040800", - "weight": "10.000000", - "result": "pass", - "ident": [ - { - "text": "CCE-27386-2", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86937", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72313", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:1369", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:47", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204630", - "title": "The Red Hat Enterprise Linux operating system must not forward IPv6 source-routed packets.", - "desc": "Source-routed packets allow the source of the packet to suggest that routers forward the packet along a different path than configured on the router, which can be used to bypass network security measures. This requirement applies only to the forwarding of source-routed traffic, such as when IPv6 forwarding is enabled and the system is functioning as a router.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:303", - "label": "check" - }, - { - "data": "Set the system to the required kernel parameter, if IPv6 is enabled, by adding the following line to \"/etc/sysctl.conf\" or a configuration file in the /etc/sysctl.d/ directory (or modify the line to have the required value):\n\nnet.ipv6.conf.all.accept_source_route = 0\n\nIssue the following command to make the changes take effect:\n\n# sysctl --system", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Source-routed packets allow the source of the packet to suggest that routers forward the packet along a different path than configured on the router, which can be used to bypass network security measures. This requirement applies only to the forwarding of source-routed traffic, such as when IPv6 forwarding is enabled and the system is functioning as a router.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204630", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204630r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-export": { - "export-name": "oval:mil.disa.stig.rhel7:var:3785", - "value-id": "xccdf_mil.disa.stig_value_sysctl_net_ipv6_conf_all_accept_source_route_value" - }, - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:303", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4754r89083_fix", - "fixtext_fixref": "F-4754r89083_fix", - "ident": [ - { - "text": "CCE-80179-5", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72319", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86943", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-040830", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204630r603261_rule", - "time": "2021-12-17T10:39:47", - "severity": "medium", - "version": "RHEL-07-040830", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-80179-5", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72319", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86943", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-export": { - "export-name": "oval:mil.disa.stig.rhel7:var:3785", - "value-id": "xccdf_mil.disa.stig_value_sysctl_net_ipv6_conf_all_accept_source_route_value" - }, - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:303", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - }, - "value": { - "id": "xccdf_mil.disa.stig_value_sysctl_net_ipv6_conf_all_accept_source_route_value", - "operator": "equals", - "type": "number", - "title": { - "text": "net.ipv6.conf.all.accept_source_route", - "xmlns:xhtml": "http://www.w3.org/1999/xhtml", - "xml:lang": "en-US" - }, - "description": { - "text": "Trackers could be using source-routed packets to\ngenerate traffic that seems to be intra-net, but actually was\ncreated outside and has been redirected.", - "xmlns:xhtml": "http://www.w3.org/1999/xhtml", - "xml:lang": "en-US" - }, - "value": [ - 0, - { - "text": 1, - "selector": "enabled" - }, - { - "text": 0, - "selector": "disabled" - } - ] - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:47", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204631", - "title": "The Red Hat Enterprise Linux operating system must have the required packages for multifactor authentication installed.", - "desc": "Using an authentication device, such as a CAC or token that is separate from the information system, ensures that even if the information system is compromised, that compromise will not affect credentials stored on the authentication device.\n\nMultifactor solutions that require devices separate from information systems gaining access include, for example, hardware tokens providing time-based or challenge-response authenticators and smart cards such as the U.S. Government Personal Identity Verification card and the DoD Common Access Card.\n\nA privileged account is defined as an information system account with authorizations of a privileged user.\n\nRemote access is access to DoD nonpublic information systems by an authorized user (or an information system) communicating through an external, non-organization-controlled network. Remote access methods include, for example, dial-up, broadband, and wireless.\n\nThis requirement only applies to components where this is specific to the function of the device or has the concept of an organizational user (e.g., VPN, proxy capability). This does not apply to authentication for the purpose of configuring the device itself (management).\n\nSatisfies: SRG-OS-000375-GPOS-00160, SRG-OS-000375-GPOS-00161, SRG-OS-000375-GPOS-00162", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:87041", - "label": "check" - }, - { - "data": "Configure the operating system to implement multifactor authentication by installing the required packages.\n\nInstall the pam_pkcs11 package with the following command:\n\n# yum install pam_pkcs11", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001948", - "CCI-001953", - "CCI-001954" - ], - "nist": [ - "IA-2 (11)", - "IA-2 (12)", - "IA-2 (12)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Using an authentication device, such as a CAC or token that is separate from the information system, ensures that even if the information system is compromised, that compromise will not affect credentials stored on the authentication device.\\n\\nMultifactor solutions that require devices separate from information systems gaining access include, for example, hardware tokens providing time-based or challenge-response authenticators and smart cards such as the U.S. Government Personal Identity Verification card and the DoD Common Access Card.\\n\\nA privileged account is defined as an information system account with authorizations of a privileged user.\\n\\nRemote access is access to DoD nonpublic information systems by an authorized user (or an information system) communicating through an external, non-organization-controlled network. Remote access methods include, for example, dial-up, broadband, and wireless.\\n\\nThis requirement only applies to components where this is specific to the function of the device or has the concept of an organizational user (e.g., VPN, proxy capability). This does not apply to authentication for the purpose of configuring the device itself (management).\\n\\nSatisfies: SRG-OS-000375-GPOS-00160, SRG-OS-000375-GPOS-00161, SRG-OS-000375-GPOS-00162\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204631", - "group_title": "SRG-OS-000375-GPOS-00160", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204631r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:87041", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4755r462473_fix", - "fixtext_fixref": "F-4755r462473_fix", - "ident": [ - { - "text": "SV-87041", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72417", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001948", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001953", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001954", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-041001", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204631r603261_rule", - "time": "2021-12-17T10:39:47", - "severity": "medium", - "version": "RHEL-07-041001", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "SV-87041", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72417", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001948", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001953", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001954", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:87041", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:47", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204632", - "title": "The Red Hat Enterprise Linux operating system must implement multifactor authentication for access to privileged accounts via pluggable authentication modules (PAM).", - "desc": "Using an authentication device, such as a CAC or token that is separate from the information system, ensures that even if the information system is compromised, that compromise will not affect credentials stored on the authentication device.\n\nMultifactor solutions that require devices separate from information systems gaining access include, for example, hardware tokens providing time-based or challenge-response authenticators and smart cards such as the U.S. Government Personal Identity Verification card and the DoD Common Access Card.\n\nA privileged account is defined as an information system account with authorizations of a privileged user.\n\nRemote access is access to DoD nonpublic information systems by an authorized user (or an information system) communicating through an external, non-organization-controlled network. Remote access methods include, for example, dial-up, broadband, and wireless.\n\nThis requirement only applies to components where this is specific to the function of the device or has the concept of an organizational user (e.g., VPN, proxy capability). This does not apply to authentication for the purpose of configuring the device itself (management).\n\nSatisfies: SRG-OS-000375-GPOS-00160, SRG-OS-000375-GPOS-00161, SRG-OS-000375-GPOS-00162", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:1405", - "label": "check" - }, - { - "data": "Configure the operating system to implement multifactor authentication for remote access to privileged accounts via pluggable authentication modules (PAM).\n\nModify all of the services lines in \"/etc/sssd/sssd.conf\" or in configuration files found under \"/etc/sssd/conf.d\" to include pam.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001948", - "CCI-001953", - "CCI-001954" - ], - "nist": [ - "IA-2 (11)", - "IA-2 (12)", - "IA-2 (12)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Using an authentication device, such as a CAC or token that is separate from the information system, ensures that even if the information system is compromised, that compromise will not affect credentials stored on the authentication device.\\n\\nMultifactor solutions that require devices separate from information systems gaining access include, for example, hardware tokens providing time-based or challenge-response authenticators and smart cards such as the U.S. Government Personal Identity Verification card and the DoD Common Access Card.\\n\\nA privileged account is defined as an information system account with authorizations of a privileged user.\\n\\nRemote access is access to DoD nonpublic information systems by an authorized user (or an information system) communicating through an external, non-organization-controlled network. Remote access methods include, for example, dial-up, broadband, and wireless.\\n\\nThis requirement only applies to components where this is specific to the function of the device or has the concept of an organizational user (e.g., VPN, proxy capability). This does not apply to authentication for the purpose of configuring the device itself (management).\\n\\nSatisfies: SRG-OS-000375-GPOS-00160, SRG-OS-000375-GPOS-00161, SRG-OS-000375-GPOS-00162\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204632", - "group_title": "SRG-OS-000375-GPOS-00160", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204632r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:1405", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4756r89089_fix", - "fixtext_fixref": "F-4756r89089_fix", - "ident": [ - { - "text": "CCE-80437-7", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72427", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-87051", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001948", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001953", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001954", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-041002", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204632r603261_rule", - "time": "2021-12-17T10:39:47", - "severity": "medium", - "version": "RHEL-07-041002", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "CCE-80437-7", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72427", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-87051", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001948", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001953", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001954", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:1405", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:47", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204633", - "title": "The Red Hat Enterprise Linux operating system must implement certificate status checking for PKI authentication.", - "desc": "Using an authentication device, such as a CAC or token that is separate from the information system, ensures that even if the information system is compromised, that compromise will not affect credentials stored on the authentication device.\n\nMultifactor solutions that require devices separate from information systems gaining access include, for example, hardware tokens providing time-based or challenge-response authenticators and smart cards such as the U.S. Government Personal Identity Verification card and the DoD Common Access Card.\n\nA privileged account is defined as an information system account with authorizations of a privileged user.\n\nRemote access is access to DoD nonpublic information systems by an authorized user (or an information system) communicating through an external, non-organization-controlled network. Remote access methods include, for example, dial-up, broadband, and wireless.\n\nThis requirement only applies to components where this is specific to the function of the device or has the concept of an organizational user (e.g., VPN, proxy capability). This does not apply to authentication for the purpose of configuring the device itself (management).\n\nSatisfies: SRG-OS-000375-GPOS-00160, SRG-OS-000375-GPOS-00161, SRG-OS-000375-GPOS-00162", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:87057", - "label": "check" - }, - { - "data": "Configure the operating system to do certificate status checking for PKI authentication.\n\nModify all of the \"cert_policy\" lines in \"/etc/pam_pkcs11/pam_pkcs11.conf\" to include \"ocsp_on\".", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001948", - "CCI-001953", - "CCI-001954" - ], - "nist": [ - "IA-2 (11)", - "IA-2 (12)", - "IA-2 (12)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Using an authentication device, such as a CAC or token that is separate from the information system, ensures that even if the information system is compromised, that compromise will not affect credentials stored on the authentication device.\\n\\nMultifactor solutions that require devices separate from information systems gaining access include, for example, hardware tokens providing time-based or challenge-response authenticators and smart cards such as the U.S. Government Personal Identity Verification card and the DoD Common Access Card.\\n\\nA privileged account is defined as an information system account with authorizations of a privileged user.\\n\\nRemote access is access to DoD nonpublic information systems by an authorized user (or an information system) communicating through an external, non-organization-controlled network. Remote access methods include, for example, dial-up, broadband, and wireless.\\n\\nThis requirement only applies to components where this is specific to the function of the device or has the concept of an organizational user (e.g., VPN, proxy capability). This does not apply to authentication for the purpose of configuring the device itself (management).\\n\\nSatisfies: SRG-OS-000375-GPOS-00160, SRG-OS-000375-GPOS-00161, SRG-OS-000375-GPOS-00162\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204633", - "group_title": "SRG-OS-000375-GPOS-00160", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204633r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:87057", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-4757r89092_fix", - "fixtext_fixref": "F-4757r89092_fix", - "ident": [ - { - "text": "V-72433", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-87057", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001948", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001953", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001954", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-041003", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-204633r603261_rule", - "time": "2021-12-17T10:39:47", - "severity": "medium", - "version": "RHEL-07-041003", - "weight": "10.000000", - "result": "fail", - "ident": [ - { - "text": "V-72433", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-87057", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001948", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001953", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001954", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:87057", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:39:47", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-214799", - "title": "The Red Hat Enterprise Linux operating system must be configured so that the cryptographic hash of system files and commands matches vendor values.", - "desc": "Without cryptographic integrity protections, system command and files can be altered by unauthorized users without detection.\n\nCryptographic mechanisms used for protecting the integrity of information include, for example, signed hash functions using asymmetric cryptography enabling distribution of the public key to verify the hash information while maintaining the confidentiality of the key used to generate the hash.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:1340", - "label": "check" - }, - { - "data": "Run the following command to determine which package owns the file:\n\n# rpm -qf \n\nThe package can be reinstalled from a yum repository using the command:\n\n# sudo yum reinstall \n\nAlternatively, the package can be reinstalled from trusted media using the command:\n\n# sudo rpm -Uvh ", - "label": "fix" - } - ], - "impact": 0.7, - "refs": [], - "tags": { - "cci": [ - "CCI-001749" - ], - "nist": [ - "CM-5 (3)" - ], - "severity": "high", - "description": "{\"VulnDiscussion\":\"Without cryptographic integrity protections, system command and files can be altered by unauthorized users without detection.\\n\\nCryptographic mechanisms used for protecting the integrity of information include, for example, signed hash functions using asymmetric cryptography enabling distribution of the public key to verify the hash information while maintaining the confidentiality of the key used to generate the hash.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-214799", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-214799r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:1340", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-15997r192363_fix", - "fixtext_fixref": "F-15997r192363_fix", - "ident": [ - { - "text": "CCE-27157-7", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86479", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71855", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001749", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-010020", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-214799r603261_rule", - "time": "2021-12-17T10:40:58", - "severity": "high", - "version": "RHEL-07-010020", - "weight": "10.000000", - "result": "pass", - "ident": [ - { - "text": "CCE-27157-7", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86479", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71855", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001749", - "system": "http://cyber.mil/cci" - } - ], - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:1340", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:40:58", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-237633", - "title": "The Red Hat Enterprise Linux operating system must restrict privilege elevation to authorized personnel.", - "desc": "The sudo command allows a user to execute programs with elevated (administrator) privileges. It prompts the user for their password and confirms your request to execute a command by checking a file, called sudoers. If the \"sudoers\" file is not configured correctly, any user defined on the system can initiate privileged actions on the target system.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:177", - "label": "check" - }, - { - "data": "Remove the following entries from the sudoers file:\nALL ALL=(ALL) ALL\nALL ALL=(ALL:ALL) ALL", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"The sudo command allows a user to execute programs with elevated (administrator) privileges. It prompts the user for their password and confirms your request to execute a command by checking a file, called sudoers. If the \\\"sudoers\\\" file is not configured correctly, any user defined on the system can initiate privileged actions on the target system.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-237633", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-237633r646850_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:177", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-40815r646849_fix", - "fixtext_fixref": "F-40815r646849_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-010341", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-237633r646850_rule", - "time": "2021-12-17T10:40:58", - "severity": "medium", - "version": "RHEL-07-010341", - "weight": "10.000000", - "result": "pass", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:177", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:40:58", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-237634", - "title": "The Red Hat Enterprise Linux operating system must use the invoking user's password for privilege escalation when using \"sudo\".", - "desc": "The sudoers security policy requires that users authenticate themselves before they can use sudo. When sudoers requires authentication, it validates the invoking user's credentials. If the rootpw, targetpw, or runaspw flags are defined and not disabled, by default the operating system will prompt the invoking user for the \"root\" user password. \nFor more information on each of the listed configurations, reference the sudoers(5) manual page.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:178", - "label": "check" - }, - { - "data": "Define the following in the Defaults section of the /etc/sudoers file or a configuration file in the /etc/sudoers.d/ directory:\nDefaults !targetpw\nDefaults !rootpw\nDefaults !runaspw", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-002227" - ], - "nist": [ - "AC-6 (5)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"The sudoers security policy requires that users authenticate themselves before they can use sudo. When sudoers requires authentication, it validates the invoking user's credentials. If the rootpw, targetpw, or runaspw flags are defined and not disabled, by default the operating system will prompt the invoking user for the \\\"root\\\" user password. \\nFor more information on each of the listed configurations, reference the sudoers(5) manual page.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-237634", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-237634r646853_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:178", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-40816r646852_fix", - "fixtext_fixref": "F-40816r646852_fix", - "ident": { - "text": "CCI-002227", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-010342", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-237634r646853_rule", - "time": "2021-12-17T10:40:58", - "severity": "medium", - "version": "RHEL-07-010342", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-002227", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:178", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:40:58", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-237635", - "title": "The Red Hat Enterprise Linux operating system must require re-authentication when using the \"sudo\" command.", - "desc": "Without re-authentication, users may access resources or perform tasks for which they do not have authorization. \n\nWhen operating systems provide the capability to escalate a functional capability, it is critical the organization requires the user to re-authenticate when using the \"sudo\" command.\n\nIf the value is set to an integer less than 0, the user's time stamp will not expire and the user will not have to re-authenticate for privileged actions until the user's session is terminated.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:179", - "label": "check" - }, - { - "data": "Configure the \"sudo\" command to require re-authentication.\nEdit the /etc/sudoers file:\n$ sudo visudo\n\nAdd or modify the following line:\nDefaults timestamp_timeout=[value]\nNote: The \"[value]\" must be a number that is greater than or equal to \"0\".", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-002038" - ], - "nist": [ - "IA-11" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without re-authentication, users may access resources or perform tasks for which they do not have authorization. \\n\\nWhen operating systems provide the capability to escalate a functional capability, it is critical the organization requires the user to re-authenticate when using the \\\"sudo\\\" command.\\n\\nIf the value is set to an integer less than 0, the user's time stamp will not expire and the user will not have to re-authenticate for privileged actions until the user's session is terminated.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-237635", - "group_title": "SRG-OS-000373-GPOS-00156", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-237635r792836_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:179", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-40817r646855_fix", - "fixtext_fixref": "F-40817r646855_fix", - "ident": { - "text": "CCI-002038", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 7", - "dc:subject": "Red Hat Enterprise Linux 7", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2899 - }, - "selected": "true", - "version": "RHEL-07-010343", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-237635r792836_rule", - "time": "2021-12-17T10:40:58", - "severity": "medium", - "version": "RHEL-07-010343", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-002038", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel7:def:179", - "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:40:58", - "message": "", - "resource": "" - } - ] - } - ], - "sha256": "97610b3d2f039856fe550e30baedd9936266385a810c4abbe7c5e84220b3635f" + "tags": { + "cci": [ + "CCI-000048" + ], + "nist": [ + "AC-8 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Display of a standardized and approved use notification before granting access to the operating system ensures privacy and security notification verbiage used is consistent with applicable federal laws, Executive Orders, directives, policies, regulations, standards, and guidance.\\n\\nSystem use notifications are required only for access via logon interfaces with human users and are not required when such human interfaces do not exist.\\n\\nThe banner must be formatted in accordance with applicable DoD policy. Use the following verbiage for operating systems that can accommodate banners of 1300 characters:\\n\\n\\\"You are accessing a U.S. Government (USG) Information System (IS) that is provided for USG-authorized use only.\\n\\nBy using this IS (which includes any device attached to this IS), you consent to the following conditions:\\n\\n-The USG routinely intercepts and monitors communications on this IS for purposes including, but not limited to, penetration testing, COMSEC monitoring, network operations and defense, personnel misconduct (PM), law enforcement (LE), and counterintelligence (CI) investigations.\\n\\n-At any time, the USG may inspect and seize data stored on this IS.\\n\\n-Communications using, or data stored on, this IS are not private, are subject to routine monitoring, interception, and search, and may be disclosed or used for any USG-authorized purpose.\\n\\n-This IS includes security measures (e.g., authentication and access controls) to protect USG interests--not for your personal benefit or privacy.\\n\\n-Notwithstanding the above, using this IS does not constitute consent to PM, LE or CI investigative searching or monitoring of the content of privileged communications, or work product, related to personal representation or services by attorneys, psychotherapists, or clergy, and their assistants. Such communications and work product are private and confidential. See User Agreement for details.\\\"\\n\\n\\nSatisfies: SRG-OS-000023-GPOS-00006, SRG-OS-000024-GPOS-00007, SRG-OS-000228-GPOS-00088\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204393", + "group_title": "SRG-OS-000023-GPOS-00006", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204393r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:922", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4517r88372_fix", + "fixtext_fixref": "F-4517r88372_fix", + "ident": [ + { + "text": "CCE-26970-4", + "system": "http://cce.mitre.org" + }, + { + "text": "V-71859", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86483", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000048", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-010030", + "weight": "10.000000", + "profiles": [] + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must display the Standard Mandatory DoD Notice and Consent Banner before granting local or remote access to the system via a graphical user logon.", + "id": "V-204393", + "desc": "Display of a standardized and approved use notification before granting access to the operating system ensures privacy and security notification verbiage used is consistent with applicable federal laws, Executive Orders, directives, policies, regulations, standards, and guidance.\n\nSystem use notifications are required only for access via logon interfaces with human users and are not required when such human interfaces do not exist.\n\nThe banner must be formatted in accordance with applicable DoD policy. Use the following verbiage for operating systems that can accommodate banners of 1300 characters:\n\n\"You are accessing a U.S. Government (USG) Information System (IS) that is provided for USG-authorized use only.\n\nBy using this IS (which includes any device attached to this IS), you consent to the following conditions:\n\n-The USG routinely intercepts and monitors communications on this IS for purposes including, but not limited to, penetration testing, COMSEC monitoring, network operations and defense, personnel misconduct (PM), law enforcement (LE), and counterintelligence (CI) investigations.\n\n-At any time, the USG may inspect and seize data stored on this IS.\n\n-Communications using, or data stored on, this IS are not private, are subject to routine monitoring, interception, and search, and may be disclosed or used for any USG-authorized purpose.\n\n-This IS includes security measures (e.g., authentication and access controls) to protect USG interests--not for your personal benefit or privacy.\n\n-Notwithstanding the above, using this IS does not constitute consent to PM, LE or CI investigative searching or monitoring of the content of privileged communications, or work product, related to personal representation or services by attorneys, psychotherapists, or clergy, and their assistants. Such communications and work product are private and confidential. See User Agreement for details.\"\n\n\nSatisfies: SRG-OS-000023-GPOS-00006, SRG-OS-000024-GPOS-00007, SRG-OS-000228-GPOS-00088", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:922", + "label": "check" + }, + { + "data": "Configure the operating system to display the Standard Mandatory DoD Notice and Consent Banner before granting access to the system.\n\nNote: If the system does not have GNOME installed, this requirement is Not Applicable.\n\nCreate a database to contain the system-wide graphical user logon settings (if it does not already exist) with the following command:\n\n# touch /etc/dconf/db/local.d/01-banner-message\n\nAdd the following line to the [org/gnome/login-screen] section of the \"/etc/dconf/db/local.d/01-banner-message\":\n\n[org/gnome/login-screen]\nbanner-message-enable=true\n\nUpdate the system databases:\n\n# dconf update\n\nUsers must log out and back in again before the system-wide settings take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204393\",\n \"title\": {\n \"text\": \"SRG-OS-000023-GPOS-00006\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204393r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-010030\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must display the Standard Mandatory DoD Notice and Consent Banner before granting local or remote access to the system via a graphical user logon.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Display of a standardized and approved use notification before granting access to the operating system ensures privacy and security notification verbiage used is consistent with applicable federal laws, Executive Orders, directives, policies, regulations, standards, and guidance.\\n\\nSystem use notifications are required only for access via logon interfaces with human users and are not required when such human interfaces do not exist.\\n\\nThe banner must be formatted in accordance with applicable DoD policy. Use the following verbiage for operating systems that can accommodate banners of 1300 characters:\\n\\n\\\"You are accessing a U.S. Government (USG) Information System (IS) that is provided for USG-authorized use only.\\n\\nBy using this IS (which includes any device attached to this IS), you consent to the following conditions:\\n\\n-The USG routinely intercepts and monitors communications on this IS for purposes including, but not limited to, penetration testing, COMSEC monitoring, network operations and defense, personnel misconduct (PM), law enforcement (LE), and counterintelligence (CI) investigations.\\n\\n-At any time, the USG may inspect and seize data stored on this IS.\\n\\n-Communications using, or data stored on, this IS are not private, are subject to routine monitoring, interception, and search, and may be disclosed or used for any USG-authorized purpose.\\n\\n-This IS includes security measures (e.g., authentication and access controls) to protect USG interests--not for your personal benefit or privacy.\\n\\n-Notwithstanding the above, using this IS does not constitute consent to PM, LE or CI investigative searching or monitoring of the content of privileged communications, or work product, related to personal representation or services by attorneys, psychotherapists, or clergy, and their assistants. Such communications and work product are private and confidential. See User Agreement for details.\\\"\\n\\n\\nSatisfies: SRG-OS-000023-GPOS-00006, SRG-OS-000024-GPOS-00007, SRG-OS-000228-GPOS-00088</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-26970-4\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-71859\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86483\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000048\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to display the Standard Mandatory DoD Notice and Consent Banner before granting access to the system.\\n\\nNote: If the system does not have GNOME installed, this requirement is Not Applicable.\\n\\nCreate a database to contain the system-wide graphical user logon settings (if it does not already exist) with the following command:\\n\\n# touch /etc/dconf/db/local.d/01-banner-message\\n\\nAdd the following line to the [org/gnome/login-screen] section of the \\\"/etc/dconf/db/local.d/01-banner-message\\\":\\n\\n[org/gnome/login-screen]\\nbanner-message-enable=true\\n\\nUpdate the system databases:\\n\\n# dconf update\\n\\nUsers must log out and back in again before the system-wide settings take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4517r88372_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4517r88372_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:922\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:30" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000056" + ], + "nist": [ + "AC-11 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"A session lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not want to log out because of the temporary nature of the absence.\\n\\nThe session lock is implemented at the point where session activity can be determined.\\n\\nRegardless of where the session lock is determined and implemented, once invoked, the session lock must remain in place until the user reauthenticates. No other activity aside from reauthentication must unlock the system.\\n\\nSatisfies: SRG-OS-000028-GPOS-00009, SRG-OS-000030-GPOS-00011\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204396", + "group_title": "SRG-OS-000028-GPOS-00009", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204396r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:988", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4520r88381_fix", + "fixtext_fixref": "F-4520r88381_fix", + "ident": [ + { + "text": "CCE-80112-6", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86515", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71891", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000056", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-010060", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204393r603261_rule", + "time": "2021-12-17T10:39:30", + "severity": "medium", + "version": "RHEL-07-010030", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-26970-4", + "system": "http://cce.mitre.org" + }, + { + "text": "V-71859", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86483", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000048", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:922", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must enable a user session lock until that user re-establishes access using established identification and authentication procedures.", + "id": "V-204396", + "desc": "A session lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not want to log out because of the temporary nature of the absence.\n\nThe session lock is implemented at the point where session activity can be determined.\n\nRegardless of where the session lock is determined and implemented, once invoked, the session lock must remain in place until the user reauthenticates. No other activity aside from reauthentication must unlock the system.\n\nSatisfies: SRG-OS-000028-GPOS-00009, SRG-OS-000030-GPOS-00011", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:988", + "label": "check" + }, + { + "data": "Configure the operating system to enable a user's session lock until that user re-establishes access using established identification and authentication procedures.\n\nCreate a database to contain the system-wide screensaver settings (if it does not already exist) with the following example:\n\n# touch /etc/dconf/db/local.d/00-screensaver\n\nEdit the \"[org/gnome/desktop/screensaver]\" section of the database file and add or update the following lines:\n\n# Set this to true to lock the screen when the screensaver activates\nlock-enabled=true\n\nUpdate the system databases:\n\n# dconf update\n\nUsers must log out and back in again before the system-wide settings take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204396\",\n \"title\": {\n \"text\": \"SRG-OS-000028-GPOS-00009\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204396r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-010060\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must enable a user session lock until that user re-establishes access using established identification and authentication procedures.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>A session lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not want to log out because of the temporary nature of the absence.\\n\\nThe session lock is implemented at the point where session activity can be determined.\\n\\nRegardless of where the session lock is determined and implemented, once invoked, the session lock must remain in place until the user reauthenticates. No other activity aside from reauthentication must unlock the system.\\n\\nSatisfies: SRG-OS-000028-GPOS-00009, SRG-OS-000030-GPOS-00011</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-80112-6\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86515\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-71891\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000056\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to enable a user's session lock until that user re-establishes access using established identification and authentication procedures.\\n\\nCreate a database to contain the system-wide screensaver settings (if it does not already exist) with the following example:\\n\\n# touch /etc/dconf/db/local.d/00-screensaver\\n\\nEdit the \\\"[org/gnome/desktop/screensaver]\\\" section of the database file and add or update the following lines:\\n\\n# Set this to true to lock the screen when the screensaver activates\\nlock-enabled=true\\n\\nUpdate the system databases:\\n\\n# dconf update\\n\\nUsers must log out and back in again before the system-wide settings take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4520r88381_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4520r88381_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:988\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:30" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001948", + "CCI-001953", + "CCI-001954" + ], + "nist": [ + "IA-2 (11)", + "IA-2 (12)", + "IA-2 (12)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"To assure accountability and prevent unauthenticated access, users must be identified and authenticated to prevent potential misuse and compromise of the system.\\n\\nMultifactor solutions that require devices separate from information systems gaining access include, for example, hardware tokens providing time-based or challenge-response authenticators and smart cards such as the U.S. Government Personal Identity Verification card and the DoD Common Access Card.\\n\\nSatisfies: SRG-OS-000375-GPOS-00161,SRG-OS-000375-GPOS-00162\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204397", + "group_title": "SRG-OS-000375-GPOS-00160", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204397r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:92515", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4521r88384_fix", + "fixtext_fixref": "F-4521r88384_fix", + "ident": [ + { + "text": "V-77819", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-92515", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001948", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001953", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001954", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-010061", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204396r603261_rule", + "time": "2021-12-17T10:39:30", + "severity": "medium", + "version": "RHEL-07-010060", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-80112-6", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86515", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71891", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000056", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:988", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must uniquely identify and must authenticate users using multifactor authentication via a graphical user logon.", + "id": "V-204397", + "desc": "To assure accountability and prevent unauthenticated access, users must be identified and authenticated to prevent potential misuse and compromise of the system.\n\nMultifactor solutions that require devices separate from information systems gaining access include, for example, hardware tokens providing time-based or challenge-response authenticators and smart cards such as the U.S. Government Personal Identity Verification card and the DoD Common Access Card.\n\nSatisfies: SRG-OS-000375-GPOS-00161,SRG-OS-000375-GPOS-00162", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:92515", + "label": "check" + }, + { + "data": "Configure the operating system to uniquely identify and authenticate users using multifactor authentication via a graphical user logon.\n\nNote: If the system does not have GNOME installed, this requirement is Not Applicable.\n\nCreate a database to contain the system-wide screensaver settings (if it does not already exist) with the following command: \n\nNote: The example is using the database local for the system, so if the system is using another database in \"/etc/dconf/profile/user\", the file should be created under the appropriate subdirectory.\n\n# touch /etc/dconf/db/local.d/00-defaults\n\nEdit \"[org/gnome/login-screen]\" and add or update the following line:\nenable-smartcard-authentication=true \n\nUpdate the system databases:\n# dconf update", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204397\",\n \"title\": {\n \"text\": \"SRG-OS-000375-GPOS-00160\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204397r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-010061\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must uniquely identify and must authenticate users using multifactor authentication via a graphical user logon.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>To assure accountability and prevent unauthenticated access, users must be identified and authenticated to prevent potential misuse and compromise of the system.\\n\\nMultifactor solutions that require devices separate from information systems gaining access include, for example, hardware tokens providing time-based or challenge-response authenticators and smart cards such as the U.S. Government Personal Identity Verification card and the DoD Common Access Card.\\n\\nSatisfies: SRG-OS-000375-GPOS-00161,SRG-OS-000375-GPOS-00162</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"V-77819\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-92515\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-001948\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-001953\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-001954\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to uniquely identify and authenticate users using multifactor authentication via a graphical user logon.\\n\\nNote: If the system does not have GNOME installed, this requirement is Not Applicable.\\n\\nCreate a database to contain the system-wide screensaver settings (if it does not already exist) with the following command: \\n\\nNote: The example is using the database local for the system, so if the system is using another database in \\\"/etc/dconf/profile/user\\\", the file should be created under the appropriate subdirectory.\\n\\n# touch /etc/dconf/db/local.d/00-defaults\\n\\nEdit \\\"[org/gnome/login-screen]\\\" and add or update the following line:\\nenable-smartcard-authentication=true \\n\\nUpdate the system databases:\\n# dconf update\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4521r88384_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4521r88384_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:92515\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:30" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000057" + ], + "nist": [ + "AC-11 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"A session time-out lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not log out because of the temporary nature of the absence. Rather than relying on the user to manually lock their operating system session prior to vacating the vicinity, operating systems need to be able to identify when a user's session has idled and take action to initiate the session lock.\\n\\nThe session lock is implemented at the point where session activity can be determined and/or controlled.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204398", + "group_title": "SRG-OS-000029-GPOS-00010", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204398r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-export": { + "export-name": "oval:mil.disa.stig.rhel7:var:3828", + "value-id": "xccdf_mil.disa.stig_value_inactivity_timeout_value" + }, + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:981", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4522r88387_fix", + "fixtext_fixref": "F-4522r88387_fix", + "ident": [ + { + "text": "CCE-80110-0", + "system": "http://cce.mitre.org" + }, + { + "text": "V-71893", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86517", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000057", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-010070", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204397r603261_rule", + "time": "2021-12-17T10:39:30", + "severity": "medium", + "version": "RHEL-07-010061", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "V-77819", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-92515", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001948", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001953", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001954", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:92515", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must initiate a screensaver after a 15-minute period of inactivity for graphical user interfaces.", + "id": "V-204398", + "desc": "A session time-out lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not log out because of the temporary nature of the absence. Rather than relying on the user to manually lock their operating system session prior to vacating the vicinity, operating systems need to be able to identify when a user's session has idled and take action to initiate the session lock.\n\nThe session lock is implemented at the point where session activity can be determined and/or controlled.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:981", + "label": "check" + }, + { + "data": "Configure the operating system to initiate a screensaver after a 15-minute period of inactivity for graphical user interfaces.\n\nCreate a database to contain the system-wide screensaver settings (if it does not already exist) with the following command:\n\n# touch /etc/dconf/db/local.d/00-screensaver\n\nEdit /etc/dconf/db/local.d/00-screensaver and add or update the following lines:\n\n[org/gnome/desktop/session]\n# Set the lock time out to 900 seconds before the session is considered idle\nidle-delay=uint32 900\n\nYou must include the \"uint32\" along with the integer key values as shown.\n\nUpdate the system databases:\n\n# dconf update\n\nUsers must log out and back in again before the system-wide settings take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204398\",\n \"title\": {\n \"text\": \"SRG-OS-000029-GPOS-00010\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204398r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-010070\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must initiate a screensaver after a 15-minute period of inactivity for graphical user interfaces.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>A session time-out lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not log out because of the temporary nature of the absence. Rather than relying on the user to manually lock their operating system session prior to vacating the vicinity, operating systems need to be able to identify when a user's session has idled and take action to initiate the session lock.\\n\\nThe session lock is implemented at the point where session activity can be determined and/or controlled.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-80110-0\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-71893\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86517\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000057\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to initiate a screensaver after a 15-minute period of inactivity for graphical user interfaces.\\n\\nCreate a database to contain the system-wide screensaver settings (if it does not already exist) with the following command:\\n\\n# touch /etc/dconf/db/local.d/00-screensaver\\n\\nEdit /etc/dconf/db/local.d/00-screensaver and add or update the following lines:\\n\\n[org/gnome/desktop/session]\\n# Set the lock time out to 900 seconds before the session is considered idle\\nidle-delay=uint32 900\\n\\nYou must include the \\\"uint32\\\" along with the integer key values as shown.\\n\\nUpdate the system databases:\\n\\n# dconf update\\n\\nUsers must log out and back in again before the system-wide settings take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4522r88387_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4522r88387_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-export\": {\n \"export-name\": \"oval:mil.disa.stig.rhel7:var:3828\",\n \"value-id\": \"xccdf_mil.disa.stig_value_inactivity_timeout_value\"\n },\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:981\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:30" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000057" + ], + "nist": [ + "AC-11 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"A session time-out lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not log out because of the temporary nature of the absence. Rather than relying on the user to manually lock their operating system session prior to vacating the vicinity, operating systems need to be able to identify when a user's session has idled and take action to initiate the session lock.\\n\\nThe session lock is implemented at the point where session activity can be determined and/or controlled.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204399", + "group_title": "SRG-OS-000029-GPOS-00010", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204399r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:999", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4523r88390_fix", + "fixtext_fixref": "F-4523r88390_fix", + "ident": [ + { + "text": "CCE-80371-8", + "system": "http://cce.mitre.org" + }, + { + "text": "V-73155", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-87807", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000057", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-010081", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204398r603261_rule", + "time": "2021-12-17T10:39:30", + "severity": "medium", + "version": "RHEL-07-010070", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-80110-0", + "system": "http://cce.mitre.org" + }, + { + "text": "V-71893", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86517", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000057", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-export": { + "export-name": "oval:mil.disa.stig.rhel7:var:3828", + "value-id": "xccdf_mil.disa.stig_value_inactivity_timeout_value" + }, + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:981", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + }, + "value": { + "id": "xccdf_mil.disa.stig_value_inactivity_timeout_value", + "operator": "equals", + "type": "number", + "title": { + "text": "Inactivity timeout", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "description": { + "text": "Choose allowed duration of inactive SSH connections, shells, and X sessions", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "value": [ + 900, + { + "text": 300, + "selector": "5_minutes" + }, + { + "text": 600, + "selector": "10_minutes" + }, + { + "text": 900, + "selector": "15_minutes" + } + ] + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must prevent a user from overriding the screensaver lock-delay setting for the graphical user interface.", + "id": "V-204399", + "desc": "A session time-out lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not log out because of the temporary nature of the absence. Rather than relying on the user to manually lock their operating system session prior to vacating the vicinity, operating systems need to be able to identify when a user's session has idled and take action to initiate the session lock.\n\nThe session lock is implemented at the point where session activity can be determined and/or controlled.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:999", + "label": "check" + }, + { + "data": "Configure the operating system to prevent a user from overriding a screensaver lock after a 15-minute period of inactivity for graphical user interfaces.\n\nCreate a database to contain the system-wide screensaver settings (if it does not already exist) with the following command: \n\nNote: The example below is using the database \"local\" for the system, so if the system is using another database in \"/etc/dconf/profile/user\", the file should be created under the appropriate subdirectory.\n\n# touch /etc/dconf/db/local.d/locks/session\n\nAdd the setting to lock the screensaver lock delay:\n\n/org/gnome/desktop/screensaver/lock-delay", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204399\",\n \"title\": {\n \"text\": \"SRG-OS-000029-GPOS-00010\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204399r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-010081\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must prevent a user from overriding the screensaver lock-delay setting for the graphical user interface.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>A session time-out lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not log out because of the temporary nature of the absence. Rather than relying on the user to manually lock their operating system session prior to vacating the vicinity, operating systems need to be able to identify when a user's session has idled and take action to initiate the session lock.\\n\\nThe session lock is implemented at the point where session activity can be determined and/or controlled.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-80371-8\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-73155\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-87807\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000057\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to prevent a user from overriding a screensaver lock after a 15-minute period of inactivity for graphical user interfaces.\\n\\nCreate a database to contain the system-wide screensaver settings (if it does not already exist) with the following command: \\n\\nNote: The example below is using the database \\\"local\\\" for the system, so if the system is using another database in \\\"/etc/dconf/profile/user\\\", the file should be created under the appropriate subdirectory.\\n\\n# touch /etc/dconf/db/local.d/locks/session\\n\\nAdd the setting to lock the screensaver lock delay:\\n\\n/org/gnome/desktop/screensaver/lock-delay\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4523r88390_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4523r88390_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:999\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:30" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000057" + ], + "nist": [ + "AC-11 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"A session time-out lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not log out because of the temporary nature of the absence. Rather than relying on the user to manually lock their operating system session prior to vacating the vicinity, operating systems need to be able to identify when a user's session has idled and take action to initiate the session lock.\\n\\nThe session lock is implemented at the point where session activity can be determined and/or controlled.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204402", + "group_title": "SRG-OS-000029-GPOS-00010", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204402r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:978", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4526r88399_fix", + "fixtext_fixref": "F-4526r88399_fix", + "ident": [ + { + "text": "CCE-80111-8", + "system": "http://cce.mitre.org" + }, + { + "text": "V-71899", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86523", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000057", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-010100", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204399r603261_rule", + "time": "2021-12-17T10:39:30", + "severity": "medium", + "version": "RHEL-07-010081", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-80371-8", + "system": "http://cce.mitre.org" + }, + { + "text": "V-73155", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-87807", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000057", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:999", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must initiate a session lock for the screensaver after a period of inactivity for graphical user interfaces.", + "id": "V-204402", + "desc": "A session time-out lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not log out because of the temporary nature of the absence. Rather than relying on the user to manually lock their operating system session prior to vacating the vicinity, operating systems need to be able to identify when a user's session has idled and take action to initiate the session lock.\n\nThe session lock is implemented at the point where session activity can be determined and/or controlled.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:978", + "label": "check" + }, + { + "data": "Configure the operating system to initiate a session lock after a 15-minute period of inactivity for graphical user interfaces.\n\nCreate a database to contain the system-wide screensaver settings (if it does not already exist) with the following command: \n\n# touch /etc/dconf/db/local.d/00-screensaver\n\nAdd the setting to enable screensaver locking after 15 minutes of inactivity:\n\n[org/gnome/desktop/screensaver]\n\nidle-activation-enabled=true\n\nUpdate the system databases:\n\n# dconf update\n\nUsers must log out and back in again before the system-wide settings take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204402\",\n \"title\": {\n \"text\": \"SRG-OS-000029-GPOS-00010\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204402r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-010100\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must initiate a session lock for the screensaver after a period of inactivity for graphical user interfaces.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>A session time-out lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not log out because of the temporary nature of the absence. Rather than relying on the user to manually lock their operating system session prior to vacating the vicinity, operating systems need to be able to identify when a user's session has idled and take action to initiate the session lock.\\n\\nThe session lock is implemented at the point where session activity can be determined and/or controlled.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-80111-8\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-71899\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86523\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000057\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to initiate a session lock after a 15-minute period of inactivity for graphical user interfaces.\\n\\nCreate a database to contain the system-wide screensaver settings (if it does not already exist) with the following command: \\n\\n# touch /etc/dconf/db/local.d/00-screensaver\\n\\nAdd the setting to enable screensaver locking after 15 minutes of inactivity:\\n\\n[org/gnome/desktop/screensaver]\\n\\nidle-activation-enabled=true\\n\\nUpdate the system databases:\\n\\n# dconf update\\n\\nUsers must log out and back in again before the system-wide settings take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4526r88399_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4526r88399_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:978\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:30" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000057" + ], + "nist": [ + "AC-11 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"A session lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not want to log out because of the temporary nature of the absence.\\n\\nThe session lock is implemented at the point where session activity can be determined.\\n\\nThe ability to enable/disable a session lock is given to the user by default. Disabling the user's ability to disengage the graphical user interface session lock provides the assurance that all sessions will lock after the specified period of time.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204403", + "group_title": "SRG-OS-000029-GPOS-00010", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204403r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:93703", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4527r88402_fix", + "fixtext_fixref": "F-4527r88402_fix", + "ident": [ + { + "text": "V-78997", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-93703", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000057", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-010101", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204402r603261_rule", + "time": "2021-12-17T10:39:30", + "severity": "medium", + "version": "RHEL-07-010100", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-80111-8", + "system": "http://cce.mitre.org" + }, + { + "text": "V-71899", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86523", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000057", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:978", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must prevent a user from overriding the screensaver idle-activation-enabled setting for the graphical user interface.", + "id": "V-204403", + "desc": "A session lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not want to log out because of the temporary nature of the absence.\n\nThe session lock is implemented at the point where session activity can be determined.\n\nThe ability to enable/disable a session lock is given to the user by default. Disabling the user's ability to disengage the graphical user interface session lock provides the assurance that all sessions will lock after the specified period of time.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:93703", + "label": "check" + }, + { + "data": "Configure the operating system to prevent a user from overriding a screensaver lock after a 15-minute period of inactivity for graphical user interfaces.\n\nCreate a database to contain the system-wide screensaver settings (if it does not already exist) with the following command: \n\nNote: The example below is using the database \"local\" for the system, so if the system is using another database in \"/etc/dconf/profile/user\", the file should be created under the appropriate subdirectory.\n\n# touch /etc/dconf/db/local.d/locks/session\n\nAdd the setting to lock the screensaver idle-activation-enabled setting:\n\n/org/gnome/desktop/screensaver/idle-activation-enabled", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204403\",\n \"title\": {\n \"text\": \"SRG-OS-000029-GPOS-00010\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204403r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-010101\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must prevent a user from overriding the screensaver idle-activation-enabled setting for the graphical user interface.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>A session lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not want to log out because of the temporary nature of the absence.\\n\\nThe session lock is implemented at the point where session activity can be determined.\\n\\nThe ability to enable/disable a session lock is given to the user by default. Disabling the user's ability to disengage the graphical user interface session lock provides the assurance that all sessions will lock after the specified period of time.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"V-78997\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-93703\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000057\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to prevent a user from overriding a screensaver lock after a 15-minute period of inactivity for graphical user interfaces.\\n\\nCreate a database to contain the system-wide screensaver settings (if it does not already exist) with the following command: \\n\\nNote: The example below is using the database \\\"local\\\" for the system, so if the system is using another database in \\\"/etc/dconf/profile/user\\\", the file should be created under the appropriate subdirectory.\\n\\n# touch /etc/dconf/db/local.d/locks/session\\n\\nAdd the setting to lock the screensaver idle-activation-enabled setting:\\n\\n/org/gnome/desktop/screensaver/idle-activation-enabled\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4527r88402_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4527r88402_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:93703\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:30" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000057" + ], + "nist": [ + "AC-11 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"A session time-out lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not log out because of the temporary nature of the absence. Rather than relying on the user to manually lock their operating system session prior to vacating the vicinity, operating systems need to be able to identify when a user's session has idled and take action to initiate the session lock.\\n\\nThe session lock is implemented at the point where session activity can be determined and/or controlled.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204404", + "group_title": "SRG-OS-000029-GPOS-00010", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204404r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:985", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4528r88405_fix", + "fixtext_fixref": "F-4528r88405_fix", + "ident": [ + { + "text": "CCE-80370-0", + "system": "http://cce.mitre.org" + }, + { + "text": "V-71901", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86525", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000057", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-010110", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204403r603261_rule", + "time": "2021-12-17T10:39:30", + "severity": "medium", + "version": "RHEL-07-010101", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "V-78997", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-93703", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000057", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:93703", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must initiate a session lock for graphical user interfaces when the screensaver is activated.", + "id": "V-204404", + "desc": "A session time-out lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not log out because of the temporary nature of the absence. Rather than relying on the user to manually lock their operating system session prior to vacating the vicinity, operating systems need to be able to identify when a user's session has idled and take action to initiate the session lock.\n\nThe session lock is implemented at the point where session activity can be determined and/or controlled.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:985", + "label": "check" + }, + { + "data": "Configure the operating system to initiate a session lock for graphical user interfaces when a screensaver is activated.\n\nCreate a database to contain the system-wide screensaver settings (if it does not already exist) with the following command: \n\n# touch /etc/dconf/db/local.d/00-screensaver\n\nAdd the setting to enable session locking when a screensaver is activated:\n\n[org/gnome/desktop/screensaver]\nlock-delay=uint32 5\n\nThe \"uint32\" must be included along with the integer key values as shown.\n\nUpdate the system databases:\n\n# dconf update\n\nUsers must log out and back in again before the system-wide settings take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204404\",\n \"title\": {\n \"text\": \"SRG-OS-000029-GPOS-00010\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204404r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-010110\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must initiate a session lock for graphical user interfaces when the screensaver is activated.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>A session time-out lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not log out because of the temporary nature of the absence. Rather than relying on the user to manually lock their operating system session prior to vacating the vicinity, operating systems need to be able to identify when a user's session has idled and take action to initiate the session lock.\\n\\nThe session lock is implemented at the point where session activity can be determined and/or controlled.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-80370-0\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-71901\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86525\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000057\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to initiate a session lock for graphical user interfaces when a screensaver is activated.\\n\\nCreate a database to contain the system-wide screensaver settings (if it does not already exist) with the following command: \\n\\n# touch /etc/dconf/db/local.d/00-screensaver\\n\\nAdd the setting to enable session locking when a screensaver is activated:\\n\\n[org/gnome/desktop/screensaver]\\nlock-delay=uint32 5\\n\\nThe \\\"uint32\\\" must be included along with the integer key values as shown.\\n\\nUpdate the system databases:\\n\\n# dconf update\\n\\nUsers must log out and back in again before the system-wide settings take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4528r88405_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4528r88405_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:985\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:30" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000192" + ], + "nist": [ + "IA-5 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Pluggable authentication modules (PAM) allow for a modular approach to integrating authentication methods. PAM operates in a top-down processing model and if the modules are not listed in the correct order, an important security function could be bypassed if stack entries are not centralized.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204405", + "group_title": "SRG-OS-000069-GPOS-00037", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204405r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:95715", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4529r88408_fix", + "fixtext_fixref": "F-4529r88408_fix", + "ident": [ + { + "text": "SV-95715", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-81003", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000192", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-010118", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204404r603261_rule", + "time": "2021-12-17T10:39:30", + "severity": "medium", + "version": "RHEL-07-010110", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-80370-0", + "system": "http://cce.mitre.org" + }, + { + "text": "V-71901", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86525", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000057", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:985", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that /etc/pam.d/passwd implements /etc/pam.d/system-auth when changing passwords.", + "id": "V-204405", + "desc": "Pluggable authentication modules (PAM) allow for a modular approach to integrating authentication methods. PAM operates in a top-down processing model and if the modules are not listed in the correct order, an important security function could be bypassed if stack entries are not centralized.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:95715", + "label": "check" + }, + { + "data": "Configure PAM to utilize /etc/pam.d/system-auth when changing passwords.\n\nAdd the following line to \"/etc/pam.d/passwd\" (or modify the line to have the required value):\n\npassword substack system-auth", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204405\",\n \"title\": {\n \"text\": \"SRG-OS-000069-GPOS-00037\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204405r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-010118\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must be configured so that /etc/pam.d/passwd implements /etc/pam.d/system-auth when changing passwords.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Pluggable authentication modules (PAM) allow for a modular approach to integrating authentication methods. PAM operates in a top-down processing model and if the modules are not listed in the correct order, an important security function could be bypassed if stack entries are not centralized.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"SV-95715\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-81003\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000192\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure PAM to utilize /etc/pam.d/system-auth when changing passwords.\\n\\nAdd the following line to \\\"/etc/pam.d/passwd\\\" (or modify the line to have the required value):\\n\\npassword substack system-auth\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4529r88408_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4529r88408_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:95715\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:39:30" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000192" + ], + "nist": [ + "IA-5 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. \\\"pwquality\\\" enforces complex password construction configuration and has the ability to limit brute-force attacks on the system.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204406", + "group_title": "SRG-OS-000069-GPOS-00037", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204406r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:481", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4530r88411_fix", + "fixtext_fixref": "F-4530r88411_fix", + "ident": [ + { + "text": "CCE-27160-1", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-87811", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-73159", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000192", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-010119", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204405r603261_rule", + "time": "2021-12-17T10:39:30", + "severity": "medium", + "version": "RHEL-07-010118", + "weight": "10.000000", + "result": "pass", + "ident": [ + { + "text": "SV-95715", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-81003", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000192", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:95715", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that when passwords are changed or new passwords are established, pwquality must be used.", + "id": "V-204406", + "desc": "Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. \"pwquality\" enforces complex password construction configuration and has the ability to limit brute-force attacks on the system.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:481", + "label": "check" + }, + { + "data": "Configure the operating system to use \"pwquality\" to enforce password complexity rules.\n\nAdd the following line to \"/etc/pam.d/system-auth\" (or modify the line to have the required value):\n\npassword required pam_pwquality.so retry=3\n\nNote: The value of \"retry\" should be between \"1\" and \"3\".", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204406\",\n \"title\": {\n \"text\": \"SRG-OS-000069-GPOS-00037\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204406r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-010119\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must be configured so that when passwords are changed or new passwords are established, pwquality must be used.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. \\\"pwquality\\\" enforces complex password construction configuration and has the ability to limit brute-force attacks on the system.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-27160-1\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-87811\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-73159\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000192\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to use \\\"pwquality\\\" to enforce password complexity rules.\\n\\nAdd the following line to \\\"/etc/pam.d/system-auth\\\" (or modify the line to have the required value):\\n\\npassword required pam_pwquality.so retry=3\\n\\nNote: The value of \\\"retry\\\" should be between \\\"1\\\" and \\\"3\\\".\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4530r88411_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4530r88411_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:481\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:39:30" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000192" + ], + "nist": [ + "IA-5 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204407", + "group_title": "SRG-OS-000069-GPOS-00037", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204407r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-export": { + "export-name": "oval:mil.disa.stig.rhel7:var:3805", + "value-id": "xccdf_mil.disa.stig_value_var_password_pam_ucredit" + }, + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:484", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4531r88414_fix", + "fixtext_fixref": "F-4531r88414_fix", + "ident": [ + { + "text": "CCE-27200-5", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86527", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71903", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000192", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-010120", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204406r603261_rule", + "time": "2021-12-17T10:39:30", + "severity": "medium", + "version": "RHEL-07-010119", + "weight": "10.000000", + "result": "pass", + "ident": [ + { + "text": "CCE-27160-1", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-87811", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-73159", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000192", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:481", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that when passwords are changed or new passwords are established, the new password must contain at least one upper-case character.", + "id": "V-204407", + "desc": "Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\n\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:484", + "label": "check" + }, + { + "data": "Configure the operating system to enforce password complexity by requiring that at least one upper-case character be used by setting the \"ucredit\" option.\n\nAdd the following line to \"/etc/security/pwquality.conf\" (or modify the line to have the required value):\n\nucredit = -1", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204407\",\n \"title\": {\n \"text\": \"SRG-OS-000069-GPOS-00037\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204407r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-010120\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must be configured so that when passwords are changed or new passwords are established, the new password must contain at least one upper-case character.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-27200-5\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86527\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-71903\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000192\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to enforce password complexity by requiring that at least one upper-case character be used by setting the \\\"ucredit\\\" option.\\n\\nAdd the following line to \\\"/etc/security/pwquality.conf\\\" (or modify the line to have the required value):\\n\\nucredit = -1\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4531r88414_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4531r88414_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-export\": {\n \"export-name\": \"oval:mil.disa.stig.rhel7:var:3805\",\n \"value-id\": \"xccdf_mil.disa.stig_value_var_password_pam_ucredit\"\n },\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:484\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:30" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000193" + ], + "nist": [ + "IA-5 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204408", + "group_title": "SRG-OS-000070-GPOS-00038", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204408r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-export": { + "export-name": "oval:mil.disa.stig.rhel7:var:3798", + "value-id": "xccdf_mil.disa.stig_value_var_password_pam_lcredit" + }, + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:468", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4532r88417_fix", + "fixtext_fixref": "F-4532r88417_fix", + "ident": [ + { + "text": "CCE-27345-8", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86529", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71905", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000193", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-010130", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204407r603261_rule", + "time": "2021-12-17T10:39:30", + "severity": "medium", + "version": "RHEL-07-010120", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-27200-5", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86527", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71903", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000192", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-export": { + "export-name": "oval:mil.disa.stig.rhel7:var:3805", + "value-id": "xccdf_mil.disa.stig_value_var_password_pam_ucredit" + }, + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:484", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + }, + "value": { + "id": "xccdf_mil.disa.stig_value_var_password_pam_ucredit", + "operator": "equals", + "type": "number", + "title": { + "text": "ucredit", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "description": { + "text": "Minimum number of upper case in password", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "value": [ + -1, + { + "text": -2, + "selector": "2" + }, + { + "text": -1, + "selector": "1" + }, + { + "text": 0, + "selector": "0" + } + ] + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that when passwords are changed or new passwords are established, the new password must contain at least one lower-case character.", + "id": "V-204408", + "desc": "Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\n\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:468", + "label": "check" + }, + { + "data": "Configure the system to require at least one lower-case character when creating or changing a password.\n\nAdd or modify the following line \nin \"/etc/security/pwquality.conf\":\n\nlcredit = -1", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204408\",\n \"title\": {\n \"text\": \"SRG-OS-000070-GPOS-00038\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204408r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-010130\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must be configured so that when passwords are changed or new passwords are established, the new password must contain at least one lower-case character.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-27345-8\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86529\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-71905\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000193\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the system to require at least one lower-case character when creating or changing a password.\\n\\nAdd or modify the following line \\nin \\\"/etc/security/pwquality.conf\\\":\\n\\nlcredit = -1\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4532r88417_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4532r88417_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-export\": {\n \"export-name\": \"oval:mil.disa.stig.rhel7:var:3798\",\n \"value-id\": \"xccdf_mil.disa.stig_value_var_password_pam_lcredit\"\n },\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:468\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:30" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000194" + ], + "nist": [ + "IA-5 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204409", + "group_title": "SRG-OS-000071-GPOS-00039", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204409r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-export": { + "export-name": "oval:mil.disa.stig.rhel7:var:3796", + "value-id": "xccdf_mil.disa.stig_value_var_password_pam_dcredit" + }, + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:463", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4533r88420_fix", + "fixtext_fixref": "F-4533r88420_fix", + "ident": [ + { + "text": "CCE-27214-6", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86531", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71907", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000194", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-010140", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204408r603261_rule", + "time": "2021-12-17T10:39:30", + "severity": "medium", + "version": "RHEL-07-010130", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-27345-8", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86529", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71905", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000193", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-export": { + "export-name": "oval:mil.disa.stig.rhel7:var:3798", + "value-id": "xccdf_mil.disa.stig_value_var_password_pam_lcredit" + }, + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:468", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + }, + "value": { + "id": "xccdf_mil.disa.stig_value_var_password_pam_lcredit", + "operator": "equals", + "type": "number", + "title": { + "text": "lcredit", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "description": { + "text": "Minimum number of lower case in password", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "value": [ + -1, + { + "text": -2, + "selector": "2" + }, + { + "text": -1, + "selector": "1" + }, + { + "text": 0, + "selector": "0" + } + ] + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that when passwords are changed or new passwords are assigned, the new password must contain at least one numeric character.", + "id": "V-204409", + "desc": "Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\n\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:463", + "label": "check" + }, + { + "data": "Configure the operating system to enforce password complexity by requiring that at least one numeric character be used by setting the \"dcredit\" option.\n\nAdd the following line to /etc/security/pwquality.conf (or modify the line to have the required value):\n\ndcredit = -1", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204409\",\n \"title\": {\n \"text\": \"SRG-OS-000071-GPOS-00039\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204409r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-010140\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must be configured so that when passwords are changed or new passwords are assigned, the new password must contain at least one numeric character.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-27214-6\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86531\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-71907\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000194\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to enforce password complexity by requiring that at least one numeric character be used by setting the \\\"dcredit\\\" option.\\n\\nAdd the following line to /etc/security/pwquality.conf (or modify the line to have the required value):\\n\\ndcredit = -1\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4533r88420_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4533r88420_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-export\": {\n \"export-name\": \"oval:mil.disa.stig.rhel7:var:3796\",\n \"value-id\": \"xccdf_mil.disa.stig_value_var_password_pam_dcredit\"\n },\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:463\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:30" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001619" + ], + "nist": [ + "IA-5 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204410", + "group_title": "SRG-OS-000266-GPOS-00101", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204410r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-export": { + "export-name": "oval:mil.disa.stig.rhel7:var:3803", + "value-id": "xccdf_mil.disa.stig_value_var_password_pam_ocredit" + }, + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:478", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4534r88423_fix", + "fixtext_fixref": "F-4534r88423_fix", + "ident": [ + { + "text": "CCE-27360-7", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86533", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71909", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001619", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-010150", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204409r603261_rule", + "time": "2021-12-17T10:39:30", + "severity": "medium", + "version": "RHEL-07-010140", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-27214-6", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86531", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71907", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000194", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-export": { + "export-name": "oval:mil.disa.stig.rhel7:var:3796", + "value-id": "xccdf_mil.disa.stig_value_var_password_pam_dcredit" + }, + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:463", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + }, + "value": { + "id": "xccdf_mil.disa.stig_value_var_password_pam_dcredit", + "operator": "equals", + "type": "number", + "title": { + "text": "dcredit", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "description": { + "text": "Minimum number of digits in password", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "value": [ + -1, + { + "text": -2, + "selector": "2" + }, + { + "text": -1, + "selector": "1" + }, + { + "text": 0, + "selector": "0" + } + ] + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that when passwords are changed or new passwords are established, the new password must contain at least one special character.", + "id": "V-204410", + "desc": "Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\n\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:478", + "label": "check" + }, + { + "data": "Configure the operating system to enforce password complexity by requiring that at least one special character be used by setting the \"ocredit\" option.\n\nAdd the following line to \"/etc/security/pwquality.conf\" (or modify the line to have the required value):\n\nocredit = -1", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204410\",\n \"title\": {\n \"text\": \"SRG-OS-000266-GPOS-00101\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204410r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-010150\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must be configured so that when passwords are changed or new passwords are established, the new password must contain at least one special character.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-27360-7\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86533\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-71909\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-001619\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to enforce password complexity by requiring that at least one special character be used by setting the \\\"ocredit\\\" option.\\n\\nAdd the following line to \\\"/etc/security/pwquality.conf\\\" (or modify the line to have the required value):\\n\\nocredit = -1\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4534r88423_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4534r88423_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-export\": {\n \"export-name\": \"oval:mil.disa.stig.rhel7:var:3803\",\n \"value-id\": \"xccdf_mil.disa.stig_value_var_password_pam_ocredit\"\n },\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:478\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:30" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000195" + ], + "nist": [ + "IA-5 (1) (b)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204411", + "group_title": "SRG-OS-000072-GPOS-00040", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204411r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-export": { + "export-name": "oval:mil.disa.stig.rhel7:var:3797", + "value-id": "xccdf_mil.disa.stig_value_var_password_pam_difok" + }, + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:466", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4535r88426_fix", + "fixtext_fixref": "F-4535r88426_fix", + "ident": [ + { + "text": "CCE-26631-2", + "system": "http://cce.mitre.org" + }, + { + "text": "V-71911", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86535", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000195", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-010160", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204410r603261_rule", + "time": "2021-12-17T10:39:30", + "severity": "medium", + "version": "RHEL-07-010150", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-27360-7", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86533", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71909", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001619", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-export": { + "export-name": "oval:mil.disa.stig.rhel7:var:3803", + "value-id": "xccdf_mil.disa.stig_value_var_password_pam_ocredit" + }, + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:478", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + }, + "value": { + "id": "xccdf_mil.disa.stig_value_var_password_pam_ocredit", + "operator": "equals", + "type": "number", + "title": { + "text": "ocredit", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "description": { + "text": "Minimum number of other (special characters) in\npassword", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "value": [ + -1, + { + "text": -2, + "selector": "2" + }, + { + "text": -1, + "selector": "1" + }, + { + "text": 0, + "selector": "0" + } + ] + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that when passwords are changed a minimum of eight of the total number of characters must be changed.", + "id": "V-204411", + "desc": "Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\n\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:466", + "label": "check" + }, + { + "data": "Configure the operating system to require the change of at least eight of the total number of characters when passwords are changed by setting the \"difok\" option.\n\nAdd the following line to \"/etc/security/pwquality.conf\" (or modify the line to have the required value):\n\ndifok = 8", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204411\",\n \"title\": {\n \"text\": \"SRG-OS-000072-GPOS-00040\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204411r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-010160\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must be configured so that when passwords are changed a minimum of eight of the total number of characters must be changed.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-26631-2\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-71911\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86535\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000195\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to require the change of at least eight of the total number of characters when passwords are changed by setting the \\\"difok\\\" option.\\n\\nAdd the following line to \\\"/etc/security/pwquality.conf\\\" (or modify the line to have the required value):\\n\\ndifok = 8\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4535r88426_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4535r88426_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-export\": {\n \"export-name\": \"oval:mil.disa.stig.rhel7:var:3797\",\n \"value-id\": \"xccdf_mil.disa.stig_value_var_password_pam_difok\"\n },\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:466\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:30" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000195" + ], + "nist": [ + "IA-5 (1) (b)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204412", + "group_title": "SRG-OS-000072-GPOS-00040", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204412r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-export": { + "export-name": "oval:mil.disa.stig.rhel7:var:3801", + "value-id": "xccdf_mil.disa.stig_value_var_password_pam_minclass" + }, + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:474", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4536r88429_fix", + "fixtext_fixref": "F-4536r88429_fix", + "ident": [ + { + "text": "CCE-27115-5", + "system": "http://cce.mitre.org" + }, + { + "text": "V-71913", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86537", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000195", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-010170", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204411r603261_rule", + "time": "2021-12-17T10:39:30", + "severity": "medium", + "version": "RHEL-07-010160", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-26631-2", + "system": "http://cce.mitre.org" + }, + { + "text": "V-71911", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86535", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000195", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-export": { + "export-name": "oval:mil.disa.stig.rhel7:var:3797", + "value-id": "xccdf_mil.disa.stig_value_var_password_pam_difok" + }, + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:466", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + }, + "value": { + "id": "xccdf_mil.disa.stig_value_var_password_pam_difok", + "operator": "equals", + "type": "number", + "title": { + "text": "difok", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "description": { + "text": "Minimum number of characters not present in old\npassword", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "warning": { + "text": "Keep this high for short passwords", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US", + "category": "general" + }, + "value": [ + 8, + { + "text": 2, + "selector": "2" + }, + { + "text": 3, + "selector": "3" + }, + { + "text": 4, + "selector": "4" + }, + { + "text": 5, + "selector": "5" + }, + { + "text": 6, + "selector": "6" + }, + { + "text": 7, + "selector": "7" + }, + { + "text": 8, + "selector": "8" + }, + { + "text": 15, + "selector": "15" + } + ] + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that when passwords are changed a minimum of four character classes must be changed.", + "id": "V-204412", + "desc": "Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\n\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:474", + "label": "check" + }, + { + "data": "Configure the operating system to require the change of at least four character classes when passwords are changed by setting the \"minclass\" option.\n\nAdd the following line to \"/etc/security/pwquality.conf conf\" (or modify the line to have the required value):\n\nminclass = 4", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204412\",\n \"title\": {\n \"text\": \"SRG-OS-000072-GPOS-00040\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204412r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-010170\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must be configured so that when passwords are changed a minimum of four character classes must be changed.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-27115-5\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-71913\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86537\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000195\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to require the change of at least four character classes when passwords are changed by setting the \\\"minclass\\\" option.\\n\\nAdd the following line to \\\"/etc/security/pwquality.conf conf\\\" (or modify the line to have the required value):\\n\\nminclass = 4\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4536r88429_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4536r88429_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-export\": {\n \"export-name\": \"oval:mil.disa.stig.rhel7:var:3801\",\n \"value-id\": \"xccdf_mil.disa.stig_value_var_password_pam_minclass\"\n },\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:474\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:30" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000195" + ], + "nist": [ + "IA-5 (1) (b)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204413", + "group_title": "SRG-OS-000072-GPOS-00040", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204413r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-export": { + "export-name": "oval:mil.disa.stig.rhel7:var:3800", + "value-id": "xccdf_mil.disa.stig_value_var_password_pam_maxrepeat" + }, + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:472", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4537r88432_fix", + "fixtext_fixref": "F-4537r88432_fix", + "ident": [ + { + "text": "CCE-27333-4", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86539", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71915", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000195", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-010180", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204412r603261_rule", + "time": "2021-12-17T10:39:30", + "severity": "medium", + "version": "RHEL-07-010170", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-27115-5", + "system": "http://cce.mitre.org" + }, + { + "text": "V-71913", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86537", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000195", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-export": { + "export-name": "oval:mil.disa.stig.rhel7:var:3801", + "value-id": "xccdf_mil.disa.stig_value_var_password_pam_minclass" + }, + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:474", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + }, + "value": { + "id": "xccdf_mil.disa.stig_value_var_password_pam_minclass", + "operator": "equals", + "type": "number", + "title": { + "text": "minclass", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "description": { + "text": "Minimum number of categories of characters that must exist in a password", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "value": [ + 4, + { + "text": 1, + "selector": "1" + }, + { + "text": 2, + "selector": "2" + }, + { + "text": 3, + "selector": "3" + }, + { + "text": 4, + "selector": "4" + } + ] + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that when passwords are changed the number of repeating consecutive characters must not be more than three characters.", + "id": "V-204413", + "desc": "Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\n\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:472", + "label": "check" + }, + { + "data": "Configure the operating system to require the change of the number of repeating consecutive characters when passwords are changed by setting the \"maxrepeat\" option.\n\nAdd the following line to \"/etc/security/pwquality.conf conf\" (or modify the line to have the required value):\n\nmaxrepeat = 3", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204413\",\n \"title\": {\n \"text\": \"SRG-OS-000072-GPOS-00040\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204413r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-010180\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must be configured so that when passwords are changed the number of repeating consecutive characters must not be more than three characters.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-27333-4\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86539\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-71915\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000195\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to require the change of the number of repeating consecutive characters when passwords are changed by setting the \\\"maxrepeat\\\" option.\\n\\nAdd the following line to \\\"/etc/security/pwquality.conf conf\\\" (or modify the line to have the required value):\\n\\nmaxrepeat = 3\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4537r88432_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4537r88432_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-export\": {\n \"export-name\": \"oval:mil.disa.stig.rhel7:var:3800\",\n \"value-id\": \"xccdf_mil.disa.stig_value_var_password_pam_maxrepeat\"\n },\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:472\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:30" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000195" + ], + "nist": [ + "IA-5 (1) (b)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204414", + "group_title": "SRG-OS-000072-GPOS-00040", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204414r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-export": { + "export-name": "oval:mil.disa.stig.rhel7:var:3799", + "value-id": "xccdf_mil.disa.stig_value_var_password_pam_maxclassrepeat" + }, + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:470", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4538r88435_fix", + "fixtext_fixref": "F-4538r88435_fix", + "ident": [ + { + "text": "CCE-27512-3", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86541", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71917", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000195", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-010190", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204413r603261_rule", + "time": "2021-12-17T10:39:30", + "severity": "medium", + "version": "RHEL-07-010180", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-27333-4", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86539", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71915", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000195", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-export": { + "export-name": "oval:mil.disa.stig.rhel7:var:3800", + "value-id": "xccdf_mil.disa.stig_value_var_password_pam_maxrepeat" + }, + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:472", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + }, + "value": { + "id": "xccdf_mil.disa.stig_value_var_password_pam_maxrepeat", + "operator": "equals", + "type": "number", + "title": { + "text": "maxrepeat", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "description": { + "text": "Maximum Number of Consecutive Repeating Characters in a Password", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "value": [ + 3, + { + "text": 1, + "selector": "1" + }, + { + "text": 2, + "selector": "2" + }, + { + "text": 3, + "selector": "3" + } + ] + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that when passwords are changed the number of repeating characters of the same character class must not be more than four characters.", + "id": "V-204414", + "desc": "Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\n\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:470", + "label": "check" + }, + { + "data": "Configure the operating system to require the change of the number of repeating characters of the same character class when passwords are changed by setting the \"maxclassrepeat\" option.\n\nAdd the following line to \"/etc/security/pwquality.conf\" conf (or modify the line to have the required value):\n\nmaxclassrepeat = 4", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204414\",\n \"title\": {\n \"text\": \"SRG-OS-000072-GPOS-00040\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204414r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-010190\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must be configured so that when passwords are changed the number of repeating characters of the same character class must not be more than four characters.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-27512-3\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86541\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-71917\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000195\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to require the change of the number of repeating characters of the same character class when passwords are changed by setting the \\\"maxclassrepeat\\\" option.\\n\\nAdd the following line to \\\"/etc/security/pwquality.conf\\\" conf (or modify the line to have the required value):\\n\\nmaxclassrepeat = 4\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4538r88435_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4538r88435_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-export\": {\n \"export-name\": \"oval:mil.disa.stig.rhel7:var:3799\",\n \"value-id\": \"xccdf_mil.disa.stig_value_var_password_pam_maxclassrepeat\"\n },\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:470\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:30" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000196" + ], + "nist": [ + "IA-5 (1) (c)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Passwords need to be protected at all times, and encryption is the standard method for protecting passwords. If passwords are not encrypted, they can be plainly read (i.e., clear text) and easily compromised. Passwords encrypted with a weak algorithm are no more protected than if they are kept in plain text.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204415", + "group_title": "SRG-OS-000073-GPOS-00041", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204415r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:1367", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4539r88438_fix", + "fixtext_fixref": "F-4539r88438_fix", + "ident": [ + { + "text": "CCE-27104-9", + "system": "http://cce.mitre.org" + }, + { + "text": "V-71919", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86543", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000196", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-010200", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204414r603261_rule", + "time": "2021-12-17T10:39:30", + "severity": "medium", + "version": "RHEL-07-010190", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-27512-3", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86541", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71917", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000195", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-export": { + "export-name": "oval:mil.disa.stig.rhel7:var:3799", + "value-id": "xccdf_mil.disa.stig_value_var_password_pam_maxclassrepeat" + }, + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:470", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + }, + "value": { + "id": "xccdf_mil.disa.stig_value_var_password_pam_maxclassrepeat", + "operator": "equals", + "type": "number", + "title": { + "text": "maxclassrepeat", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "description": { + "text": "Maximum Number of Consecutive Repeating Characters in a Password From the Same Character Class", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "value": [ + 4, + { + "text": 1, + "selector": "1" + }, + { + "text": 2, + "selector": "2" + }, + { + "text": 3, + "selector": "3" + }, + { + "text": 4, + "selector": "4" + } + ] + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that the PAM system service is configured to store only encrypted representations of passwords.", + "id": "V-204415", + "desc": "Passwords need to be protected at all times, and encryption is the standard method for protecting passwords. If passwords are not encrypted, they can be plainly read (i.e., clear text) and easily compromised. Passwords encrypted with a weak algorithm are no more protected than if they are kept in plain text.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:1367", + "label": "check" + }, + { + "data": "Configure the operating system to store only SHA512 encrypted representations of passwords.\n\nAdd the following line in \"/etc/pam.d/system-auth\":\npam_unix.so sha512 shadow try_first_pass use_authtok\n\nAdd the following line in \"/etc/pam.d/password-auth\":\npam_unix.so sha512 shadow try_first_pass use_authtok\n\nNote: Manual changes to the listed files may be overwritten by the \"authconfig\" program. The \"authconfig\" program should not be used to update the configurations listed in this requirement.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204415\",\n \"title\": {\n \"text\": \"SRG-OS-000073-GPOS-00041\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204415r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-010200\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must be configured so that the PAM system service is configured to store only encrypted representations of passwords.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Passwords need to be protected at all times, and encryption is the standard method for protecting passwords. If passwords are not encrypted, they can be plainly read (i.e., clear text) and easily compromised. Passwords encrypted with a weak algorithm are no more protected than if they are kept in plain text.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-27104-9\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-71919\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86543\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000196\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to store only SHA512 encrypted representations of passwords.\\n\\nAdd the following line in \\\"/etc/pam.d/system-auth\\\":\\npam_unix.so sha512 shadow try_first_pass use_authtok\\n\\nAdd the following line in \\\"/etc/pam.d/password-auth\\\":\\npam_unix.so sha512 shadow try_first_pass use_authtok\\n\\nNote: Manual changes to the listed files may be overwritten by the \\\"authconfig\\\" program. The \\\"authconfig\\\" program should not be used to update the configurations listed in this requirement.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4539r88438_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4539r88438_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:1367\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:39:30" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000196" + ], + "nist": [ + "IA-5 (1) (c)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Passwords need to be protected at all times, and encryption is the standard method for protecting passwords. If passwords are not encrypted, they can be plainly read (i.e., clear text) and easily compromised. Passwords encrypted with a weak algorithm are no more protected than if they are kept in plain text.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204416", + "group_title": "SRG-OS-000073-GPOS-00041", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204416r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:1365", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4540r88441_fix", + "fixtext_fixref": "F-4540r88441_fix", + "ident": [ + { + "text": "CCE-27124-7", + "system": "http://cce.mitre.org" + }, + { + "text": "V-71921", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86545", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000196", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-010210", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204415r603261_rule", + "time": "2021-12-17T10:39:30", + "severity": "medium", + "version": "RHEL-07-010200", + "weight": "10.000000", + "result": "pass", + "ident": [ + { + "text": "CCE-27104-9", + "system": "http://cce.mitre.org" + }, + { + "text": "V-71919", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86543", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000196", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:1367", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured to use the shadow file to store only encrypted representations of passwords.", + "id": "V-204416", + "desc": "Passwords need to be protected at all times, and encryption is the standard method for protecting passwords. If passwords are not encrypted, they can be plainly read (i.e., clear text) and easily compromised. Passwords encrypted with a weak algorithm are no more protected than if they are kept in plain text.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:1365", + "label": "check" + }, + { + "data": "Configure the operating system to store only SHA512 encrypted representations of passwords.\n\nAdd or update the following line in \"/etc/login.defs\":\n\nENCRYPT_METHOD SHA512", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204416\",\n \"title\": {\n \"text\": \"SRG-OS-000073-GPOS-00041\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204416r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-010210\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must be configured to use the shadow file to store only encrypted representations of passwords.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Passwords need to be protected at all times, and encryption is the standard method for protecting passwords. If passwords are not encrypted, they can be plainly read (i.e., clear text) and easily compromised. Passwords encrypted with a weak algorithm are no more protected than if they are kept in plain text.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-27124-7\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-71921\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86545\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000196\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to store only SHA512 encrypted representations of passwords.\\n\\nAdd or update the following line in \\\"/etc/login.defs\\\":\\n\\nENCRYPT_METHOD SHA512\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4540r88441_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4540r88441_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:1365\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:39:30" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000196" + ], + "nist": [ + "IA-5 (1) (c)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Passwords need to be protected at all times, and encryption is the standard method for protecting passwords. If passwords are not encrypted, they can be plainly read (i.e., clear text) and easily compromised. Passwords encrypted with a weak algorithm are no more protected than if they are kept in plain text.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204417", + "group_title": "SRG-OS-000073-GPOS-00041", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204417r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:1363", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4541r88444_fix", + "fixtext_fixref": "F-4541r88444_fix", + "ident": [ + { + "text": "CCE-27053-8", + "system": "http://cce.mitre.org" + }, + { + "text": "V-71923", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86547", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000196", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-010220", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204416r603261_rule", + "time": "2021-12-17T10:39:30", + "severity": "medium", + "version": "RHEL-07-010210", + "weight": "10.000000", + "result": "pass", + "ident": [ + { + "text": "CCE-27124-7", + "system": "http://cce.mitre.org" + }, + { + "text": "V-71921", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86545", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000196", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:1365", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that user and group account administration utilities are configured to store only encrypted representations of passwords.", + "id": "V-204417", + "desc": "Passwords need to be protected at all times, and encryption is the standard method for protecting passwords. If passwords are not encrypted, they can be plainly read (i.e., clear text) and easily compromised. Passwords encrypted with a weak algorithm are no more protected than if they are kept in plain text.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:1363", + "label": "check" + }, + { + "data": "Configure the operating system to store only SHA512 encrypted representations of passwords.\n\nAdd or update the following line in \"/etc/libuser.conf\" in the [defaults] section: \n\ncrypt_style = sha512", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204417\",\n \"title\": {\n \"text\": \"SRG-OS-000073-GPOS-00041\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204417r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-010220\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must be configured so that user and group account administration utilities are configured to store only encrypted representations of passwords.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Passwords need to be protected at all times, and encryption is the standard method for protecting passwords. If passwords are not encrypted, they can be plainly read (i.e., clear text) and easily compromised. Passwords encrypted with a weak algorithm are no more protected than if they are kept in plain text.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-27053-8\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-71923\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86547\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000196\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to store only SHA512 encrypted representations of passwords.\\n\\nAdd or update the following line in \\\"/etc/libuser.conf\\\" in the [defaults] section: \\n\\ncrypt_style = sha512\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4541r88444_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4541r88444_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:1363\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:39:30" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000198" + ], + "nist": [ + "IA-5 (1) (d)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Enforcing a minimum password lifetime helps to prevent repeated password changes to defeat the password reuse or history enforcement requirement. If users are allowed to immediately and continually change their password, the password could be repeatedly changed in a short period of time to defeat the organization's policy regarding password reuse.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204418", + "group_title": "SRG-OS-000075-GPOS-00043", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204418r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-export": { + "export-name": "oval:mil.disa.stig.rhel7:var:3794", + "value-id": "xccdf_mil.disa.stig_value_var_accounts_minimum_age_login_defs" + }, + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:455", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4542r88447_fix", + "fixtext_fixref": "F-4542r88447_fix", + "ident": [ + { + "text": "CCE-27002-5", + "system": "http://cce.mitre.org" + }, + { + "text": "V-71925", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86549", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000198", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-010230", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204417r603261_rule", + "time": "2021-12-17T10:39:30", + "severity": "medium", + "version": "RHEL-07-010220", + "weight": "10.000000", + "result": "pass", + "ident": [ + { + "text": "CCE-27053-8", + "system": "http://cce.mitre.org" + }, + { + "text": "V-71923", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86547", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000196", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:1363", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that passwords for new users are restricted to a 24 hours/1 day minimum lifetime.", + "id": "V-204418", + "desc": "Enforcing a minimum password lifetime helps to prevent repeated password changes to defeat the password reuse or history enforcement requirement. If users are allowed to immediately and continually change their password, the password could be repeatedly changed in a short period of time to defeat the organization's policy regarding password reuse.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:455", + "label": "check" + }, + { + "data": "Configure the operating system to enforce 24 hours/1 day as the minimum password lifetime.\n\nAdd the following line in \"/etc/login.defs\" (or modify the line to have the required value):\n\nPASS_MIN_DAYS 1", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204418\",\n \"title\": {\n \"text\": \"SRG-OS-000075-GPOS-00043\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204418r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-010230\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must be configured so that passwords for new users are restricted to a 24 hours/1 day minimum lifetime.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Enforcing a minimum password lifetime helps to prevent repeated password changes to defeat the password reuse or history enforcement requirement. If users are allowed to immediately and continually change their password, the password could be repeatedly changed in a short period of time to defeat the organization's policy regarding password reuse.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-27002-5\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-71925\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86549\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000198\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to enforce 24 hours/1 day as the minimum password lifetime.\\n\\nAdd the following line in \\\"/etc/login.defs\\\" (or modify the line to have the required value):\\n\\nPASS_MIN_DAYS 1\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4542r88447_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4542r88447_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-export\": {\n \"export-name\": \"oval:mil.disa.stig.rhel7:var:3794\",\n \"value-id\": \"xccdf_mil.disa.stig_value_var_accounts_minimum_age_login_defs\"\n },\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:455\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:30" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000198" + ], + "nist": [ + "IA-5 (1) (d)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Enforcing a minimum password lifetime helps to prevent repeated password changes to defeat the password reuse or history enforcement requirement. If users are allowed to immediately and continually change their password, the password could be repeatedly changed in a short period of time to defeat the organization's policy regarding password reuse.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204419", + "group_title": "SRG-OS-000075-GPOS-00043", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204419r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:86551", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4543r88450_fix", + "fixtext_fixref": "F-4543r88450_fix", + "ident": [ + { + "text": "SV-86551", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71927", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000198", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-010240", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204418r603261_rule", + "time": "2021-12-17T10:39:30", + "severity": "medium", + "version": "RHEL-07-010230", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-27002-5", + "system": "http://cce.mitre.org" + }, + { + "text": "V-71925", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86549", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000198", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-export": { + "export-name": "oval:mil.disa.stig.rhel7:var:3794", + "value-id": "xccdf_mil.disa.stig_value_var_accounts_minimum_age_login_defs" + }, + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:455", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + }, + "value": { + "id": "xccdf_mil.disa.stig_value_var_accounts_minimum_age_login_defs", + "type": "number", + "title": { + "text": "minimum password age", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "description": { + "text": "Minimum age of password in days", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "warning": { + "text": "This will only apply to newly created accounts", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US", + "category": "general" + }, + "value": [ + 1, + { + "text": 7, + "selector": "7" + }, + { + "text": 5, + "selector": "5" + }, + { + "text": 2, + "selector": "2" + }, + { + "text": 1, + "selector": "1" + }, + { + "text": 0, + "selector": "0" + } + ] + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that passwords are restricted to a 24 hours/1 day minimum lifetime.", + "id": "V-204419", + "desc": "Enforcing a minimum password lifetime helps to prevent repeated password changes to defeat the password reuse or history enforcement requirement. If users are allowed to immediately and continually change their password, the password could be repeatedly changed in a short period of time to defeat the organization's policy regarding password reuse.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:86551", + "label": "check" + }, + { + "data": "Configure non-compliant accounts to enforce a 24 hours/1 day minimum password lifetime:\n\n# chage -m 1 [user]", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204419\",\n \"title\": {\n \"text\": \"SRG-OS-000075-GPOS-00043\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204419r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-010240\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must be configured so that passwords are restricted to a 24 hours/1 day minimum lifetime.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Enforcing a minimum password lifetime helps to prevent repeated password changes to defeat the password reuse or history enforcement requirement. If users are allowed to immediately and continually change their password, the password could be repeatedly changed in a short period of time to defeat the organization's policy regarding password reuse.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"SV-86551\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-71927\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000198\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure non-compliant accounts to enforce a 24 hours/1 day minimum password lifetime:\\n\\n# chage -m 1 [user]\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4543r88450_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4543r88450_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:86551\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:30" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000199" + ], + "nist": [ + "IA-5 (1) (d)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Any password, no matter how complex, can eventually be cracked. Therefore, passwords need to be changed periodically. If the operating system does not limit the lifetime of passwords and force users to change their passwords, there is the risk that the operating system passwords could be compromised.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204420", + "group_title": "SRG-OS-000076-GPOS-00044", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204420r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-export": { + "export-name": "oval:mil.disa.stig.rhel7:var:3793", + "value-id": "xccdf_mil.disa.stig_value_var_accounts_maximum_age_login_defs" + }, + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:453", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4544r88453_fix", + "fixtext_fixref": "F-4544r88453_fix", + "ident": [ + { + "text": "CCE-27051-2", + "system": "http://cce.mitre.org" + }, + { + "text": "V-71929", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86553", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000199", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-010250", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204419r603261_rule", + "time": "2021-12-17T10:39:30", + "severity": "medium", + "version": "RHEL-07-010240", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "SV-86551", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71927", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000198", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:86551", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that passwords for new users are restricted to a 60-day maximum lifetime.", + "id": "V-204420", + "desc": "Any password, no matter how complex, can eventually be cracked. Therefore, passwords need to be changed periodically. If the operating system does not limit the lifetime of passwords and force users to change their passwords, there is the risk that the operating system passwords could be compromised.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:453", + "label": "check" + }, + { + "data": "Configure the operating system to enforce a 60-day maximum password lifetime restriction.\n\nAdd the following line in \"/etc/login.defs\" (or modify the line to have the required value):\n\nPASS_MAX_DAYS 60", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204420\",\n \"title\": {\n \"text\": \"SRG-OS-000076-GPOS-00044\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204420r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-010250\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must be configured so that passwords for new users are restricted to a 60-day maximum lifetime.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Any password, no matter how complex, can eventually be cracked. Therefore, passwords need to be changed periodically. If the operating system does not limit the lifetime of passwords and force users to change their passwords, there is the risk that the operating system passwords could be compromised.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-27051-2\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-71929\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86553\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000199\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to enforce a 60-day maximum password lifetime restriction.\\n\\nAdd the following line in \\\"/etc/login.defs\\\" (or modify the line to have the required value):\\n\\nPASS_MAX_DAYS 60\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4544r88453_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4544r88453_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-export\": {\n \"export-name\": \"oval:mil.disa.stig.rhel7:var:3793\",\n \"value-id\": \"xccdf_mil.disa.stig_value_var_accounts_maximum_age_login_defs\"\n },\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:453\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:30" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000199" + ], + "nist": [ + "IA-5 (1) (d)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Any password, no matter how complex, can eventually be cracked. Therefore, passwords need to be changed periodically. If the operating system does not limit the lifetime of passwords and force users to change their passwords, there is the risk that the operating system passwords could be compromised.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204421", + "group_title": "SRG-OS-000076-GPOS-00044", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204421r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:86555", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4545r88456_fix", + "fixtext_fixref": "F-4545r88456_fix", + "ident": [ + { + "text": "V-71931", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86555", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000199", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-010260", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204420r603261_rule", + "time": "2021-12-17T10:39:30", + "severity": "medium", + "version": "RHEL-07-010250", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-27051-2", + "system": "http://cce.mitre.org" + }, + { + "text": "V-71929", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86553", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000199", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-export": { + "export-name": "oval:mil.disa.stig.rhel7:var:3793", + "value-id": "xccdf_mil.disa.stig_value_var_accounts_maximum_age_login_defs" + }, + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:453", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + }, + "value": { + "id": "xccdf_mil.disa.stig_value_var_accounts_maximum_age_login_defs", + "type": "number", + "title": { + "text": "maximum password age", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "description": { + "text": "Maximum age of password in days", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "warning": { + "text": "This will only apply to newly created accounts", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US", + "category": "general" + }, + "value": [ + 60, + { + "text": 60, + "selector": "60" + }, + { + "text": 90, + "selector": "90" + }, + { + "text": 120, + "selector": "120" + }, + { + "text": 180, + "selector": "180" + } + ] + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that existing passwords are restricted to a 60-day maximum lifetime.", + "id": "V-204421", + "desc": "Any password, no matter how complex, can eventually be cracked. Therefore, passwords need to be changed periodically. If the operating system does not limit the lifetime of passwords and force users to change their passwords, there is the risk that the operating system passwords could be compromised.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:86555", + "label": "check" + }, + { + "data": "Configure non-compliant accounts to enforce a 60-day maximum password lifetime restriction.\n\n# chage -M 60 [user]", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204421\",\n \"title\": {\n \"text\": \"SRG-OS-000076-GPOS-00044\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204421r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-010260\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must be configured so that existing passwords are restricted to a 60-day maximum lifetime.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Any password, no matter how complex, can eventually be cracked. Therefore, passwords need to be changed periodically. If the operating system does not limit the lifetime of passwords and force users to change their passwords, there is the risk that the operating system passwords could be compromised.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"V-71931\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86555\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000199\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure non-compliant accounts to enforce a 60-day maximum password lifetime restriction.\\n\\n# chage -M 60 [user]\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4545r88456_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4545r88456_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:86555\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:30" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000200" + ], + "nist": [ + "IA-5 (1) (e)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. If the information system or application allows the user to consecutively reuse their password when that password has exceeded its defined lifetime, the end result is a password that is not changed per policy requirements.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204422", + "group_title": "SRG-OS-000077-GPOS-00045", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204422r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-export": { + "export-name": "oval:mil.disa.stig.rhel7:var:3806", + "value-id": "xccdf_mil.disa.stig_value_var_password_pam_unix_remember" + }, + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:486", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4546r88459_fix", + "fixtext_fixref": "F-4546r88459_fix", + "ident": [ + { + "text": "CCE-26923-3", + "system": "http://cce.mitre.org" + }, + { + "text": "V-71933", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86557", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000200", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-010270", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204421r603261_rule", + "time": "2021-12-17T10:39:30", + "severity": "medium", + "version": "RHEL-07-010260", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "V-71931", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86555", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000199", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:86555", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that passwords are prohibited from reuse for a minimum of five generations.", + "id": "V-204422", + "desc": "Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. If the information system or application allows the user to consecutively reuse their password when that password has exceeded its defined lifetime, the end result is a password that is not changed per policy requirements.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:486", + "label": "check" + }, + { + "data": "Configure the operating system to prohibit password reuse for a minimum of five generations.\n\nAdd the following line in \"/etc/pam.d/system-auth\" and \"/etc/pam.d/password-auth\" (or modify the line to have the required value):\n\npassword requisite pam_pwhistory.so use_authtok remember=5 retry=3\n \nNote: Manual changes to the listed files may be overwritten by the \"authconfig\" program. The \"authconfig\" program should not be used to update the configurations listed in this requirement.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204422\",\n \"title\": {\n \"text\": \"SRG-OS-000077-GPOS-00045\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204422r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-010270\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must be configured so that passwords are prohibited from reuse for a minimum of five generations.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. If the information system or application allows the user to consecutively reuse their password when that password has exceeded its defined lifetime, the end result is a password that is not changed per policy requirements.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-26923-3\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-71933\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86557\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000200\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to prohibit password reuse for a minimum of five generations.\\n\\nAdd the following line in \\\"/etc/pam.d/system-auth\\\" and \\\"/etc/pam.d/password-auth\\\" (or modify the line to have the required value):\\n\\npassword requisite pam_pwhistory.so use_authtok remember=5 retry=3\\n \\nNote: Manual changes to the listed files may be overwritten by the \\\"authconfig\\\" program. The \\\"authconfig\\\" program should not be used to update the configurations listed in this requirement.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4546r88459_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4546r88459_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-export\": {\n \"export-name\": \"oval:mil.disa.stig.rhel7:var:3806\",\n \"value-id\": \"xccdf_mil.disa.stig_value_var_password_pam_unix_remember\"\n },\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:486\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:30" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000205" + ], + "nist": [ + "IA-5 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"The shorter the password, the lower the number of possible combinations that need to be tested before the password is compromised.\\n\\nPassword complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. Password length is one factor of several that helps to determine strength and how long it takes to crack a password. Use of more characters in a password helps to exponentially increase the time and/or resources required to compromise the password.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204423", + "group_title": "SRG-OS-000078-GPOS-00046", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204423r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-export": { + "export-name": "oval:mil.disa.stig.rhel7:var:3802", + "value-id": "xccdf_mil.disa.stig_value_var_password_pam_minlen" + }, + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:476", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4547r88462_fix", + "fixtext_fixref": "F-4547r88462_fix", + "ident": [ + { + "text": "CCE-27293-0", + "system": "http://cce.mitre.org" + }, + { + "text": "V-71935", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86559", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000205", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-010280", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204422r603261_rule", + "time": "2021-12-17T10:39:30", + "severity": "medium", + "version": "RHEL-07-010270", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-26923-3", + "system": "http://cce.mitre.org" + }, + { + "text": "V-71933", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86557", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000200", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-export": { + "export-name": "oval:mil.disa.stig.rhel7:var:3806", + "value-id": "xccdf_mil.disa.stig_value_var_password_pam_unix_remember" + }, + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:486", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + }, + "value": { + "id": "xccdf_mil.disa.stig_value_var_password_pam_unix_remember", + "operator": "equals", + "type": "number", + "title": { + "text": "remember", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "description": { + "text": "The last n passwords for each user are saved in /etc/security/opasswd in order to force password change history and keep the user from alternating between the same password too frequently.", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "value": [ + 5, + { + "text": 0, + "selector": "0" + }, + { + "text": 4, + "selector": "4" + }, + { + "text": 5, + "selector": "5" + }, + { + "text": 10, + "selector": "10" + }, + { + "text": 24, + "selector": "24" + } + ] + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that passwords are a minimum of 15 characters in length.", + "id": "V-204423", + "desc": "The shorter the password, the lower the number of possible combinations that need to be tested before the password is compromised.\n\nPassword complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. Password length is one factor of several that helps to determine strength and how long it takes to crack a password. Use of more characters in a password helps to exponentially increase the time and/or resources required to compromise the password.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:476", + "label": "check" + }, + { + "data": "Configure operating system to enforce a minimum 15-character password length.\n\nAdd the following line to \"/etc/security/pwquality.conf\" (or modify the line to have the required value):\n\nminlen = 15", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204423\",\n \"title\": {\n \"text\": \"SRG-OS-000078-GPOS-00046\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204423r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-010280\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must be configured so that passwords are a minimum of 15 characters in length.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>The shorter the password, the lower the number of possible combinations that need to be tested before the password is compromised.\\n\\nPassword complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. Password length is one factor of several that helps to determine strength and how long it takes to crack a password. Use of more characters in a password helps to exponentially increase the time and/or resources required to compromise the password.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-27293-0\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-71935\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86559\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000205\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure operating system to enforce a minimum 15-character password length.\\n\\nAdd the following line to \\\"/etc/security/pwquality.conf\\\" (or modify the line to have the required value):\\n\\nminlen = 15\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4547r88462_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4547r88462_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-export\": {\n \"export-name\": \"oval:mil.disa.stig.rhel7:var:3802\",\n \"value-id\": \"xccdf_mil.disa.stig_value_var_password_pam_minlen\"\n },\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:476\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:30" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "high", + "description": "{\"VulnDiscussion\":\"If an account has an empty password, anyone could log on and run commands with the privileges of that account. Accounts with empty passwords should never be used in operational environments.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204424", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204424r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:1229", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4548r88465_fix", + "fixtext_fixref": "F-4548r88465_fix", + "ident": [ + { + "text": "CCE-27286-4", + "system": "http://cce.mitre.org" + }, + { + "text": "V-71937", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86561", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-010290", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204423r603261_rule", + "time": "2021-12-17T10:39:30", + "severity": "medium", + "version": "RHEL-07-010280", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-27293-0", + "system": "http://cce.mitre.org" + }, + { + "text": "V-71935", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86559", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000205", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-export": { + "export-name": "oval:mil.disa.stig.rhel7:var:3802", + "value-id": "xccdf_mil.disa.stig_value_var_password_pam_minlen" + }, + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:476", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + }, + "value": { + "id": "xccdf_mil.disa.stig_value_var_password_pam_minlen", + "operator": "equals", + "type": "number", + "title": { + "text": "minlen", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "description": { + "text": "Minimum number of characters in password", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "value": [ + 15, + { + "text": 6, + "selector": "6" + }, + { + "text": 7, + "selector": "7" + }, + { + "text": 8, + "selector": "8" + }, + { + "text": 10, + "selector": "10" + }, + { + "text": 12, + "selector": "12" + }, + { + "text": 14, + "selector": "14" + }, + { + "text": 15, + "selector": "15" + } + ] + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must not have accounts configured with blank or null passwords.", + "id": "V-204424", + "desc": "If an account has an empty password, anyone could log on and run commands with the privileges of that account. Accounts with empty passwords should never be used in operational environments.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:1229", + "label": "check" + }, + { + "data": "If an account is configured for password authentication but does not have an assigned password, it may be possible to log on to the account without authenticating.\n\nRemove any instances of the \"nullok\" option in \"/etc/pam.d/system-auth\" and \"/etc/pam.d/password-auth\" to prevent logons with empty passwords.\n\nNote: Manual changes to the listed files may be overwritten by the \"authconfig\" program. The \"authconfig\" program should not be used to update the configurations listed in this requirement.", + "label": "fix" + } + ], + "impact": 0.7, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204424\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204424r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"high\",\n \"version\": {\n \"text\": \"RHEL-07-010290\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must not have accounts configured with blank or null passwords.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>If an account has an empty password, anyone could log on and run commands with the privileges of that account. Accounts with empty passwords should never be used in operational environments.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-27286-4\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-71937\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86561\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"If an account is configured for password authentication but does not have an assigned password, it may be possible to log on to the account without authenticating.\\n\\nRemove any instances of the \\\"nullok\\\" option in \\\"/etc/pam.d/system-auth\\\" and \\\"/etc/pam.d/password-auth\\\" to prevent logons with empty passwords.\\n\\nNote: Manual changes to the listed files may be overwritten by the \\\"authconfig\\\" program. The \\\"authconfig\\\" program should not be used to update the configurations listed in this requirement.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4548r88465_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4548r88465_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:1229\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:30" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000766" + ], + "nist": [ + "IA-2 (2)" + ], + "severity": "high", + "description": "{\"VulnDiscussion\":\"Configuring this setting for the SSH daemon provides additional assurance that remote logon via SSH will require a password, even in the event of misconfiguration elsewhere.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204425", + "group_title": "SRG-OS-000106-GPOS-00053", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204425r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:1375", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4549r88468_fix", + "fixtext_fixref": "F-4549r88468_fix", + "ident": [ + { + "text": "CCE-27471-2", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86563", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71939", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000766", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-010300", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204424r603261_rule", + "time": "2021-12-17T10:39:30", + "severity": "high", + "version": "RHEL-07-010290", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-27286-4", + "system": "http://cce.mitre.org" + }, + { + "text": "V-71937", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86561", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:1229", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that the SSH daemon does not allow authentication using an empty password.", + "id": "V-204425", + "desc": "Configuring this setting for the SSH daemon provides additional assurance that remote logon via SSH will require a password, even in the event of misconfiguration elsewhere.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:1375", + "label": "check" + }, + { + "data": "To explicitly disallow remote logon from accounts with empty passwords, add or correct the following line in \"/etc/ssh/sshd_config\":\n\nPermitEmptyPasswords no\n\nThe SSH service must be restarted for changes to take effect. Any accounts with empty passwords should be disabled immediately, and PAM configuration should prevent users from being able to assign themselves empty passwords.", + "label": "fix" + } + ], + "impact": 0.7, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204425\",\n \"title\": {\n \"text\": \"SRG-OS-000106-GPOS-00053\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204425r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"high\",\n \"version\": {\n \"text\": \"RHEL-07-010300\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must be configured so that the SSH daemon does not allow authentication using an empty password.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Configuring this setting for the SSH daemon provides additional assurance that remote logon via SSH will require a password, even in the event of misconfiguration elsewhere.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-27471-2\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86563\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-71939\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000766\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"To explicitly disallow remote logon from accounts with empty passwords, add or correct the following line in \\\"/etc/ssh/sshd_config\\\":\\n\\nPermitEmptyPasswords no\\n\\nThe SSH service must be restarted for changes to take effect. Any accounts with empty passwords should be disabled immediately, and PAM configuration should prevent users from being able to assign themselves empty passwords.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4549r88468_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4549r88468_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:1375\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:39:30" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000795" + ], + "nist": [ + "IA-4 e" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Inactive identifiers pose a risk to systems and applications because attackers may exploit an inactive identifier and potentially obtain undetected access to the system. Owners of inactive accounts will not notice if unauthorized access to their user account has been obtained.\\n\\nOperating systems need to track periods of inactivity and disable application identifiers after zero days of inactivity.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204426", + "group_title": "SRG-OS-000118-GPOS-00060", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204426r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-export": { + "export-name": "oval:mil.disa.stig.rhel7:var:3790", + "value-id": "xccdf_mil.disa.stig_value_var_account_disable_post_pw_expiration" + }, + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:443", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4550r88471_fix", + "fixtext_fixref": "F-4550r88471_fix", + "ident": [ + { + "text": "CCE-27471-2", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86565", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71941", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000795", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-010310", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204425r603261_rule", + "time": "2021-12-17T10:39:30", + "severity": "high", + "version": "RHEL-07-010300", + "weight": "10.000000", + "result": "pass", + "ident": [ + { + "text": "CCE-27471-2", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86563", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71939", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000766", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:1375", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must disable account identifiers (individuals, groups, roles, and devices) if the password expires.", + "id": "V-204426", + "desc": "Inactive identifiers pose a risk to systems and applications because attackers may exploit an inactive identifier and potentially obtain undetected access to the system. Owners of inactive accounts will not notice if unauthorized access to their user account has been obtained.\n\nOperating systems need to track periods of inactivity and disable application identifiers after zero days of inactivity.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:443", + "label": "check" + }, + { + "data": "Configure the operating system to disable account identifiers (individuals, groups, roles, and devices) after the password expires.\n\nAdd the following line to \"/etc/default/useradd\" (or modify the line to have the required value):\n\nINACTIVE=0", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204426\",\n \"title\": {\n \"text\": \"SRG-OS-000118-GPOS-00060\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204426r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-010310\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must disable account identifiers (individuals, groups, roles, and devices) if the password expires.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Inactive identifiers pose a risk to systems and applications because attackers may exploit an inactive identifier and potentially obtain undetected access to the system. Owners of inactive accounts will not notice if unauthorized access to their user account has been obtained.\\n\\nOperating systems need to track periods of inactivity and disable application identifiers after zero days of inactivity.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-27471-2\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86565\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-71941\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000795\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to disable account identifiers (individuals, groups, roles, and devices) after the password expires.\\n\\nAdd the following line to \\\"/etc/default/useradd\\\" (or modify the line to have the required value):\\n\\nINACTIVE=0\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4550r88471_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4550r88471_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-export\": {\n \"export-name\": \"oval:mil.disa.stig.rhel7:var:3790\",\n \"value-id\": \"xccdf_mil.disa.stig_value_var_account_disable_post_pw_expiration\"\n },\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:443\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:30" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-002038" + ], + "nist": [ + "IA-11" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without re-authentication, users may access resources or perform tasks for which they do not have authorization. \\n\\nWhen operating systems provide the capability to escalate a functional capability, it is critical the user re-authenticate.\\n\\nSatisfies: SRG-OS-000373-GPOS-00156, SRG-OS-000373-GPOS-00157, SRG-OS-000373-GPOS-00158\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204429", + "group_title": "SRG-OS-000373-GPOS-00156", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204429r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:176", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-36303r602619_fix", + "fixtext_fixref": "F-36303r602619_fix", + "ident": [ + { + "text": "CCE-80351-0", + "system": "http://cce.mitre.org" + }, + { + "text": "V-71947", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86571", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-002038", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-010340", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204426r603261_rule", + "time": "2021-12-17T10:39:30", + "severity": "medium", + "version": "RHEL-07-010310", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-27471-2", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86565", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71941", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000795", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-export": { + "export-name": "oval:mil.disa.stig.rhel7:var:3790", + "value-id": "xccdf_mil.disa.stig_value_var_account_disable_post_pw_expiration" + }, + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:443", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + }, + "value": { + "id": "xccdf_mil.disa.stig_value_var_account_disable_post_pw_expiration", + "type": "number", + "title": { + "text": "number of days after a password expires until the account is permanently disabled", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "description": { + "text": "The number of days to wait after a password expires, until the account will be permanently disabled.", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "warning": { + "text": "This will only apply to newly created accounts", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US", + "category": "general" + }, + "value": [ + 0, + { + "text": 0, + "selector": "0" + }, + { + "text": 30, + "selector": "30" + }, + { + "text": 35, + "selector": "35" + }, + { + "text": 40, + "selector": "40" + }, + { + "text": 60, + "selector": "60" + }, + { + "text": 90, + "selector": "90" + }, + { + "text": 180, + "selector": "180" + } + ] + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that users must provide a password for privilege escalation.", + "id": "V-204429", + "desc": "Without re-authentication, users may access resources or perform tasks for which they do not have authorization. \n\nWhen operating systems provide the capability to escalate a functional capability, it is critical the user re-authenticate.\n\nSatisfies: SRG-OS-000373-GPOS-00156, SRG-OS-000373-GPOS-00157, SRG-OS-000373-GPOS-00158", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:176", + "label": "check" + }, + { + "data": "Configure the operating system to require users to supply a password for privilege escalation.\n\nCheck the configuration of the \"/etc/sudoers\" file with the following command:\n# visudo\n\nRemove any occurrences of \"NOPASSWD\" tags in the file. \n\nCheck the configuration of the /etc/sudoers.d/* files with the following command:\n# grep -i nopasswd /etc/sudoers.d/*\n\nRemove any occurrences of \"NOPASSWD\" tags in the file.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204429\",\n \"title\": {\n \"text\": \"SRG-OS-000373-GPOS-00156\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204429r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-010340\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must be configured so that users must provide a password for privilege escalation.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without re-authentication, users may access resources or perform tasks for which they do not have authorization. \\n\\nWhen operating systems provide the capability to escalate a functional capability, it is critical the user re-authenticate.\\n\\nSatisfies: SRG-OS-000373-GPOS-00156, SRG-OS-000373-GPOS-00157, SRG-OS-000373-GPOS-00158</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-80351-0\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-71947\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86571\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-002038\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to require users to supply a password for privilege escalation.\\n\\nCheck the configuration of the \\\"/etc/sudoers\\\" file with the following command:\\n# visudo\\n\\nRemove any occurrences of \\\"NOPASSWD\\\" tags in the file. \\n\\nCheck the configuration of the /etc/sudoers.d/* files with the following command:\\n# grep -i nopasswd /etc/sudoers.d/*\\n\\nRemove any occurrences of \\\"NOPASSWD\\\" tags in the file.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-36303r602619_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-36303r602619_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:176\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:39:30" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-002038" + ], + "nist": [ + "IA-11" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without re-authentication, users may access resources or perform tasks for which they do not have authorization. \\n\\nWhen operating systems provide the capability to escalate a functional capability, it is critical the user reauthenticate.\\n\\nSatisfies: SRG-OS-000373-GPOS-00156, SRG-OS-000373-GPOS-00157, SRG-OS-000373-GPOS-00158\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204430", + "group_title": "SRG-OS-000373-GPOS-00156", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204430r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:173", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4554r88483_fix", + "fixtext_fixref": "F-4554r88483_fix", + "ident": [ + { + "text": "CCE-80350-2", + "system": "http://cce.mitre.org" + }, + { + "text": "V-71949", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86573", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-002038", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-010350", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204429r603261_rule", + "time": "2021-12-17T10:39:30", + "severity": "medium", + "version": "RHEL-07-010340", + "weight": "10.000000", + "result": "pass", + "ident": [ + { + "text": "CCE-80351-0", + "system": "http://cce.mitre.org" + }, + { + "text": "V-71947", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86571", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-002038", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:176", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that users must re-authenticate for privilege escalation.", + "id": "V-204430", + "desc": "Without re-authentication, users may access resources or perform tasks for which they do not have authorization. \n\nWhen operating systems provide the capability to escalate a functional capability, it is critical the user reauthenticate.\n\nSatisfies: SRG-OS-000373-GPOS-00156, SRG-OS-000373-GPOS-00157, SRG-OS-000373-GPOS-00158", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:173", + "label": "check" + }, + { + "data": "Configure the operating system to require users to reauthenticate for privilege escalation.\n\nCheck the configuration of the \"/etc/sudoers\" file with the following command:\n\n# visudo\nRemove any occurrences of \"!authenticate\" tags in the file.\n\nCheck the configuration of the \"/etc/sudoers.d/*\" files with the following command:\n\n# grep -i authenticate /etc/sudoers /etc/sudoers.d/*\nRemove any occurrences of \"!authenticate\" tags in the file(s).", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204430\",\n \"title\": {\n \"text\": \"SRG-OS-000373-GPOS-00156\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204430r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-010350\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must be configured so that users must re-authenticate for privilege escalation.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without re-authentication, users may access resources or perform tasks for which they do not have authorization. \\n\\nWhen operating systems provide the capability to escalate a functional capability, it is critical the user reauthenticate.\\n\\nSatisfies: SRG-OS-000373-GPOS-00156, SRG-OS-000373-GPOS-00157, SRG-OS-000373-GPOS-00158</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-80350-2\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-71949\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86573\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-002038\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to require users to reauthenticate for privilege escalation.\\n\\nCheck the configuration of the \\\"/etc/sudoers\\\" file with the following command:\\n\\n# visudo\\nRemove any occurrences of \\\"!authenticate\\\" tags in the file.\\n\\nCheck the configuration of the \\\"/etc/sudoers.d/*\\\" files with the following command:\\n\\n# grep -i authenticate /etc/sudoers /etc/sudoers.d/*\\nRemove any occurrences of \\\"!authenticate\\\" tags in the file(s).\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4554r88483_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4554r88483_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:173\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:39:30" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Configuring the operating system to implement organization-wide security implementation guides and security checklists verifies compliance with federal standards and establishes a common security baseline across DoD that reflects the most restrictive security posture consistent with operational requirements.\\n\\nConfiguration settings are the set of parameters that can be changed in hardware, software, or firmware components of the system that affect the security posture and/or functionality of the system. Security-related parameters are those parameters impacting the security state of the system, including the parameters required to satisfy other security control requirements. Security-related parameters include, for example, registry settings; account, file, and directory permission settings; and settings for functions, ports, protocols, services, and remote connections.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204431", + "group_title": "SRG-OS-000480-GPOS-00226", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204431r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-export": { + "export-name": "oval:mil.disa.stig.rhel7:var:3761", + "value-id": "xccdf_mil.disa.stig_value_var_accounts_fail_delay" + }, + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:101", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4555r88486_fix", + "fixtext_fixref": "F-4555r88486_fix", + "ident": [ + { + "text": "CCE-80352-8", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86575", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71951", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-010430", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204430r603261_rule", + "time": "2021-12-17T10:39:30", + "severity": "medium", + "version": "RHEL-07-010350", + "weight": "10.000000", + "result": "pass", + "ident": [ + { + "text": "CCE-80350-2", + "system": "http://cce.mitre.org" + }, + { + "text": "V-71949", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86573", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-002038", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:173", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that the delay between logon prompts following a failed console logon attempt is at least four seconds.", + "id": "V-204431", + "desc": "Configuring the operating system to implement organization-wide security implementation guides and security checklists verifies compliance with federal standards and establishes a common security baseline across DoD that reflects the most restrictive security posture consistent with operational requirements.\n\nConfiguration settings are the set of parameters that can be changed in hardware, software, or firmware components of the system that affect the security posture and/or functionality of the system. Security-related parameters are those parameters impacting the security state of the system, including the parameters required to satisfy other security control requirements. Security-related parameters include, for example, registry settings; account, file, and directory permission settings; and settings for functions, ports, protocols, services, and remote connections.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:101", + "label": "check" + }, + { + "data": "Configure the operating system to enforce a delay of at least four seconds between logon prompts following a failed console logon attempt.\n\nModify the \"/etc/login.defs\" file to set the \"FAIL_DELAY\" parameter to \"4\" or greater:\n\nFAIL_DELAY 4", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204431\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00226\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204431r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-010430\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must be configured so that the delay between logon prompts following a failed console logon attempt is at least four seconds.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Configuring the operating system to implement organization-wide security implementation guides and security checklists verifies compliance with federal standards and establishes a common security baseline across DoD that reflects the most restrictive security posture consistent with operational requirements.\\n\\nConfiguration settings are the set of parameters that can be changed in hardware, software, or firmware components of the system that affect the security posture and/or functionality of the system. Security-related parameters are those parameters impacting the security state of the system, including the parameters required to satisfy other security control requirements. Security-related parameters include, for example, registry settings; account, file, and directory permission settings; and settings for functions, ports, protocols, services, and remote connections.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-80352-8\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86575\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-71951\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to enforce a delay of at least four seconds between logon prompts following a failed console logon attempt.\\n\\nModify the \\\"/etc/login.defs\\\" file to set the \\\"FAIL_DELAY\\\" parameter to \\\"4\\\" or greater:\\n\\nFAIL_DELAY 4\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4555r88486_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4555r88486_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-export\": {\n \"export-name\": \"oval:mil.disa.stig.rhel7:var:3761\",\n \"value-id\": \"xccdf_mil.disa.stig_value_var_accounts_fail_delay\"\n },\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:101\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:30" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "high", + "description": "{\"VulnDiscussion\":\"Failure to restrict system access to authenticated users negatively impacts operating system security.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204432", + "group_title": "SRG-OS-000480-GPOS-00229", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204432r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:1119", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4556r88489_fix", + "fixtext_fixref": "F-4556r88489_fix", + "ident": [ + { + "text": "CCE-80104-3", + "system": "http://cce.mitre.org" + }, + { + "text": "V-71953", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86577", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-010440", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204431r603261_rule", + "time": "2021-12-17T10:39:30", + "severity": "medium", + "version": "RHEL-07-010430", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-80352-8", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86575", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71951", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-export": { + "export-name": "oval:mil.disa.stig.rhel7:var:3761", + "value-id": "xccdf_mil.disa.stig_value_var_accounts_fail_delay" + }, + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:101", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + }, + "value": { + "id": "xccdf_mil.disa.stig_value_var_accounts_fail_delay", + "operator": "equals", + "type": "number", + "title": { + "text": "Maximum login attempts delay", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "description": { + "text": "Maximum time in seconds between fail login attempts before re-prompting.", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "value": [ + 4, + { + "text": 1, + "selector": "1" + }, + { + "text": 2, + "selector": "2" + }, + { + "text": 3, + "selector": "3" + }, + { + "text": 4, + "selector": "4" + }, + { + "text": 5, + "selector": "5" + } + ] + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must not allow an unattended or automatic logon to the system via a graphical user interface.", + "id": "V-204432", + "desc": "Failure to restrict system access to authenticated users negatively impacts operating system security.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:1119", + "label": "check" + }, + { + "data": "Configure the operating system to not allow an unattended or automatic logon to the system via a graphical user interface.\n\nNote: If the system does not have GNOME installed, this requirement is Not Applicable.\n\nAdd or edit the line for the \"AutomaticLoginEnable\" parameter in the [daemon] section of the \"/etc/gdm/custom.conf\" file to \"false\":\n\n[daemon]\nAutomaticLoginEnable=false", + "label": "fix" + } + ], + "impact": 0.7, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204432\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00229\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204432r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"high\",\n \"version\": {\n \"text\": \"RHEL-07-010440\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must not allow an unattended or automatic logon to the system via a graphical user interface.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Failure to restrict system access to authenticated users negatively impacts operating system security.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-80104-3\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-71953\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86577\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to not allow an unattended or automatic logon to the system via a graphical user interface.\\n\\nNote: If the system does not have GNOME installed, this requirement is Not Applicable.\\n\\nAdd or edit the line for the \\\"AutomaticLoginEnable\\\" parameter in the [daemon] section of the \\\"/etc/gdm/custom.conf\\\" file to \\\"false\\\":\\n\\n[daemon]\\nAutomaticLoginEnable=false\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4556r88489_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4556r88489_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:1119\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:30" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "high", + "description": "{\"VulnDiscussion\":\"Failure to restrict system access to authenticated users negatively impacts operating system security.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204433", + "group_title": "SRG-OS-000480-GPOS-00229", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204433r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:1122", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4557r88492_fix", + "fixtext_fixref": "F-4557r88492_fix", + "ident": [ + { + "text": "CCE-80105-0", + "system": "http://cce.mitre.org" + }, + { + "text": "V-71955", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86579", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-010450", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204432r603261_rule", + "time": "2021-12-17T10:39:30", + "severity": "high", + "version": "RHEL-07-010440", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-80104-3", + "system": "http://cce.mitre.org" + }, + { + "text": "V-71953", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86577", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:1119", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must not allow an unrestricted logon to the system.", + "id": "V-204433", + "desc": "Failure to restrict system access to authenticated users negatively impacts operating system security.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:1122", + "label": "check" + }, + { + "data": "Configure the operating system to not allow an unrestricted account to log on to the system via a graphical user interface.\n\nNote: If the system does not have GNOME installed, this requirement is Not Applicable.\n\nAdd or edit the line for the \"TimedLoginEnable\" parameter in the [daemon] section of the \"/etc/gdm/custom.conf\" file to \"false\":\n\n[daemon]\nTimedLoginEnable=false", + "label": "fix" + } + ], + "impact": 0.7, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204433\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00229\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204433r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"high\",\n \"version\": {\n \"text\": \"RHEL-07-010450\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must not allow an unrestricted logon to the system.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Failure to restrict system access to authenticated users negatively impacts operating system security.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-80105-0\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-71955\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86579\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to not allow an unrestricted account to log on to the system via a graphical user interface.\\n\\nNote: If the system does not have GNOME installed, this requirement is Not Applicable.\\n\\nAdd or edit the line for the \\\"TimedLoginEnable\\\" parameter in the [daemon] section of the \\\"/etc/gdm/custom.conf\\\" file to \\\"false\\\":\\n\\n[daemon]\\nTimedLoginEnable=false\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4557r88492_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4557r88492_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:1122\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:30" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Failure to restrict system access to authenticated users negatively impacts operating system security.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204434", + "group_title": "SRG-OS-000480-GPOS-00229", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204434r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:1385", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4558r88495_fix", + "fixtext_fixref": "F-4558r88495_fix", + "ident": [ + { + "text": "CCE-27363-1", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86581", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71957", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-010460", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204433r603261_rule", + "time": "2021-12-17T10:39:30", + "severity": "high", + "version": "RHEL-07-010450", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-80105-0", + "system": "http://cce.mitre.org" + }, + { + "text": "V-71955", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86579", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:1122", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must not allow users to override SSH environment variables.", + "id": "V-204434", + "desc": "Failure to restrict system access to authenticated users negatively impacts operating system security.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:1385", + "label": "check" + }, + { + "data": "Configure the operating system to not allow users to override environment variables to the SSH daemon.\n\nEdit the \"/etc/ssh/sshd_config\" file to uncomment or add the line for \"PermitUserEnvironment\" keyword and set the value to \"no\":\n\nPermitUserEnvironment no\n\nThe SSH service must be restarted for changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204434\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00229\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204434r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-010460\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must not allow users to override SSH environment variables.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Failure to restrict system access to authenticated users negatively impacts operating system security.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-27363-1\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86581\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-71957\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to not allow users to override environment variables to the SSH daemon.\\n\\nEdit the \\\"/etc/ssh/sshd_config\\\" file to uncomment or add the line for \\\"PermitUserEnvironment\\\" keyword and set the value to \\\"no\\\":\\n\\nPermitUserEnvironment no\\n\\nThe SSH service must be restarted for changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4558r88495_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4558r88495_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:1385\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:30" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Failure to restrict system access to authenticated users negatively impacts operating system security.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204435", + "group_title": "SRG-OS-000480-GPOS-00229", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204435r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:1011", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4559r88498_fix", + "fixtext_fixref": "F-4559r88498_fix", + "ident": [ + { + "text": "CCE-27413-4", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86583", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71959", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-010470", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204434r603261_rule", + "time": "2021-12-17T10:39:30", + "severity": "medium", + "version": "RHEL-07-010460", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-27363-1", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86581", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71957", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:1385", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must not allow a non-certificate trusted host SSH logon to the system.", + "id": "V-204435", + "desc": "Failure to restrict system access to authenticated users negatively impacts operating system security.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:1011", + "label": "check" + }, + { + "data": "Configure the operating system to not allow a non-certificate trusted host SSH logon to the system.\n\nEdit the \"/etc/ssh/sshd_config\" file to uncomment or add the line for \"HostbasedAuthentication\" keyword and set the value to \"no\":\n\nHostbasedAuthentication no\n\nThe SSH service must be restarted for changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204435\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00229\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204435r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-010470\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must not allow a non-certificate trusted host SSH logon to the system.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Failure to restrict system access to authenticated users negatively impacts operating system security.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-27413-4\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86583\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-71959\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to not allow a non-certificate trusted host SSH logon to the system.\\n\\nEdit the \\\"/etc/ssh/sshd_config\\\" file to uncomment or add the line for \\\"HostbasedAuthentication\\\" keyword and set the value to \\\"no\\\":\\n\\nHostbasedAuthentication no\\n\\nThe SSH service must be restarted for changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4559r88498_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4559r88498_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:1011\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:30" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000213" + ], + "nist": [ + "AC-3" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"If the system does not require valid root authentication before it boots into single-user or maintenance mode, anyone who invokes single-user or maintenance mode is granted privileged access to all files on the system.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204437", + "group_title": "SRG-OS-000080-GPOS-00048", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204437r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:92519", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4561r88504_fix", + "fixtext_fixref": "F-4561r88504_fix", + "ident": [ + { + "text": "V-77823", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-92519", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000213", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-010481", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204435r603261_rule", + "time": "2021-12-17T10:39:30", + "severity": "medium", + "version": "RHEL-07-010470", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-27413-4", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86583", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71959", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:1011", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must require authentication upon booting into single-user and maintenance modes.", + "id": "V-204437", + "desc": "If the system does not require valid root authentication before it boots into single-user or maintenance mode, anyone who invokes single-user or maintenance mode is granted privileged access to all files on the system.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:92519", + "label": "check" + }, + { + "data": "Configure the operating system to require authentication upon booting into single-user and maintenance modes.\n\nAdd or modify the \"ExecStart\" line in \"/usr/lib/systemd/system/rescue.service\" to include \"/usr/sbin/sulogin\":\n\nExecStart=-/bin/sh -c \"/usr/sbin/sulogin; /usr/bin/systemctl --fail --no-block default\"", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204437\",\n \"title\": {\n \"text\": \"SRG-OS-000080-GPOS-00048\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204437r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-010481\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must require authentication upon booting into single-user and maintenance modes.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>If the system does not require valid root authentication before it boots into single-user or maintenance mode, anyone who invokes single-user or maintenance mode is granted privileged access to all files on the system.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"V-77823\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-92519\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000213\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to require authentication upon booting into single-user and maintenance modes.\\n\\nAdd or modify the \\\"ExecStart\\\" line in \\\"/usr/lib/systemd/system/rescue.service\\\" to include \\\"/usr/sbin/sulogin\\\":\\n\\nExecStart=-/bin/sh -c \\\"/usr/sbin/sulogin; /usr/bin/systemctl --fail --no-block default\\\"\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4561r88504_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4561r88504_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:92519\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:39:30" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000213" + ], + "nist": [ + "AC-3" + ], + "severity": "high", + "description": "{\"VulnDiscussion\":\"If the system does not require valid authentication before it boots into single-user or maintenance mode, anyone who invokes single-user or maintenance mode is granted privileged access to all files on the system. GRUB 2 is the default boot loader for RHEL 7 and is designed to require a password to boot into single-user mode or make modifications to the boot menu.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204438", + "group_title": "SRG-OS-000080-GPOS-00048", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204438r744095_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:95717", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4562r744094_fix", + "fixtext_fixref": "F-4562r744094_fix", + "ident": [ + { + "text": "CCE-27309-4", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-95717", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-81005", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000213", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-010482", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204437r603261_rule", + "time": "2021-12-17T10:39:30", + "severity": "medium", + "version": "RHEL-07-010481", + "weight": "10.000000", + "result": "pass", + "ident": [ + { + "text": "V-77823", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-92519", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000213", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:92519", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Red Hat Enterprise Linux operating systems version 7.2 or newer with a Basic Input/Output System (BIOS) must require authentication upon booting into single-user and maintenance modes.", + "id": "V-204438", + "desc": "If the system does not require valid authentication before it boots into single-user or maintenance mode, anyone who invokes single-user or maintenance mode is granted privileged access to all files on the system. GRUB 2 is the default boot loader for RHEL 7 and is designed to require a password to boot into single-user mode or make modifications to the boot menu.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:95717", + "label": "check" + }, + { + "data": "Configure the system to encrypt the boot password for the grub superusers account with the grub2-setpassword command, which creates/overwrites the /boot/grub2/user.cfg file.\n\nGenerate an encrypted grub2 password for the grub superusers account with the following command:\n \n$ sudo grub2-setpassword\nEnter password:\nConfirm password:", + "label": "fix" + } + ], + "impact": 0.7, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204438\",\n \"title\": {\n \"text\": \"SRG-OS-000080-GPOS-00048\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204438r744095_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"high\",\n \"version\": {\n \"text\": \"RHEL-07-010482\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"Red Hat Enterprise Linux operating systems version 7.2 or newer with a Basic Input/Output System (BIOS) must require authentication upon booting into single-user and maintenance modes.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>If the system does not require valid authentication before it boots into single-user or maintenance mode, anyone who invokes single-user or maintenance mode is granted privileged access to all files on the system. GRUB 2 is the default boot loader for RHEL 7 and is designed to require a password to boot into single-user mode or make modifications to the boot menu.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-27309-4\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-95717\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-81005\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000213\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the system to encrypt the boot password for the grub superusers account with the grub2-setpassword command, which creates/overwrites the /boot/grub2/user.cfg file.\\n\\nGenerate an encrypted grub2 password for the grub superusers account with the following command:\\n \\n$ sudo grub2-setpassword\\nEnter password:\\nConfirm password:\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4562r744094_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4562r744094_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:95717\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:39:30" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000213" + ], + "nist": [ + "AC-3" + ], + "severity": "high", + "description": "{\"VulnDiscussion\":\"If the system does not require valid authentication before it boots into single-user or maintenance mode, anyone who invokes single-user or maintenance mode is granted privileged access to all files on the system. GRUB 2 is the default boot loader for RHEL 7 and is designed to require a password to boot into single-user mode or make modifications to the boot menu.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204440", + "group_title": "SRG-OS-000080-GPOS-00048", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204440r744098_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:95719", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4564r744097_fix", + "fixtext_fixref": "F-4564r744097_fix", + "ident": [ + { + "text": "CCE-80354-4", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-95719", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-81007", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000213", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-010491", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204438r744095_rule", + "time": "2021-12-17T10:39:30", + "severity": "high", + "version": "RHEL-07-010482", + "weight": "10.000000", + "result": "pass", + "ident": [ + { + "text": "CCE-27309-4", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-95717", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-81005", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000213", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:95717", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Red Hat Enterprise Linux operating systems version 7.2 or newer using Unified Extensible Firmware Interface (UEFI) must require authentication upon booting into single-user and maintenance modes.", + "id": "V-204440", + "desc": "If the system does not require valid authentication before it boots into single-user or maintenance mode, anyone who invokes single-user or maintenance mode is granted privileged access to all files on the system. GRUB 2 is the default boot loader for RHEL 7 and is designed to require a password to boot into single-user mode or make modifications to the boot menu.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:95719", + "label": "check" + }, + { + "data": "Configure the system to encrypt the boot password for the grub superusers account with the grub2-setpassword command, which creates/overwrites the /boot/efi/EFI/redhat/user.cfg file.\n\nGenerate an encrypted grub2 password for the grub superusers account with the following command:\n\n$ sudo grub2-setpassword\nEnter password:\nConfirm password:", + "label": "fix" + } + ], + "impact": 0.7, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204440\",\n \"title\": {\n \"text\": \"SRG-OS-000080-GPOS-00048\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204440r744098_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"high\",\n \"version\": {\n \"text\": \"RHEL-07-010491\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"Red Hat Enterprise Linux operating systems version 7.2 or newer using Unified Extensible Firmware Interface (UEFI) must require authentication upon booting into single-user and maintenance modes.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>If the system does not require valid authentication before it boots into single-user or maintenance mode, anyone who invokes single-user or maintenance mode is granted privileged access to all files on the system. GRUB 2 is the default boot loader for RHEL 7 and is designed to require a password to boot into single-user mode or make modifications to the boot menu.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-80354-4\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-95719\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-81007\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000213\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the system to encrypt the boot password for the grub superusers account with the grub2-setpassword command, which creates/overwrites the /boot/efi/EFI/redhat/user.cfg file.\\n\\nGenerate an encrypted grub2 password for the grub superusers account with the following command:\\n\\n$ sudo grub2-setpassword\\nEnter password:\\nConfirm password:\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4564r744097_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4564r744097_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:95719\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:30" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000381" + ], + "nist": [ + "CM-7 a" + ], + "severity": "high", + "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\\n\\nThe rsh-server service provides an unencrypted remote access service that does not provide for the confidentiality and integrity of user passwords or the remote session and has very weak authentication.\\n\\nIf a privileged user were to log on using this service, the privileged user password could be compromised.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204442", + "group_title": "SRG-OS-000095-GPOS-00049", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204442r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:1271", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4566r88519_fix", + "fixtext_fixref": "F-4566r88519_fix", + "ident": [ + { + "text": "CCE-27342-5", + "system": "http://cce.mitre.org" + }, + { + "text": "V-71967", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86591", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000381", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-020000", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204440r744098_rule", + "time": "2021-12-17T10:39:30", + "severity": "high", + "version": "RHEL-07-010491", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-80354-4", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-95719", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-81007", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000213", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:95719", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must not have the rsh-server package installed.", + "id": "V-204442", + "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\n\nThe rsh-server service provides an unencrypted remote access service that does not provide for the confidentiality and integrity of user passwords or the remote session and has very weak authentication.\n\nIf a privileged user were to log on using this service, the privileged user password could be compromised.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:1271", + "label": "check" + }, + { + "data": "Configure the operating system to disable non-essential capabilities by removing the rsh-server package from the system with the following command:\n\n# yum remove rsh-server", + "label": "fix" + } + ], + "impact": 0.7, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204442\",\n \"title\": {\n \"text\": \"SRG-OS-000095-GPOS-00049\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204442r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"high\",\n \"version\": {\n \"text\": \"RHEL-07-020000\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must not have the rsh-server package installed.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\\n\\nThe rsh-server service provides an unencrypted remote access service that does not provide for the confidentiality and integrity of user passwords or the remote session and has very weak authentication.\\n\\nIf a privileged user were to log on using this service, the privileged user password could be compromised.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-27342-5\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-71967\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86591\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000381\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to disable non-essential capabilities by removing the rsh-server package from the system with the following command:\\n\\n# yum remove rsh-server\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4566r88519_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4566r88519_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:1271\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:39:30" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000381" + ], + "nist": [ + "CM-7 a" + ], + "severity": "high", + "description": "{\"VulnDiscussion\":\"Removing the \\\"ypserv\\\" package decreases the risk of the accidental (or intentional) activation of NIS or NIS+ services.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204443", + "group_title": "SRG-OS-000095-GPOS-00049", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204443r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:1309", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4567r88522_fix", + "fixtext_fixref": "F-4567r88522_fix", + "ident": [ + { + "text": "CCE-27399-5", + "system": "http://cce.mitre.org" + }, + { + "text": "V-71969", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86593", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000381", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-020010", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204442r603261_rule", + "time": "2021-12-17T10:39:30", + "severity": "high", + "version": "RHEL-07-020000", + "weight": "10.000000", + "result": "pass", + "ident": [ + { + "text": "CCE-27342-5", + "system": "http://cce.mitre.org" + }, + { + "text": "V-71967", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86591", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000381", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:1271", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must not have the ypserv package installed.", + "id": "V-204443", + "desc": "Removing the \"ypserv\" package decreases the risk of the accidental (or intentional) activation of NIS or NIS+ services.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:1309", + "label": "check" + }, + { + "data": "Configure the operating system to disable non-essential capabilities by removing the \"ypserv\" package from the system with the following command:\n\n# yum remove ypserv", + "label": "fix" + } + ], + "impact": 0.7, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204443\",\n \"title\": {\n \"text\": \"SRG-OS-000095-GPOS-00049\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204443r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"high\",\n \"version\": {\n \"text\": \"RHEL-07-020010\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must not have the ypserv package installed.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Removing the \\\"ypserv\\\" package decreases the risk of the accidental (or intentional) activation of NIS or NIS+ services.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-27399-5\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-71969\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86593\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000381\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to disable non-essential capabilities by removing the \\\"ypserv\\\" package from the system with the following command:\\n\\n# yum remove ypserv\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4567r88522_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4567r88522_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:1309\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:39:30" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001744" + ], + "nist": [ + "CM-3 (5)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Unauthorized changes to the baseline configuration could make the system vulnerable to various attacks or allow unauthorized access to the operating system. Changes to operating system configurations can have unintended side effects, some of which may be relevant to security.\\n\\nDetecting such changes and providing an automated response can help avoid unintended, negative consequences that could ultimately affect the security state of the operating system. The operating system's Information Management Officer (IMO)/Information System Security Officer (ISSO) and System Administrators (SAs) must be notified via email and/or monitoring system trap when there is an unauthorized modification of a configuration item.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204445", + "group_title": "SRG-OS-000363-GPOS-00150", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204445r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:525", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-36304r602622_fix", + "fixtext_fixref": "F-36304r602622_fix", + "ident": [ + { + "text": "CCE-26952-2", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86597", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71973", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001744", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-020030", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204443r603261_rule", + "time": "2021-12-17T10:39:30", + "severity": "high", + "version": "RHEL-07-020010", + "weight": "10.000000", + "result": "pass", + "ident": [ + { + "text": "CCE-27399-5", + "system": "http://cce.mitre.org" + }, + { + "text": "V-71969", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86593", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000381", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:1309", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that a file integrity tool verifies the baseline operating system configuration at least weekly.", + "id": "V-204445", + "desc": "Unauthorized changes to the baseline configuration could make the system vulnerable to various attacks or allow unauthorized access to the operating system. Changes to operating system configurations can have unintended side effects, some of which may be relevant to security.\n\nDetecting such changes and providing an automated response can help avoid unintended, negative consequences that could ultimately affect the security state of the operating system. The operating system's Information Management Officer (IMO)/Information System Security Officer (ISSO) and System Administrators (SAs) must be notified via email and/or monitoring system trap when there is an unauthorized modification of a configuration item.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:525", + "label": "check" + }, + { + "data": "Configure the file integrity tool to run automatically on the system at least weekly. The following example output is generic. It will set cron to run AIDE daily, but other file integrity tools may be used: \n\n# more /etc/cron.daily/aide\n#!/bin/bash\n\n/usr/sbin/aide --check | /bin/mail -s \"$HOSTNAME - Daily aide integrity check run\" root@sysname.mil", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204445\",\n \"title\": {\n \"text\": \"SRG-OS-000363-GPOS-00150\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204445r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-020030\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must be configured so that a file integrity tool verifies the baseline operating system configuration at least weekly.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Unauthorized changes to the baseline configuration could make the system vulnerable to various attacks or allow unauthorized access to the operating system. Changes to operating system configurations can have unintended side effects, some of which may be relevant to security.\\n\\nDetecting such changes and providing an automated response can help avoid unintended, negative consequences that could ultimately affect the security state of the operating system. The operating system's Information Management Officer (IMO)/Information System Security Officer (ISSO) and System Administrators (SAs) must be notified via email and/or monitoring system trap when there is an unauthorized modification of a configuration item.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-26952-2\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86597\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-71973\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-001744\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the file integrity tool to run automatically on the system at least weekly. The following example output is generic. It will set cron to run AIDE daily, but other file integrity tools may be used: \\n\\n# more /etc/cron.daily/aide\\n#!/bin/bash\\n\\n/usr/sbin/aide --check | /bin/mail -s \\\"$HOSTNAME - Daily aide integrity check run\\\" root@sysname.mil\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-36304r602622_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-36304r602622_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:525\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:30" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001749" + ], + "nist": [ + "CM-5 (3)" + ], + "severity": "high", + "description": "{\"VulnDiscussion\":\"Changes to any software components can have significant effects on the overall security of the operating system. This requirement ensures the software has not been tampered with and that it has been provided by a trusted vendor.\\n\\nAccordingly, patches, service packs, device drivers, or operating system components must be signed with a certificate recognized and approved by the organization.\\n\\nVerifying the authenticity of the software prior to installation validates the integrity of the patch or upgrade received from a vendor. This verifies the software has not been tampered with and that it has been provided by a trusted vendor. Self-signed certificates are disallowed by this requirement. The operating system should not have to verify the software again. This requirement does not mandate DoD certificates for this purpose; however, the certificate used to verify the software must be from an approved CA.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204447", + "group_title": "SRG-OS-000366-GPOS-00153", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204447r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:1027", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4571r88534_fix", + "fixtext_fixref": "F-4571r88534_fix", + "ident": [ + { + "text": "CCE-26989-4", + "system": "http://cce.mitre.org" + }, + { + "text": "V-71977", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86601", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001749", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-020050", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204445r603261_rule", + "time": "2021-12-17T10:39:30", + "severity": "medium", + "version": "RHEL-07-020030", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-26952-2", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86597", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71973", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001744", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:525", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must prevent the installation of software, patches, service packs, device drivers, or operating system components from a repository without verification they have been digitally signed using a certificate that is issued by a Certificate Authority (CA) that is recognized and approved by the organization.", + "id": "V-204447", + "desc": "Changes to any software components can have significant effects on the overall security of the operating system. This requirement ensures the software has not been tampered with and that it has been provided by a trusted vendor.\n\nAccordingly, patches, service packs, device drivers, or operating system components must be signed with a certificate recognized and approved by the organization.\n\nVerifying the authenticity of the software prior to installation validates the integrity of the patch or upgrade received from a vendor. This verifies the software has not been tampered with and that it has been provided by a trusted vendor. Self-signed certificates are disallowed by this requirement. The operating system should not have to verify the software again. This requirement does not mandate DoD certificates for this purpose; however, the certificate used to verify the software must be from an approved CA.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:1027", + "label": "check" + }, + { + "data": "Configure the operating system to verify the signature of packages from a repository prior to install by setting the following option in the \"/etc/yum.conf\" file:\n\ngpgcheck=1", + "label": "fix" + } + ], + "impact": 0.7, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204447\",\n \"title\": {\n \"text\": \"SRG-OS-000366-GPOS-00153\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204447r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"high\",\n \"version\": {\n \"text\": \"RHEL-07-020050\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must prevent the installation of software, patches, service packs, device drivers, or operating system components from a repository without verification they have been digitally signed using a certificate that is issued by a Certificate Authority (CA) that is recognized and approved by the organization.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Changes to any software components can have significant effects on the overall security of the operating system. This requirement ensures the software has not been tampered with and that it has been provided by a trusted vendor.\\n\\nAccordingly, patches, service packs, device drivers, or operating system components must be signed with a certificate recognized and approved by the organization.\\n\\nVerifying the authenticity of the software prior to installation validates the integrity of the patch or upgrade received from a vendor. This verifies the software has not been tampered with and that it has been provided by a trusted vendor. Self-signed certificates are disallowed by this requirement. The operating system should not have to verify the software again. This requirement does not mandate DoD certificates for this purpose; however, the certificate used to verify the software must be from an approved CA.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-26989-4\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-71977\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86601\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-001749\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to verify the signature of packages from a repository prior to install by setting the following option in the \\\"/etc/yum.conf\\\" file:\\n\\ngpgcheck=1\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4571r88534_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4571r88534_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:1027\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:39:30" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001749" + ], + "nist": [ + "CM-5 (3)" + ], + "severity": "high", + "description": "{\"VulnDiscussion\":\"Changes to any software components can have significant effects on the overall security of the operating system. This requirement ensures the software has not been tampered with and that it has been provided by a trusted vendor.\\n\\nAccordingly, patches, service packs, device drivers, or operating system components must be signed with a certificate recognized and approved by the organization.\\n\\nVerifying the authenticity of the software prior to installation validates the integrity of the patch or upgrade received from a vendor. This verifies the software has not been tampered with and that it has been provided by a trusted vendor. Self-signed certificates are disallowed by this requirement. The operating system should not have to verify the software again. This requirement does not mandate DoD certificates for this purpose; however, the certificate used to verify the software must be from an approved CA.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204448", + "group_title": "SRG-OS-000366-GPOS-00153", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204448r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:110", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4572r88537_fix", + "fixtext_fixref": "F-4572r88537_fix", + "ident": [ + { + "text": "CCE-80347-8", + "system": "http://cce.mitre.org" + }, + { + "text": "V-71979", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86603", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001749", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-020060", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204447r603261_rule", + "time": "2021-12-17T10:39:30", + "severity": "high", + "version": "RHEL-07-020050", + "weight": "10.000000", + "result": "pass", + "ident": [ + { + "text": "CCE-26989-4", + "system": "http://cce.mitre.org" + }, + { + "text": "V-71977", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86601", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001749", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:1027", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must prevent the installation of software, patches, service packs, device drivers, or operating system components of local packages without verification they have been digitally signed using a certificate that is issued by a Certificate Authority (CA) that is recognized and approved by the organization.", + "id": "V-204448", + "desc": "Changes to any software components can have significant effects on the overall security of the operating system. This requirement ensures the software has not been tampered with and that it has been provided by a trusted vendor.\n\nAccordingly, patches, service packs, device drivers, or operating system components must be signed with a certificate recognized and approved by the organization.\n\nVerifying the authenticity of the software prior to installation validates the integrity of the patch or upgrade received from a vendor. This verifies the software has not been tampered with and that it has been provided by a trusted vendor. Self-signed certificates are disallowed by this requirement. The operating system should not have to verify the software again. This requirement does not mandate DoD certificates for this purpose; however, the certificate used to verify the software must be from an approved CA.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:110", + "label": "check" + }, + { + "data": "Configure the operating system to verify the signature of local packages prior to install by setting the following option in the \"/etc/yum.conf\" file:\n\nlocalpkg_gpgcheck=1", + "label": "fix" + } + ], + "impact": 0.7, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204448\",\n \"title\": {\n \"text\": \"SRG-OS-000366-GPOS-00153\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204448r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"high\",\n \"version\": {\n \"text\": \"RHEL-07-020060\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must prevent the installation of software, patches, service packs, device drivers, or operating system components of local packages without verification they have been digitally signed using a certificate that is issued by a Certificate Authority (CA) that is recognized and approved by the organization.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Changes to any software components can have significant effects on the overall security of the operating system. This requirement ensures the software has not been tampered with and that it has been provided by a trusted vendor.\\n\\nAccordingly, patches, service packs, device drivers, or operating system components must be signed with a certificate recognized and approved by the organization.\\n\\nVerifying the authenticity of the software prior to installation validates the integrity of the patch or upgrade received from a vendor. This verifies the software has not been tampered with and that it has been provided by a trusted vendor. Self-signed certificates are disallowed by this requirement. The operating system should not have to verify the software again. This requirement does not mandate DoD certificates for this purpose; however, the certificate used to verify the software must be from an approved CA.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-80347-8\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-71979\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86603\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-001749\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to verify the signature of local packages prior to install by setting the following option in the \\\"/etc/yum.conf\\\" file:\\n\\nlocalpkg_gpgcheck=1\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4572r88537_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4572r88537_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:110\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:30" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366", + "CCI-000778", + "CCI-001958" + ], + "nist": [ + "CM-6 b", + "IA-3", + "IA-3" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"USB mass storage permits easy introduction of unknown devices, thereby facilitating malicious activity.\\n\\nSatisfies: SRG-OS-000114-GPOS-00059, SRG-OS-000378-GPOS-00163, SRG-OS-000480-GPOS-00227\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204449", + "group_title": "SRG-OS-000114-GPOS-00059", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204449r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:1141", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4573r462538_fix", + "fixtext_fixref": "F-4573r462538_fix", + "ident": [ + { + "text": "SV-86607", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71983", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000778", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001958", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-020100", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204448r603261_rule", + "time": "2021-12-17T10:39:30", + "severity": "high", + "version": "RHEL-07-020060", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-80347-8", + "system": "http://cce.mitre.org" + }, + { + "text": "V-71979", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86603", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001749", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:110", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured to disable USB mass storage.", + "id": "V-204449", + "desc": "USB mass storage permits easy introduction of unknown devices, thereby facilitating malicious activity.\n\nSatisfies: SRG-OS-000114-GPOS-00059, SRG-OS-000378-GPOS-00163, SRG-OS-000480-GPOS-00227", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:1141", + "label": "check" + }, + { + "data": "Configure the operating system to disable the ability to use the USB Storage kernel module.\n\nCreate a file under \"/etc/modprobe.d\" with the following command:\n\n# touch /etc/modprobe.d/usb-storage.conf\n\nAdd the following line to the created file:\n\ninstall usb-storage /bin/true\n\nConfigure the operating system to disable the ability to use USB mass storage devices.\n\n# vi /etc/modprobe.d/blacklist.conf\n\nAdd or update the line:\n\nblacklist usb-storage", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204449\",\n \"title\": {\n \"text\": \"SRG-OS-000114-GPOS-00059\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204449r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-020100\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must be configured to disable USB mass storage.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>USB mass storage permits easy introduction of unknown devices, thereby facilitating malicious activity.\\n\\nSatisfies: SRG-OS-000114-GPOS-00059, SRG-OS-000378-GPOS-00163, SRG-OS-000480-GPOS-00227</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"SV-86607\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-71983\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000778\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-001958\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to disable the ability to use the USB Storage kernel module.\\n\\nCreate a file under \\\"/etc/modprobe.d\\\" with the following command:\\n\\n# touch /etc/modprobe.d/usb-storage.conf\\n\\nAdd the following line to the created file:\\n\\ninstall usb-storage /bin/true\\n\\nConfigure the operating system to disable the ability to use USB mass storage devices.\\n\\n# vi /etc/modprobe.d/blacklist.conf\\n\\nAdd or update the line:\\n\\nblacklist usb-storage\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4573r462538_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4573r462538_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:1141\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:30" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001958" + ], + "nist": [ + "IA-3" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Disabling DCCP protects the system against exploitation of any flaws in the protocol implementation.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204450", + "group_title": "SRG-OS-000378-GPOS-00163", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204450r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:92517", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4574r88543_fix", + "fixtext_fixref": "F-4574r88543_fix", + "ident": [ + { + "text": "V-77821", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-92517", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001958", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-020101", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204449r603261_rule", + "time": "2021-12-17T10:39:30", + "severity": "medium", + "version": "RHEL-07-020100", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "SV-86607", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71983", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000778", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001958", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:1141", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that the Datagram Congestion Control Protocol (DCCP) kernel module is disabled unless required.", + "id": "V-204450", + "desc": "Disabling DCCP protects the system against exploitation of any flaws in the protocol implementation.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:92517", + "label": "check" + }, + { + "data": "Configure the operating system to disable the ability to use the DCCP kernel module.\n\nCreate a file under \"/etc/modprobe.d\" with the following command:\n\n# touch /etc/modprobe.d/dccp.conf\n\nAdd the following line to the created file:\n\ninstall dccp /bin/true\n\nEnsure that the DCCP module is blacklisted: \n\n# vi /etc/modprobe.d/blacklist.conf\n\nAdd or update the line:\n\nblacklist dccp", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204450\",\n \"title\": {\n \"text\": \"SRG-OS-000378-GPOS-00163\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204450r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-020101\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must be configured so that the Datagram Congestion Control Protocol (DCCP) kernel module is disabled unless required.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Disabling DCCP protects the system against exploitation of any flaws in the protocol implementation.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"V-77821\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-92517\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-001958\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to disable the ability to use the DCCP kernel module.\\n\\nCreate a file under \\\"/etc/modprobe.d\\\" with the following command:\\n\\n# touch /etc/modprobe.d/dccp.conf\\n\\nAdd the following line to the created file:\\n\\ninstall dccp /bin/true\\n\\nEnsure that the DCCP module is blacklisted: \\n\\n# vi /etc/modprobe.d/blacklist.conf\\n\\nAdd or update the line:\\n\\nblacklist dccp\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4574r88543_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4574r88543_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:92517\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:30" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366", + "CCI-000778", + "CCI-001958" + ], + "nist": [ + "CM-6 b", + "IA-3", + "IA-3" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Automatically mounting file systems permits easy introduction of unknown devices, thereby facilitating malicious activity.\\n\\nSatisfies: SRG-OS-000114-GPOS-00059, SRG-OS-000378-GPOS-00163, SRG-OS-000480-GPOS-00227\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204451", + "group_title": "SRG-OS-000114-GPOS-00059", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204451r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:86609", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4575r88546_fix", + "fixtext_fixref": "F-4575r88546_fix", + "ident": [ + { + "text": "CCE-27498-5", + "system": "http://cce.mitre.org" + }, + { + "text": "V-71985", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86609", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000778", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001958", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-020110", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204450r603261_rule", + "time": "2021-12-17T10:39:30", + "severity": "medium", + "version": "RHEL-07-020101", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "V-77821", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-92517", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001958", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:92517", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must disable the file system automounter unless required.", + "id": "V-204451", + "desc": "Automatically mounting file systems permits easy introduction of unknown devices, thereby facilitating malicious activity.\n\nSatisfies: SRG-OS-000114-GPOS-00059, SRG-OS-000378-GPOS-00163, SRG-OS-000480-GPOS-00227", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:86609", + "label": "check" + }, + { + "data": "Configure the operating system to disable the ability to automount devices.\n\nTurn off the automount service with the following commands:\n\n# systemctl stop autofs\n# systemctl disable autofs\n\nIf \"autofs\" is required for Network File System (NFS), it must be documented with the ISSO.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204451\",\n \"title\": {\n \"text\": \"SRG-OS-000114-GPOS-00059\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204451r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-020110\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must disable the file system automounter unless required.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Automatically mounting file systems permits easy introduction of unknown devices, thereby facilitating malicious activity.\\n\\nSatisfies: SRG-OS-000114-GPOS-00059, SRG-OS-000378-GPOS-00163, SRG-OS-000480-GPOS-00227</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-27498-5\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-71985\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86609\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000778\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-001958\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to disable the ability to automount devices.\\n\\nTurn off the automount service with the following commands:\\n\\n# systemctl stop autofs\\n# systemctl disable autofs\\n\\nIf \\\"autofs\\\" is required for Network File System (NFS), it must be documented with the ISSO.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4575r88546_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4575r88546_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:86609\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:39:31" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-002617" + ], + "nist": [ + "SI-2 (6)" + ], + "severity": "low", + "description": "{\"VulnDiscussion\":\"Previous versions of software components that are not removed from the information system after updates have been installed may be exploited by adversaries. Some information technology products may remove older versions of software automatically from the information system.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204452", + "group_title": "SRG-OS-000437-GPOS-00194", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204452r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:108", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4576r88549_fix", + "fixtext_fixref": "F-4576r88549_fix", + "ident": [ + { + "text": "CCE-80346-0", + "system": "http://cce.mitre.org" + }, + { + "text": "V-71987", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86611", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-002617", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-020200", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204451r603261_rule", + "time": "2021-12-17T10:39:31", + "severity": "medium", + "version": "RHEL-07-020110", + "weight": "10.000000", + "result": "pass", + "ident": [ + { + "text": "CCE-27498-5", + "system": "http://cce.mitre.org" + }, + { + "text": "V-71985", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86609", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000778", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001958", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:86609", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must remove all software components after updated versions have been installed.", + "id": "V-204452", + "desc": "Previous versions of software components that are not removed from the information system after updates have been installed may be exploited by adversaries. Some information technology products may remove older versions of software automatically from the information system.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:108", + "label": "check" + }, + { + "data": "Configure the operating system to remove all software components after updated versions have been installed.\n\nSet the \"clean_requirements_on_remove\" option to \"1\" in the \"/etc/yum.conf\" file:\n\nclean_requirements_on_remove=1", + "label": "fix" + } + ], + "impact": 0.3, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204452\",\n \"title\": {\n \"text\": \"SRG-OS-000437-GPOS-00194\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204452r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"low\",\n \"version\": {\n \"text\": \"RHEL-07-020200\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must remove all software components after updated versions have been installed.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Previous versions of software components that are not removed from the information system after updates have been installed may be exploited by adversaries. Some information technology products may remove older versions of software automatically from the information system.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-80346-0\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-71987\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86611\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-002617\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to remove all software components after updated versions have been installed.\\n\\nSet the \\\"clean_requirements_on_remove\\\" option to \\\"1\\\" in the \\\"/etc/yum.conf\\\" file:\\n\\nclean_requirements_on_remove=1\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4576r88549_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4576r88549_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:108\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:31" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Setting the most restrictive default permissions ensures that when new accounts are created, they do not have unnecessary access.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204457", + "group_title": "SRG-OS-000480-GPOS-00228", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204457r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-export": { + "export-name": "oval:mil.disa.stig.rhel7:var:4211", + "value-id": "xccdf_mil.disa.stig_value_var_accounts_user_umask" + }, + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:518", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4581r88564_fix", + "fixtext_fixref": "F-4581r88564_fix", + "ident": [ + { + "text": "CCE-80205-8", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86619", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71995", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-020240", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204452r603261_rule", + "time": "2021-12-17T10:39:31", + "severity": "low", + "version": "RHEL-07-020200", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-80346-0", + "system": "http://cce.mitre.org" + }, + { + "text": "V-71987", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86611", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-002617", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:108", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must define default permissions for all authenticated users in such a way that the user can only read and modify their own files.", + "id": "V-204457", + "desc": "Setting the most restrictive default permissions ensures that when new accounts are created, they do not have unnecessary access.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:518", + "label": "check" + }, + { + "data": "Configure the operating system to define default permissions for all authenticated users in such a way that the user can only read and modify their own files.\n\nAdd or edit the line for the \"UMASK\" parameter in \"/etc/login.defs\" file to \"077\":\n\nUMASK 077", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204457\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00228\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204457r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-020240\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must define default permissions for all authenticated users in such a way that the user can only read and modify their own files.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Setting the most restrictive default permissions ensures that when new accounts are created, they do not have unnecessary access.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-80205-8\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86619\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-71995\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to define default permissions for all authenticated users in such a way that the user can only read and modify their own files.\\n\\nAdd or edit the line for the \\\"UMASK\\\" parameter in \\\"/etc/login.defs\\\" file to \\\"077\\\":\\n\\nUMASK 077\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4581r88564_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4581r88564_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-export\": {\n \"export-name\": \"oval:mil.disa.stig.rhel7:var:4211\",\n \"value-id\": \"xccdf_mil.disa.stig_value_var_accounts_user_umask\"\n },\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:518\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:39:31" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "high", + "description": "{\"VulnDiscussion\":\"An operating system release is considered \\\"supported\\\" if the vendor continues to provide security patches for the product. With an unsupported release, it will not be possible to resolve security issues discovered in the system software.\\n\\nRed Hat offers the Extended Update Support (EUS) Add-On to a Red Hat Enterprise Linux subscription, for a fee, for those customers who wish to standardize on a specific minor release for an extended period. RHEL 7.7 marks the final minor release that EUS will be available, while 7.9 is the final minor release overall.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204458", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204458r744100_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:169", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4582r462547_fix", + "fixtext_fixref": "F-4582r462547_fix", + "ident": [ + { + "text": "CCE-80349-4", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86621", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71997", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-020250", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204457r603261_rule", + "time": "2021-12-17T10:39:31", + "severity": "medium", + "version": "RHEL-07-020240", + "weight": "10.000000", + "result": "pass", + "ident": [ + { + "text": "CCE-80205-8", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86619", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71995", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-export": { + "export-name": "oval:mil.disa.stig.rhel7:var:4211", + "value-id": "xccdf_mil.disa.stig_value_var_accounts_user_umask" + }, + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:518", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + }, + "value": { + "id": "xccdf_mil.disa.stig_value_var_accounts_user_umask", + "operator": "equals", + "type": "string", + "title": { + "text": "Sensible umask", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "description": { + "text": "Enter default user umask", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "value": [ + 77, + { + "text": 7, + "selector": "007" + }, + { + "text": 22, + "selector": "022" + }, + { + "text": 27, + "selector": "027" + }, + { + "text": 77, + "selector": "077" + } + ] + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be a vendor supported release.", + "id": "V-204458", + "desc": "An operating system release is considered \"supported\" if the vendor continues to provide security patches for the product. With an unsupported release, it will not be possible to resolve security issues discovered in the system software.\n\nRed Hat offers the Extended Update Support (EUS) Add-On to a Red Hat Enterprise Linux subscription, for a fee, for those customers who wish to standardize on a specific minor release for an extended period. RHEL 7.7 marks the final minor release that EUS will be available, while 7.9 is the final minor release overall.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:169", + "label": "check" + }, + { + "data": "Upgrade to a supported version of the operating system.", + "label": "fix" + } + ], + "impact": 0.7, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204458\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204458r744100_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"high\",\n \"version\": {\n \"text\": \"RHEL-07-020250\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must be a vendor supported release.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>An operating system release is considered \\\"supported\\\" if the vendor continues to provide security patches for the product. With an unsupported release, it will not be possible to resolve security issues discovered in the system software.\\n\\nRed Hat offers the Extended Update Support (EUS) Add-On to a Red Hat Enterprise Linux subscription, for a fee, for those customers who wish to standardize on a specific minor release for an extended period. RHEL 7.7 marks the final minor release that EUS will be available, while 7.9 is the final minor release overall.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-80349-4\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86621\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-71997\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Upgrade to a supported version of the operating system.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4582r462547_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4582r462547_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:169\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:39:31" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000764" + ], + "nist": [ + "IA-2" + ], + "severity": "low", + "description": "{\"VulnDiscussion\":\"If a user is assigned the GID of a group not existing on the system, and a group with the GID is subsequently created, the user may have unintended rights to any files associated with the group.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204461", + "group_title": "SRG-OS-000104-GPOS-00051", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204461r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:1117", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4585r88576_fix", + "fixtext_fixref": "F-4585r88576_fix", + "ident": [ + { + "text": "CCE-27503-2", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72003", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86627", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000764", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-020300", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204458r744100_rule", + "time": "2021-12-17T10:39:31", + "severity": "high", + "version": "RHEL-07-020250", + "weight": "10.000000", + "result": "pass", + "ident": [ + { + "text": "CCE-80349-4", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86621", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71997", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:169", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that all Group Identifiers (GIDs) referenced in the /etc/passwd file are defined in the /etc/group file.", + "id": "V-204461", + "desc": "If a user is assigned the GID of a group not existing on the system, and a group with the GID is subsequently created, the user may have unintended rights to any files associated with the group.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:1117", + "label": "check" + }, + { + "data": "Configure the system to define all GIDs found in the \"/etc/passwd\" file by modifying the \"/etc/group\" file to add any non-existent group referenced in the \"/etc/passwd\" file, or change the GIDs referenced in the \"/etc/passwd\" file to a group that exists in \"/etc/group\".", + "label": "fix" + } + ], + "impact": 0.3, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204461\",\n \"title\": {\n \"text\": \"SRG-OS-000104-GPOS-00051\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204461r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"low\",\n \"version\": {\n \"text\": \"RHEL-07-020300\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must be configured so that all Group Identifiers (GIDs) referenced in the /etc/passwd file are defined in the /etc/group file.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>If a user is assigned the GID of a group not existing on the system, and a group with the GID is subsequently created, the user may have unintended rights to any files associated with the group.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-27503-2\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-72003\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86627\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000764\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the system to define all GIDs found in the \\\"/etc/passwd\\\" file by modifying the \\\"/etc/group\\\" file to add any non-existent group referenced in the \\\"/etc/passwd\\\" file, or change the GIDs referenced in the \\\"/etc/passwd\\\" file to a group that exists in \\\"/etc/group\\\".\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4585r88576_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4585r88576_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:1117\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:39:31" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "high", + "description": "{\"VulnDiscussion\":\"If an account other than root also has a User Identifier (UID) of \\\"0\\\", it has root authority, giving that account unrestricted access to the entire operating system. Multiple accounts with a UID of \\\"0\\\" afford an opportunity for potential intruders to guess a password for a privileged account.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204462", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204462r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:457", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4586r88579_fix", + "fixtext_fixref": "F-4586r88579_fix", + "ident": [ + { + "text": "CCE-27175-9", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86629", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72005", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-020310", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204461r603261_rule", + "time": "2021-12-17T10:39:31", + "severity": "low", + "version": "RHEL-07-020300", + "weight": "10.000000", + "result": "pass", + "ident": [ + { + "text": "CCE-27503-2", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72003", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86627", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000764", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:1117", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that the root account must be the only account having unrestricted access to the system.", + "id": "V-204462", + "desc": "If an account other than root also has a User Identifier (UID) of \"0\", it has root authority, giving that account unrestricted access to the entire operating system. Multiple accounts with a UID of \"0\" afford an opportunity for potential intruders to guess a password for a privileged account.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:457", + "label": "check" + }, + { + "data": "Change the UID of any account on the system, other than root, that has a UID of \"0\". \n\nIf the account is associated with system commands or applications, the UID should be changed to one greater than \"0\" but less than \"1000\". Otherwise, assign a UID of greater than \"1000\" that has not already been assigned.", + "label": "fix" + } + ], + "impact": 0.7, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204462\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204462r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"high\",\n \"version\": {\n \"text\": \"RHEL-07-020310\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must be configured so that the root account must be the only account having unrestricted access to the system.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>If an account other than root also has a User Identifier (UID) of \\\"0\\\", it has root authority, giving that account unrestricted access to the entire operating system. Multiple accounts with a UID of \\\"0\\\" afford an opportunity for potential intruders to guess a password for a privileged account.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-27175-9\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86629\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72005\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Change the UID of any account on the system, other than root, that has a UID of \\\"0\\\". \\n\\nIf the account is associated with system commands or applications, the UID should be changed to one greater than \\\"0\\\" but less than \\\"1000\\\". Otherwise, assign a UID of greater than \\\"1000\\\" that has not already been assigned.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4586r88579_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4586r88579_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:457\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:39:31" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"If local interactive users are not assigned a valid home directory, there is no place for the storage and control of files they should own.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204466", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204466r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:447", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4590r88591_fix", + "fixtext_fixref": "F-4590r88591_fix", + "ident": [ + { + "text": "CCE-80434-4", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72013", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86637", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-020610", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204462r603261_rule", + "time": "2021-12-17T10:39:31", + "severity": "high", + "version": "RHEL-07-020310", + "weight": "10.000000", + "result": "pass", + "ident": [ + { + "text": "CCE-27175-9", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86629", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72005", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:457", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that all local interactive user accounts, upon creation, are assigned a home directory.", + "id": "V-204466", + "desc": "If local interactive users are not assigned a valid home directory, there is no place for the storage and control of files they should own.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:447", + "label": "check" + }, + { + "data": "Configure the operating system to assign home directories to all new local interactive users by setting the \"CREATE_HOME\" parameter in \"/etc/login.defs\" to \"yes\" as follows.\n\nCREATE_HOME yes", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204466\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204466r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-020610\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must be configured so that all local interactive user accounts, upon creation, are assigned a home directory.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>If local interactive users are not assigned a valid home directory, there is no place for the storage and control of files they should own.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-80434-4\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-72013\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86637\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to assign home directories to all new local interactive users by setting the \\\"CREATE_HOME\\\" parameter in \\\"/etc/login.defs\\\" to \\\"yes\\\" as follows.\\n\\nCREATE_HOME yes\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4590r88591_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4590r88591_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:447\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:39:31" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"If local interactive users are not assigned a valid home directory, there is no place for the storage and control of files they should own.\\n\\nIn addition, if a local interactive user has a home directory defined that does not exist, the user may be given access to the / directory as the current working directory upon logon. This could create a Denial of Service because the user would not be able to access their logon configuration files, and it may give them visibility to system files they normally would not be able to access.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204467", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204467r603826_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:86639", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4591r462550_fix", + "fixtext_fixref": "F-4591r462550_fix", + "ident": [ + { + "text": "V-72015", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86639", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-020620", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204466r603261_rule", + "time": "2021-12-17T10:39:31", + "severity": "medium", + "version": "RHEL-07-020610", + "weight": "10.000000", + "result": "pass", + "ident": [ + { + "text": "CCE-80434-4", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72013", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86637", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:447", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that all local interactive users have a home directory assigned and defined in the /etc/passwd file.", + "id": "V-204467", + "desc": "If local interactive users are not assigned a valid home directory, there is no place for the storage and control of files they should own.\n\nIn addition, if a local interactive user has a home directory defined that does not exist, the user may be given access to the / directory as the current working directory upon logon. This could create a Denial of Service because the user would not be able to access their logon configuration files, and it may give them visibility to system files they normally would not be able to access.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:86639", + "label": "check" + }, + { + "data": "Create home directories to all local interactive users that currently do not have a home directory assigned. Use the following commands to create the user home directory assigned in \"/etc/ passwd\":\n\nNote: The example will be for the user smithj, who has a home directory of \"/home/smithj\", a UID of \"smithj\", and a Group Identifier (GID) of \"users\" assigned in \"/etc/passwd\".\n\n# mkdir /home/smithj \n# chown smithj /home/smithj\n# chgrp users /home/smithj\n# chmod 0750 /home/smithj", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204467\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204467r603826_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-020620\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must be configured so that all local interactive users have a home directory assigned and defined in the /etc/passwd file.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>If local interactive users are not assigned a valid home directory, there is no place for the storage and control of files they should own.\\n\\nIn addition, if a local interactive user has a home directory defined that does not exist, the user may be given access to the / directory as the current working directory upon logon. This could create a Denial of Service because the user would not be able to access their logon configuration files, and it may give them visibility to system files they normally would not be able to access.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"V-72015\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86639\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Create home directories to all local interactive users that currently do not have a home directory assigned. Use the following commands to create the user home directory assigned in \\\"/etc/ passwd\\\":\\n\\nNote: The example will be for the user smithj, who has a home directory of \\\"/home/smithj\\\", a UID of \\\"smithj\\\", and a Group Identifier (GID) of \\\"users\\\" assigned in \\\"/etc/passwd\\\".\\n\\n# mkdir /home/smithj \\n# chown smithj /home/smithj\\n# chgrp users /home/smithj\\n# chmod 0750 /home/smithj\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4591r462550_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4591r462550_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:86639\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:39:31" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"The \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204482", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204482r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:1186", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4606r88639_fix", + "fixtext_fixref": "F-4606r88639_fix", + "ident": [ + { + "text": "CCE-80240-5", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86669", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72045", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-021020", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204467r603826_rule", + "time": "2021-12-17T10:39:31", + "severity": "medium", + "version": "RHEL-07-020620", + "weight": "10.000000", + "result": "pass", + "ident": [ + { + "text": "V-72015", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86639", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:86639", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must prevent files with the setuid and setgid bit set from being executed on file systems that are being imported via Network File System (NFS).", + "id": "V-204482", + "desc": "The \"nosuid\" mount option causes the system to not execute \"setuid\" and \"setgid\" files with owner privileges. This option must be used for mounting any file system not containing approved \"setuid\" and \"setguid\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:1186", + "label": "check" + }, + { + "data": "Configure the \"/etc/fstab\" to use the \"nosuid\" option on file systems that are being imported via NFS.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204482\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204482r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-021020\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must prevent files with the setuid and setgid bit set from being executed on file systems that are being imported via Network File System (NFS).\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>The \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-80240-5\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86669\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72045\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the \\\"/etc/fstab\\\" to use the \\\"nosuid\\\" option on file systems that are being imported via NFS.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4606r88639_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4606r88639_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:1186\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:39:31" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"The \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204483", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204483r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:1178", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4607r88642_fix", + "fixtext_fixref": "F-4607r88642_fix", + "ident": [ + { + "text": "CCE-80436-9", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-87813", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-73161", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-021021", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204482r603261_rule", + "time": "2021-12-17T10:39:31", + "severity": "medium", + "version": "RHEL-07-021020", + "weight": "10.000000", + "result": "pass", + "ident": [ + { + "text": "CCE-80240-5", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86669", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72045", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:1186", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must prevent binary files from being executed on file systems that are being imported via Network File System (NFS).", + "id": "V-204483", + "desc": "The \"noexec\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:1178", + "label": "check" + }, + { + "data": "Configure the \"/etc/fstab\" to use the \"noexec\" option on file systems that are being imported via NFS.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204483\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204483r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-021021\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must prevent binary files from being executed on file systems that are being imported via Network File System (NFS).\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>The \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-80436-9\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-87813\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-73161\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the \\\"/etc/fstab\\\" to use the \\\"noexec\\\" option on file systems that are being imported via NFS.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4607r88642_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4607r88642_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:1178\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:39:31" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"If a world-writable directory is not group-owned by root, sys, bin, or an application Group Identifier (GID), unauthorized users may be able to modify files created by others.\\n\\nThe only authorized public directories are those temporary directories supplied with the system or those designed to be temporary file repositories. The setting is normally reserved for directories used by the system and by users for temporary file storage, (e.g., /tmp), and for directories requiring global read/write access.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204487", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204487r744106_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:1009", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-36308r602634_fix", + "fixtext_fixref": "F-36308r602634_fix", + "ident": [ + { + "text": "CCE-80136-5", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72047", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86671", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-021030", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204483r603261_rule", + "time": "2021-12-17T10:39:31", + "severity": "medium", + "version": "RHEL-07-021021", + "weight": "10.000000", + "result": "pass", + "ident": [ + { + "text": "CCE-80436-9", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-87813", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-73161", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:1178", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that all world-writable directories are group-owned by root, sys, bin, or an application group.", + "id": "V-204487", + "desc": "If a world-writable directory is not group-owned by root, sys, bin, or an application Group Identifier (GID), unauthorized users may be able to modify files created by others.\n\nThe only authorized public directories are those temporary directories supplied with the system or those designed to be temporary file repositories. The setting is normally reserved for directories used by the system and by users for temporary file storage, (e.g., /tmp), and for directories requiring global read/write access.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:1009", + "label": "check" + }, + { + "data": "All directories in local partitions which are world-writable should be group-owned by root or another system account. If any world-writable directories are not group-owned by a system account, this should be investigated. Following this, the directories should be deleted or assigned to an appropriate group.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204487\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204487r744106_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-021030\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must be configured so that all world-writable directories are group-owned by root, sys, bin, or an application group.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>If a world-writable directory is not group-owned by root, sys, bin, or an application Group Identifier (GID), unauthorized users may be able to modify files created by others.\\n\\nThe only authorized public directories are those temporary directories supplied with the system or those designed to be temporary file repositories. The setting is normally reserved for directories used by the system and by users for temporary file storage, (e.g., /tmp), and for directories requiring global read/write access.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-80136-5\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-72047\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86671\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"All directories in local partitions which are world-writable should be group-owned by root or another system account. If any world-writable directories are not group-owned by a system account, this should be investigated. Following this, the directories should be deleted or assigned to an appropriate group.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-36308r602634_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-36308r602634_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:1009\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:39:38" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"If the owner of the \\\"cron.allow\\\" file is not set to root, the possibility exists for an unauthorized user to view or to edit sensitive information.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204490", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204490r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:116", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4614r88663_fix", + "fixtext_fixref": "F-4614r88663_fix", + "ident": [ + { + "text": "CCE-80378-3", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72053", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86677", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-021110", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204487r744106_rule", + "time": "2021-12-17T10:39:38", + "severity": "medium", + "version": "RHEL-07-021030", + "weight": "10.000000", + "result": "pass", + "ident": [ + { + "text": "CCE-80136-5", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72047", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86671", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:1009", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that the cron.allow file, if it exists, is owned by root.", + "id": "V-204490", + "desc": "If the owner of the \"cron.allow\" file is not set to root, the possibility exists for an unauthorized user to view or to edit sensitive information.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:116", + "label": "check" + }, + { + "data": "Set the owner on the \"/etc/cron.allow\" file to root with the following command:\n\n# chown root /etc/cron.allow", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204490\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204490r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-021110\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must be configured so that the cron.allow file, if it exists, is owned by root.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>If the owner of the \\\"cron.allow\\\" file is not set to root, the possibility exists for an unauthorized user to view or to edit sensitive information.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-80378-3\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-72053\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86677\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Set the owner on the \\\"/etc/cron.allow\\\" file to root with the following command:\\n\\n# chown root /etc/cron.allow\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4614r88663_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4614r88663_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:116\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:39:38" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"If the group owner of the \\\"cron.allow\\\" file is not set to root, sensitive information could be viewed or edited by unauthorized users.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204491", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204491r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:114", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4615r88666_fix", + "fixtext_fixref": "F-4615r88666_fix", + "ident": [ + { + "text": "CCE-80379-1", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86679", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72055", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-021120", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204490r603261_rule", + "time": "2021-12-17T10:39:38", + "severity": "medium", + "version": "RHEL-07-021110", + "weight": "10.000000", + "result": "pass", + "ident": [ + { + "text": "CCE-80378-3", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72053", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86677", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:116", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that the cron.allow file, if it exists, is group-owned by root.", + "id": "V-204491", + "desc": "If the group owner of the \"cron.allow\" file is not set to root, sensitive information could be viewed or edited by unauthorized users.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:114", + "label": "check" + }, + { + "data": "Set the group owner on the \"/etc/cron.allow\" file to root with the following command:\n\n# chgrp root /etc/cron.allow", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204491\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204491r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-021120\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must be configured so that the cron.allow file, if it exists, is group-owned by root.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>If the group owner of the \\\"cron.allow\\\" file is not set to root, sensitive information could be viewed or edited by unauthorized users.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-80379-1\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86679\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72055\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Set the group owner on the \\\"/etc/cron.allow\\\" file to root with the following command:\\n\\n# chgrp root /etc/cron.allow\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4615r88666_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4615r88666_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:114\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:39:38" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "low", + "description": "{\"VulnDiscussion\":\"The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204493", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204493r603840_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:1311", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4617r88672_fix", + "fixtext_fixref": "F-4617r88672_fix", + "ident": [ + { + "text": "CCE-80144-9", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86683", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72059", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-021310", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204491r603261_rule", + "time": "2021-12-17T10:39:38", + "severity": "medium", + "version": "RHEL-07-021120", + "weight": "10.000000", + "result": "pass", + "ident": [ + { + "text": "CCE-80379-1", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86679", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72055", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:114", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that a separate file system is used for user home directories (such as /home or an equivalent).", + "id": "V-204493", + "desc": "The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:1311", + "label": "check" + }, + { + "data": "Migrate the \"/home\" directory onto a separate file system/partition.", + "label": "fix" + } + ], + "impact": 0.3, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204493\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204493r603840_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"low\",\n \"version\": {\n \"text\": \"RHEL-07-021310\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must be configured so that a separate file system is used for user home directories (such as /home or an equivalent).\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-80144-9\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86683\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72059\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Migrate the \\\"/home\\\" directory onto a separate file system/partition.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4617r88672_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4617r88672_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:1311\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "low", + "description": "{\"VulnDiscussion\":\"The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204494", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204494r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:1315", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4618r88675_fix", + "fixtext_fixref": "F-4618r88675_fix", + "ident": [ + { + "text": "CCE-26404-4", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72061", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86685", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-021320", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204493r603840_rule", + "time": "2021-12-17T10:39:39", + "severity": "low", + "version": "RHEL-07-021310", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-80144-9", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86683", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72059", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:1311", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must use a separate file system for /var.", + "id": "V-204494", + "desc": "The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:1315", + "label": "check" + }, + { + "data": "Migrate the \"/var\" path onto a separate file system.", + "label": "fix" + } + ], + "impact": 0.3, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204494\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204494r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"low\",\n \"version\": {\n \"text\": \"RHEL-07-021320\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must use a separate file system for /var.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-26404-4\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-72061\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86685\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Migrate the \\\"/var\\\" path onto a separate file system.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4618r88675_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4618r88675_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:1315\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "low", + "description": "{\"VulnDiscussion\":\"The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204495", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204495r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:1319", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4619r88678_fix", + "fixtext_fixref": "F-4619r88678_fix", + "ident": [ + { + "text": "SV-86687", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72063", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-021330", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204494r603261_rule", + "time": "2021-12-17T10:39:39", + "severity": "low", + "version": "RHEL-07-021320", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-26404-4", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72061", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86685", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:1315", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must use a separate file system for the system audit data path.", + "id": "V-204495", + "desc": "The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:1319", + "label": "check" + }, + { + "data": "Migrate the system audit data path onto a separate file system.", + "label": "fix" + } + ], + "impact": 0.3, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204495\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204495r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"low\",\n \"version\": {\n \"text\": \"RHEL-07-021330\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must use a separate file system for the system audit data path.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"SV-86687\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72063\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Migrate the system audit data path onto a separate file system.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4619r88678_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4619r88678_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:1319\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "low", + "description": "{\"VulnDiscussion\":\"The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204496", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204496r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:86689", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-36309r602637_fix", + "fixtext_fixref": "F-36309r602637_fix", + "ident": [ + { + "text": "CCE-27173-4", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86689", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72065", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-021340", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204495r603261_rule", + "time": "2021-12-17T10:39:39", + "severity": "low", + "version": "RHEL-07-021330", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "SV-86687", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72063", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:1319", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must use a separate file system for /tmp (or equivalent).", + "id": "V-204496", + "desc": "The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:86689", + "label": "check" + }, + { + "data": "Start the \"tmp.mount\" service with the following command:\n\n# systemctl enable tmp.mount\n \nOR\n\nEdit the \"/etc/fstab\" file and ensure the \"/tmp\" directory is defined in the fstab with a device and mount point.", + "label": "fix" + } + ], + "impact": 0.3, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204496\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204496r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"low\",\n \"version\": {\n \"text\": \"RHEL-07-021340\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must use a separate file system for /tmp (or equivalent).\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-27173-4\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86689\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72065\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Start the \\\"tmp.mount\\\" service with the following command:\\n\\n# systemctl enable tmp.mount\\n \\nOR\\n\\nEdit the \\\"/etc/fstab\\\" file and ensure the \\\"/tmp\\\" directory is defined in the fstab with a device and mount point.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-36309r602637_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-36309r602637_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:86689\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000068", + "CCI-001199", + "CCI-002450", + "CCI-002476" + ], + "nist": [ + "AC-17 (2)", + "SC-28", + "SC-13 b", + "SC-28 (1)" + ], + "severity": "high", + "description": "{\"VulnDiscussion\":\"Use of weak or untested encryption algorithms undermines the purposes of using encryption to protect data. The operating system must implement cryptographic modules adhering to the higher standards approved by the federal government since this provides assurance they have been tested and validated.\\n\\nSatisfies: SRG-OS-000033-GPOS-00014, SRG-OS-000185-GPOS-00079, SRG-OS-000396-GPOS-00176, SRG-OS-000405-GPOS-00184, SRG-OS-000478-GPOS-00223\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204497", + "group_title": "SRG-OS-000033-GPOS-00014", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204497r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:126", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-36310r602640_fix", + "fixtext_fixref": "F-36310r602640_fix", + "ident": [ + { + "text": "CCE-80359-3", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86691", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72067", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000068", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001199", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002450", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002476", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-021350", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204496r603261_rule", + "time": "2021-12-17T10:39:39", + "severity": "low", + "version": "RHEL-07-021340", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-27173-4", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86689", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72065", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:86689", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must implement NIST FIPS-validated cryptography for the following: to provision digital signatures, to generate cryptographic hashes, and to protect data requiring data-at-rest protections in accordance with applicable federal laws, Executive Orders, directives, policies, regulations, and standards.", + "id": "V-204497", + "desc": "Use of weak or untested encryption algorithms undermines the purposes of using encryption to protect data. The operating system must implement cryptographic modules adhering to the higher standards approved by the federal government since this provides assurance they have been tested and validated.\n\nSatisfies: SRG-OS-000033-GPOS-00014, SRG-OS-000185-GPOS-00079, SRG-OS-000396-GPOS-00176, SRG-OS-000405-GPOS-00184, SRG-OS-000478-GPOS-00223", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:126", + "label": "check" + }, + { + "data": "Configure the operating system to implement DoD-approved encryption by installing the dracut-fips package.\n\nTo enable strict FIPS compliance, the fips=1 kernel option needs to be added to the kernel command line during system installation so key generation is done with FIPS-approved algorithms and continuous monitoring tests in place.\n\nConfigure the operating system to implement DoD-approved encryption by following the steps below: \n\nThe fips=1 kernel option needs to be added to the kernel command line during system installation so that key generation is done with FIPS-approved algorithms and continuous monitoring tests in place. Users should also ensure that the system has plenty of entropy during the installation process by moving the mouse around, or if no mouse is available, ensuring that many keystrokes are typed. The recommended amount of keystrokes is 256 and more. Less than 256 keystrokes may generate a non-unique key.\n\nInstall the dracut-fips package with the following command:\n\n# yum install dracut-fips\n\nRecreate the \"initramfs\" file with the following command:\n\nNote: This command will overwrite the existing \"initramfs\" file.\n\n# dracut -f\n\nModify the kernel command line of the current kernel in the \"grub.cfg\" file by adding the following option to the GRUB_CMDLINE_LINUX key in the \"/etc/default/grub\" file and then rebuild the \"grub.cfg\" file:\n\nfips=1\n\nChanges to \"/etc/default/grub\" require rebuilding the \"grub.cfg\" file as follows:\n\nOn BIOS-based machines, use the following command:\n\n# grub2-mkconfig -o /boot/grub2/grub.cfg\n\nOn UEFI-based machines, use the following command:\n\n# grub2-mkconfig -o /boot/efi/EFI/redhat/grub.cfg\n\nIf /boot or /boot/efi reside on separate partitions, the kernel parameter boot= must be added to the kernel command line. You can identify a partition by running the df /boot or df /boot/efi command:\n\n# df /boot\nFilesystem 1K-blocks Used Available Use% Mounted on\n/dev/sda1 495844 53780 416464 12% /boot\n\nTo ensure the \"boot=\" configuration option will work even if device naming changes occur between boots, identify the universally unique identifier (UUID) of the partition with the following command:\n\n# blkid /dev/sda1\n/dev/sda1: UUID=\"05c000f1-a213-759e-c7a2-f11b7424c797\" TYPE=\"ext4\"\n\nFor the example above, append the following string to the kernel command line:\n\nboot=UUID=05c000f1-a213-759e-c7a2-f11b7424c797\n\nIf the file /etc/system-fips does not exists, recreate it:\n\n# touch /etc/ system-fips\n\nReboot the system for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.7, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204497\",\n \"title\": {\n \"text\": \"SRG-OS-000033-GPOS-00014\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204497r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"high\",\n \"version\": {\n \"text\": \"RHEL-07-021350\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must implement NIST FIPS-validated cryptography for the following: to provision digital signatures, to generate cryptographic hashes, and to protect data requiring data-at-rest protections in accordance with applicable federal laws, Executive Orders, directives, policies, regulations, and standards.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Use of weak or untested encryption algorithms undermines the purposes of using encryption to protect data. The operating system must implement cryptographic modules adhering to the higher standards approved by the federal government since this provides assurance they have been tested and validated.\\n\\nSatisfies: SRG-OS-000033-GPOS-00014, SRG-OS-000185-GPOS-00079, SRG-OS-000396-GPOS-00176, SRG-OS-000405-GPOS-00184, SRG-OS-000478-GPOS-00223</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-80359-3\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86691\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72067\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000068\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-001199\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002450\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002476\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to implement DoD-approved encryption by installing the dracut-fips package.\\n\\nTo enable strict FIPS compliance, the fips=1 kernel option needs to be added to the kernel command line during system installation so key generation is done with FIPS-approved algorithms and continuous monitoring tests in place.\\n\\nConfigure the operating system to implement DoD-approved encryption by following the steps below: \\n\\nThe fips=1 kernel option needs to be added to the kernel command line during system installation so that key generation is done with FIPS-approved algorithms and continuous monitoring tests in place. Users should also ensure that the system has plenty of entropy during the installation process by moving the mouse around, or if no mouse is available, ensuring that many keystrokes are typed. The recommended amount of keystrokes is 256 and more. Less than 256 keystrokes may generate a non-unique key.\\n\\nInstall the dracut-fips package with the following command:\\n\\n# yum install dracut-fips\\n\\nRecreate the \\\"initramfs\\\" file with the following command:\\n\\nNote: This command will overwrite the existing \\\"initramfs\\\" file.\\n\\n# dracut -f\\n\\nModify the kernel command line of the current kernel in the \\\"grub.cfg\\\" file by adding the following option to the GRUB_CMDLINE_LINUX key in the \\\"/etc/default/grub\\\" file and then rebuild the \\\"grub.cfg\\\" file:\\n\\nfips=1\\n\\nChanges to \\\"/etc/default/grub\\\" require rebuilding the \\\"grub.cfg\\\" file as follows:\\n\\nOn BIOS-based machines, use the following command:\\n\\n# grub2-mkconfig -o /boot/grub2/grub.cfg\\n\\nOn UEFI-based machines, use the following command:\\n\\n# grub2-mkconfig -o /boot/efi/EFI/redhat/grub.cfg\\n\\nIf /boot or /boot/efi reside on separate partitions, the kernel parameter boot=<partition of /boot or /boot/efi> must be added to the kernel command line. You can identify a partition by running the df /boot or df /boot/efi command:\\n\\n# df /boot\\nFilesystem 1K-blocks Used Available Use% Mounted on\\n/dev/sda1 495844 53780 416464 12% /boot\\n\\nTo ensure the \\\"boot=\\\" configuration option will work even if device naming changes occur between boots, identify the universally unique identifier (UUID) of the partition with the following command:\\n\\n# blkid /dev/sda1\\n/dev/sda1: UUID=\\\"05c000f1-a213-759e-c7a2-f11b7424c797\\\" TYPE=\\\"ext4\\\"\\n\\nFor the example above, append the following string to the kernel command line:\\n\\nboot=UUID=05c000f1-a213-759e-c7a2-f11b7424c797\\n\\nIf the file /etc/system-fips does not exists, recreate it:\\n\\n# touch /etc/ system-fips\\n\\nReboot the system for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-36310r602640_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-36310r602640_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:126\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000381" + ], + "nist": [ + "CM-7 a" + ], + "severity": "high", + "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\\n\\nExamples of non-essential capabilities include, but are not limited to, games, software packages, tools, and demonstration software not related to requirements or providing a wide array of functionality not required for every mission, but which cannot be disabled.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204502", + "group_title": "SRG-OS-000095-GPOS-00049", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204502r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:1292", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4626r88699_fix", + "fixtext_fixref": "F-4626r88699_fix", + "ident": [ + { + "text": "CCE-27165-0", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72077", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86701", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000381", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-021710", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204497r603261_rule", + "time": "2021-12-17T10:39:39", + "severity": "high", + "version": "RHEL-07-021350", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-80359-3", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86691", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72067", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000068", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001199", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002450", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002476", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:126", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must not have the telnet-server package installed.", + "id": "V-204502", + "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\n\nExamples of non-essential capabilities include, but are not limited to, games, software packages, tools, and demonstration software not related to requirements or providing a wide array of functionality not required for every mission, but which cannot be disabled.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:1292", + "label": "check" + }, + { + "data": "Configure the operating system to disable non-essential capabilities by removing the telnet-server package from the system with the following command:\n\n# yum remove telnet-server", + "label": "fix" + } + ], + "impact": 0.7, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204502\",\n \"title\": {\n \"text\": \"SRG-OS-000095-GPOS-00049\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204502r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"high\",\n \"version\": {\n \"text\": \"RHEL-07-021710\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must not have the telnet-server package installed.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\\n\\nExamples of non-essential capabilities include, but are not limited to, games, software packages, tools, and demonstration software not related to requirements or providing a wide array of functionality not required for every mission, but which cannot be disabled.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-27165-0\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-72077\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86701\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000381\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to disable non-essential capabilities by removing the telnet-server package from the system with the following command:\\n\\n# yum remove telnet-server\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4626r88699_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4626r88699_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:1292\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:39:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000126", + "CCI-000131" + ], + "nist": [ + "AU-2 c", + "AU-3 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without establishing what type of events occurred, it would be difficult to establish, correlate, and investigate the events leading up to an outage or attack.\\n\\nAudit record content that may be necessary to satisfy this requirement includes, for example, time stamps, source and destination addresses, user/process identifiers, event descriptions, success/fail indications, filenames involved, and access control or flow control rules invoked.\\n\\nAssociating event types with detected events in the operating system audit logs provides a means of investigating an attack; recognizing resource utilization or capacity thresholds; or identifying an improperly configured operating system.\\n\\nSatisfies: SRG-OS-000038-GPOS-00016, SRG-OS-000039-GPOS-00017, SRG-OS-000042-GPOS-00021, SRG-OS-000254-GPOS-00095, SRG-OS-000255-GPOS-00096\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204503", + "group_title": "SRG-OS-000038-GPOS-00016", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204503r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:86703", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-36311r602643_fix", + "fixtext_fixref": "F-36311r602643_fix", + "ident": [ + { + "text": "CCE-27407-6", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86703", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72079", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000126", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000131", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-030000", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204502r603261_rule", + "time": "2021-12-17T10:39:39", + "severity": "high", + "version": "RHEL-07-021710", + "weight": "10.000000", + "result": "pass", + "ident": [ + { + "text": "CCE-27165-0", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72077", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86701", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000381", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:1292", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that auditing is configured to produce records containing information to establish what type of events occurred, where the events occurred, the source of the events, and the outcome of the events. These audit records must also identify individual identities of group account users.", + "id": "V-204503", + "desc": "Without establishing what type of events occurred, it would be difficult to establish, correlate, and investigate the events leading up to an outage or attack.\n\nAudit record content that may be necessary to satisfy this requirement includes, for example, time stamps, source and destination addresses, user/process identifiers, event descriptions, success/fail indications, filenames involved, and access control or flow control rules invoked.\n\nAssociating event types with detected events in the operating system audit logs provides a means of investigating an attack; recognizing resource utilization or capacity thresholds; or identifying an improperly configured operating system.\n\nSatisfies: SRG-OS-000038-GPOS-00016, SRG-OS-000039-GPOS-00017, SRG-OS-000042-GPOS-00021, SRG-OS-000254-GPOS-00095, SRG-OS-000255-GPOS-00096", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:86703", + "label": "check" + }, + { + "data": "Configure the operating system to produce audit records containing information to establish when (date and time) the events occurred.\n\nEnable the auditd service with the following command:\n\n# systemctl start auditd.service", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204503\",\n \"title\": {\n \"text\": \"SRG-OS-000038-GPOS-00016\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204503r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-030000\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must be configured so that auditing is configured to produce records containing information to establish what type of events occurred, where the events occurred, the source of the events, and the outcome of the events. These audit records must also identify individual identities of group account users.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without establishing what type of events occurred, it would be difficult to establish, correlate, and investigate the events leading up to an outage or attack.\\n\\nAudit record content that may be necessary to satisfy this requirement includes, for example, time stamps, source and destination addresses, user/process identifiers, event descriptions, success/fail indications, filenames involved, and access control or flow control rules invoked.\\n\\nAssociating event types with detected events in the operating system audit logs provides a means of investigating an attack; recognizing resource utilization or capacity thresholds; or identifying an improperly configured operating system.\\n\\nSatisfies: SRG-OS-000038-GPOS-00016, SRG-OS-000039-GPOS-00017, SRG-OS-000042-GPOS-00021, SRG-OS-000254-GPOS-00095, SRG-OS-000255-GPOS-00096</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-27407-6\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86703\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72079\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000126\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000131\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to produce audit records containing information to establish when (date and time) the events occurred.\\n\\nEnable the auditd service with the following command:\\n\\n# systemctl start auditd.service\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-36311r602643_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-36311r602643_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:86703\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:39:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000139" + ], + "nist": [ + "AU-5 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"It is critical for the appropriate personnel to be aware if a system is at risk of failing to process audit logs as required. Without this notification, the security personnel may be unaware of an impending failure of the audit capability, and system operation may be adversely affected.\\n\\nAudit processing failures include software/hardware errors, failures in the audit capturing mechanisms, and audit storage capacity being reached or exceeded.\\n\\nThis requirement applies to each audit data storage repository (i.e., distinct information system component where audit records are stored), the centralized audit storage capacity of organizations (i.e., all audit data storage repositories combined), or both.\\n\\nSatisfies: SRG-OS-000046-GPOS-00022, SRG-OS-000047-GPOS-00023\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204504", + "group_title": "SRG-OS-000046-GPOS-00022", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204504r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:776", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4628r462467_fix", + "fixtext_fixref": "F-4628r462467_fix", + "ident": [ + { + "text": "CCE-80381-7", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72081", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86705", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000139", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-030010", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204503r603261_rule", + "time": "2021-12-17T10:39:39", + "severity": "medium", + "version": "RHEL-07-030000", + "weight": "10.000000", + "result": "pass", + "ident": [ + { + "text": "CCE-27407-6", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86703", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72079", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000126", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000131", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:86703", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must shut down upon audit processing failure, unless availability is an overriding concern. If availability is a concern, the system must alert the designated staff (System Administrator [SA] and Information System Security Officer [ISSO] at a minimum) in the event of an audit processing failure.", + "id": "V-204504", + "desc": "It is critical for the appropriate personnel to be aware if a system is at risk of failing to process audit logs as required. Without this notification, the security personnel may be unaware of an impending failure of the audit capability, and system operation may be adversely affected.\n\nAudit processing failures include software/hardware errors, failures in the audit capturing mechanisms, and audit storage capacity being reached or exceeded.\n\nThis requirement applies to each audit data storage repository (i.e., distinct information system component where audit records are stored), the centralized audit storage capacity of organizations (i.e., all audit data storage repositories combined), or both.\n\nSatisfies: SRG-OS-000046-GPOS-00022, SRG-OS-000047-GPOS-00023", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:776", + "label": "check" + }, + { + "data": "Configure the operating system to shut down in the event of an audit processing failure.\n\nAdd or correct the option to shut down the operating system with the following command:\n\n# auditctl -f 2\n\nEdit the \"/etc/audit/rules.d/audit.rules\" file and add the following line:\n\n-f 2\n\nIf availability has been determined to be more important, and this decision is documented with the ISSO, configure the operating system to notify system administration staff and ISSO staff in the event of an audit processing failure with the following command:\n\n# auditctl -f 1\n\nEdit the \"/etc/audit/rules.d/audit.rules\" file and add the following line:\n\n-f 1\n\nKernel log monitoring must also be configured to properly alert designated staff.\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204504\",\n \"title\": {\n \"text\": \"SRG-OS-000046-GPOS-00022\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204504r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-030010\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must shut down upon audit processing failure, unless availability is an overriding concern. If availability is a concern, the system must alert the designated staff (System Administrator [SA] and Information System Security Officer [ISSO] at a minimum) in the event of an audit processing failure.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>It is critical for the appropriate personnel to be aware if a system is at risk of failing to process audit logs as required. Without this notification, the security personnel may be unaware of an impending failure of the audit capability, and system operation may be adversely affected.\\n\\nAudit processing failures include software/hardware errors, failures in the audit capturing mechanisms, and audit storage capacity being reached or exceeded.\\n\\nThis requirement applies to each audit data storage repository (i.e., distinct information system component where audit records are stored), the centralized audit storage capacity of organizations (i.e., all audit data storage repositories combined), or both.\\n\\nSatisfies: SRG-OS-000046-GPOS-00022, SRG-OS-000047-GPOS-00023</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-80381-7\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-72081\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86705\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000139\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to shut down in the event of an audit processing failure.\\n\\nAdd or correct the option to shut down the operating system with the following command:\\n\\n# auditctl -f 2\\n\\nEdit the \\\"/etc/audit/rules.d/audit.rules\\\" file and add the following line:\\n\\n-f 2\\n\\nIf availability has been determined to be more important, and this decision is documented with the ISSO, configure the operating system to notify system administration staff and ISSO staff in the event of an audit processing failure with the following command:\\n\\n# auditctl -f 1\\n\\nEdit the \\\"/etc/audit/rules.d/audit.rules\\\" file and add the following line:\\n\\n-f 1\\n\\nKernel log monitoring must also be configured to properly alert designated staff.\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4628r462467_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4628r462467_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:776\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001851" + ], + "nist": [ + "AU-4 (1)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\\n\\nOff-loading is a common process in information systems with limited audit storage capacity.\\n\\nOne method of off-loading audit logs in Red Hat Enterprise Linux is with the use of the audisp-remote dameon. Without the configuration of the \\\"au-remote\\\" plugin, the audisp-remote daemon will not off load the logs from the system being audited.\\n\\nSatisfies: SRG-OS-000342-GPOS-00133, SRG-OS-000479-GPOS-00224\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204506", + "group_title": "SRG-OS-000342-GPOS-00133", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204506r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:95729", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4630r462470_fix", + "fixtext_fixref": "F-4630r462470_fix", + "ident": [ + { + "text": "SV-95729", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-81017", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001851", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-030201", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204504r603261_rule", + "time": "2021-12-17T10:39:39", + "severity": "medium", + "version": "RHEL-07-030010", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-80381-7", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72081", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86705", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000139", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:776", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured to off-load audit logs onto a different system or storage media from the system being audited.", + "id": "V-204506", + "desc": "Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\n\nOff-loading is a common process in information systems with limited audit storage capacity.\n\nOne method of off-loading audit logs in Red Hat Enterprise Linux is with the use of the audisp-remote dameon. Without the configuration of the \"au-remote\" plugin, the audisp-remote daemon will not off load the logs from the system being audited.\n\nSatisfies: SRG-OS-000342-GPOS-00133, SRG-OS-000479-GPOS-00224", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:95729", + "label": "check" + }, + { + "data": "Edit the /etc/audisp/plugins.d/au-remote.conf file and add or update the following values:\n\ndirection = out\npath = /sbin/audisp-remote\ntype = always\n\nThe audit daemon must be restarted for changes to take effect:\n\n# service auditd restart", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204506\",\n \"title\": {\n \"text\": \"SRG-OS-000342-GPOS-00133\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204506r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-030201\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must be configured to off-load audit logs onto a different system or storage media from the system being audited.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\\n\\nOff-loading is a common process in information systems with limited audit storage capacity.\\n\\nOne method of off-loading audit logs in Red Hat Enterprise Linux is with the use of the audisp-remote dameon. Without the configuration of the \\\"au-remote\\\" plugin, the audisp-remote daemon will not off load the logs from the system being audited.\\n\\nSatisfies: SRG-OS-000342-GPOS-00133, SRG-OS-000479-GPOS-00224</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"SV-95729\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-81017\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-001851\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Edit the /etc/audisp/plugins.d/au-remote.conf file and add or update the following values:\\n\\ndirection = out\\npath = /sbin/audisp-remote\\ntype = always\\n\\nThe audit daemon must be restarted for changes to take effect:\\n\\n# service auditd restart\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4630r462470_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4630r462470_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:95729\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001851" + ], + "nist": [ + "AU-4 (1)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\\n\\nOff-loading is a common process in information systems with limited audit storage capacity.\\n\\nOne method of off-loading audit logs in Red Hat Enterprise Linux is with the use of the audisp-remote dameon. When the remote buffer is full, audit logs will not be collected and sent to the central log server.\\n\\nSatisfies: SRG-OS-000342-GPOS-00133, SRG-OS-000479-GPOS-00224\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204507", + "group_title": "SRG-OS-000342-GPOS-00133", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204507r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:95731", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-36312r602646_fix", + "fixtext_fixref": "F-36312r602646_fix", + "ident": [ + { + "text": "V-81019", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-95731", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001851", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-030210", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204506r603261_rule", + "time": "2021-12-17T10:39:39", + "severity": "medium", + "version": "RHEL-07-030201", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "SV-95729", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-81017", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001851", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:95729", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must take appropriate action when the remote logging buffer is full.", + "id": "V-204507", + "desc": "Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\n\nOff-loading is a common process in information systems with limited audit storage capacity.\n\nOne method of off-loading audit logs in Red Hat Enterprise Linux is with the use of the audisp-remote dameon. When the remote buffer is full, audit logs will not be collected and sent to the central log server.\n\nSatisfies: SRG-OS-000342-GPOS-00133, SRG-OS-000479-GPOS-00224", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:95731", + "label": "check" + }, + { + "data": "Edit the /etc/audisp/audispd.conf file and add or update the \"overflow_action\" option:\n\noverflow_action = syslog\n\nThe audit daemon must be restarted for changes to take effect:\n\n# service auditd restart", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204507\",\n \"title\": {\n \"text\": \"SRG-OS-000342-GPOS-00133\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204507r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-030210\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must take appropriate action when the remote logging buffer is full.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\\n\\nOff-loading is a common process in information systems with limited audit storage capacity.\\n\\nOne method of off-loading audit logs in Red Hat Enterprise Linux is with the use of the audisp-remote dameon. When the remote buffer is full, audit logs will not be collected and sent to the central log server.\\n\\nSatisfies: SRG-OS-000342-GPOS-00133, SRG-OS-000479-GPOS-00224</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"V-81019\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-95731\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-001851\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Edit the /etc/audisp/audispd.conf file and add or update the \\\"overflow_action\\\" option:\\n\\noverflow_action = syslog\\n\\nThe audit daemon must be restarted for changes to take effect:\\n\\n# service auditd restart\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-36312r602646_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-36312r602646_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:95731\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:39:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001851" + ], + "nist": [ + "AU-4 (1)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\\n\\nOff-loading is a common process in information systems with limited audit storage capacity.\\n\\nOne method of off-loading audit logs in Red Hat Enterprise Linux is with the use of the audisp-remote dameon. When audit logs are not labeled before they are sent to a central log server, the audit data will not be able to be analyzed and tied back to the correct system.\\n\\nSatisfies: SRG-OS-000342-GPOS-00133, SRG-OS-000479-GPOS-00224\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204508", + "group_title": "SRG-OS-000342-GPOS-00133", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204508r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:95733", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-36313r602649_fix", + "fixtext_fixref": "F-36313r602649_fix", + "ident": [ + { + "text": "SV-95733", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-81021", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001851", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-030211", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204507r603261_rule", + "time": "2021-12-17T10:39:39", + "severity": "medium", + "version": "RHEL-07-030210", + "weight": "10.000000", + "result": "pass", + "ident": [ + { + "text": "V-81019", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-95731", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001851", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:95731", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must label all off-loaded audit logs before sending them to the central log server.", + "id": "V-204508", + "desc": "Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\n\nOff-loading is a common process in information systems with limited audit storage capacity.\n\nOne method of off-loading audit logs in Red Hat Enterprise Linux is with the use of the audisp-remote dameon. When audit logs are not labeled before they are sent to a central log server, the audit data will not be able to be analyzed and tied back to the correct system.\n\nSatisfies: SRG-OS-000342-GPOS-00133, SRG-OS-000479-GPOS-00224", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:95733", + "label": "check" + }, + { + "data": "Edit the /etc/audisp/audispd.conf file and add or update the \"name_format\" option:\n\nname_format = hostname\n\nThe audit daemon must be restarted for changes to take effect:\n\n# service auditd restart", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204508\",\n \"title\": {\n \"text\": \"SRG-OS-000342-GPOS-00133\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204508r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-030211\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must label all off-loaded audit logs before sending them to the central log server.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\\n\\nOff-loading is a common process in information systems with limited audit storage capacity.\\n\\nOne method of off-loading audit logs in Red Hat Enterprise Linux is with the use of the audisp-remote dameon. When audit logs are not labeled before they are sent to a central log server, the audit data will not be able to be analyzed and tied back to the correct system.\\n\\nSatisfies: SRG-OS-000342-GPOS-00133, SRG-OS-000479-GPOS-00224</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"SV-95733\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-81021\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-001851\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Edit the /etc/audisp/audispd.conf file and add or update the \\\"name_format\\\" option:\\n\\nname_format = hostname\\n\\nThe audit daemon must be restarted for changes to take effect:\\n\\n# service auditd restart\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-36313r602649_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-36313r602649_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:95733\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:39:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001851" + ], + "nist": [ + "AU-4 (1)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\\n\\nOff-loading is a common process in information systems with limited audit storage capacity.\\n\\nSatisfies: SRG-OS-000342-GPOS-00133, SRG-OS-000479-GPOS-00224\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204509", + "group_title": "SRG-OS-000342-GPOS-00133", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204509r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:86707", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4633r88720_fix", + "fixtext_fixref": "F-4633r88720_fix", + "ident": [ + { + "text": "V-72083", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86707", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001851", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-030300", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204508r603261_rule", + "time": "2021-12-17T10:39:39", + "severity": "medium", + "version": "RHEL-07-030211", + "weight": "10.000000", + "result": "pass", + "ident": [ + { + "text": "SV-95733", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-81021", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001851", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:95733", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must off-load audit records onto a different system or media from the system being audited.", + "id": "V-204509", + "desc": "Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\n\nOff-loading is a common process in information systems with limited audit storage capacity.\n\nSatisfies: SRG-OS-000342-GPOS-00133, SRG-OS-000479-GPOS-00224", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:86707", + "label": "check" + }, + { + "data": "Configure the operating system to off-load audit records onto a different system or media from the system being audited.\n\nSet the remote server option in \"/etc/audisp/audisp-remote.conf\" with the IP address of the log aggregation server.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204509\",\n \"title\": {\n \"text\": \"SRG-OS-000342-GPOS-00133\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204509r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-030300\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must off-load audit records onto a different system or media from the system being audited.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\\n\\nOff-loading is a common process in information systems with limited audit storage capacity.\\n\\nSatisfies: SRG-OS-000342-GPOS-00133, SRG-OS-000479-GPOS-00224</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"V-72083\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86707\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-001851\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to off-load audit records onto a different system or media from the system being audited.\\n\\nSet the remote server option in \\\"/etc/audisp/audisp-remote.conf\\\" with the IP address of the log aggregation server.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4633r88720_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4633r88720_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:86707\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001851" + ], + "nist": [ + "AU-4 (1)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\\n\\nOff-loading is a common process in information systems with limited audit storage capacity.\\n\\nSatisfies: SRG-OS-000342-GPOS-00133, SRG-OS-000479-GPOS-00224\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204510", + "group_title": "SRG-OS-000342-GPOS-00133", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204510r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:86709", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4634r88723_fix", + "fixtext_fixref": "F-4634r88723_fix", + "ident": [ + { + "text": "V-72085", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86709", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001851", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-030310", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204509r603261_rule", + "time": "2021-12-17T10:39:39", + "severity": "medium", + "version": "RHEL-07-030300", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "V-72083", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86707", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001851", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:86707", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must encrypt the transfer of audit records off-loaded onto a different system or media from the system being audited.", + "id": "V-204510", + "desc": "Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\n\nOff-loading is a common process in information systems with limited audit storage capacity.\n\nSatisfies: SRG-OS-000342-GPOS-00133, SRG-OS-000479-GPOS-00224", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:86709", + "label": "check" + }, + { + "data": "Configure the operating system to encrypt the transfer of off-loaded audit records onto a different system or media from the system being audited.\n\nUncomment the \"enable_krb5\" option in \"/etc/audisp/audisp-remote.conf\" and set it with the following line:\n\nenable_krb5 = yes", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204510\",\n \"title\": {\n \"text\": \"SRG-OS-000342-GPOS-00133\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204510r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-030310\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must encrypt the transfer of audit records off-loaded onto a different system or media from the system being audited.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\\n\\nOff-loading is a common process in information systems with limited audit storage capacity.\\n\\nSatisfies: SRG-OS-000342-GPOS-00133, SRG-OS-000479-GPOS-00224</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"V-72085\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86709\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-001851\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to encrypt the transfer of off-loaded audit records onto a different system or media from the system being audited.\\n\\nUncomment the \\\"enable_krb5\\\" option in \\\"/etc/audisp/audisp-remote.conf\\\" and set it with the following line:\\n\\nenable_krb5 = yes\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4634r88723_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4634r88723_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:86709\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001851" + ], + "nist": [ + "AU-4 (1)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Taking appropriate action in case of a filled audit storage volume will minimize the possibility of losing audit records.\\nOne method of off-loading audit logs in Red Hat Enterprise Linux is with the use of the audisp-remote dameon.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204511", + "group_title": "SRG-OS-000342-GPOS-00133", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204511r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:86711", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-36314r602652_fix", + "fixtext_fixref": "F-36314r602652_fix", + "ident": [ + { + "text": "V-72087", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86711", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001851", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-030320", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204510r603261_rule", + "time": "2021-12-17T10:39:39", + "severity": "medium", + "version": "RHEL-07-030310", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "V-72085", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86709", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001851", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:86709", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that the audit system takes appropriate action when the audit storage volume is full.", + "id": "V-204511", + "desc": "Taking appropriate action in case of a filled audit storage volume will minimize the possibility of losing audit records.\nOne method of off-loading audit logs in Red Hat Enterprise Linux is with the use of the audisp-remote dameon.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:86711", + "label": "check" + }, + { + "data": "Configure the action the operating system takes if the disk the audit records are written to becomes full.\n\nUncomment or edit the \"disk_full_action\" option in \"/etc/audisp/audisp-remote.conf\" and set it to \"syslog\", \"single\", or \"halt\", such as the following line:\n\ndisk_full_action = single", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204511\",\n \"title\": {\n \"text\": \"SRG-OS-000342-GPOS-00133\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204511r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-030320\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must be configured so that the audit system takes appropriate action when the audit storage volume is full.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Taking appropriate action in case of a filled audit storage volume will minimize the possibility of losing audit records.\\nOne method of off-loading audit logs in Red Hat Enterprise Linux is with the use of the audisp-remote dameon.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"V-72087\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86711\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-001851\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the action the operating system takes if the disk the audit records are written to becomes full.\\n\\nUncomment or edit the \\\"disk_full_action\\\" option in \\\"/etc/audisp/audisp-remote.conf\\\" and set it to \\\"syslog\\\", \\\"single\\\", or \\\"halt\\\", such as the following line:\\n\\ndisk_full_action = single\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-36314r602652_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-36314r602652_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:86711\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001851" + ], + "nist": [ + "AU-4 (1)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Taking appropriate action when there is an error sending audit records to a remote system will minimize the possibility of losing audit records.\\nOne method of off-loading audit logs in Red Hat Enterprise Linux is with the use of the audisp-remote dameon.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204512", + "group_title": "SRG-OS-000342-GPOS-00133", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204512r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:87815", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-36315r602655_fix", + "fixtext_fixref": "F-36315r602655_fix", + "ident": [ + { + "text": "V-73163", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-87815", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001851", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-030321", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204511r603261_rule", + "time": "2021-12-17T10:39:39", + "severity": "medium", + "version": "RHEL-07-030320", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "V-72087", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86711", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001851", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:86711", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that the audit system takes appropriate action when there is an error sending audit records to a remote system.", + "id": "V-204512", + "desc": "Taking appropriate action when there is an error sending audit records to a remote system will minimize the possibility of losing audit records.\nOne method of off-loading audit logs in Red Hat Enterprise Linux is with the use of the audisp-remote dameon.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:87815", + "label": "check" + }, + { + "data": "Configure the action the operating system takes if there is an error sending audit records to a remote system.\n\nUncomment the \"network_failure_action\" option in \"/etc/audisp/audisp-remote.conf\" and set it to \"syslog\", \"single\", or \"halt\".\n\nnetwork_failure_action = syslog", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204512\",\n \"title\": {\n \"text\": \"SRG-OS-000342-GPOS-00133\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204512r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-030321\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must be configured so that the audit system takes appropriate action when there is an error sending audit records to a remote system.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Taking appropriate action when there is an error sending audit records to a remote system will minimize the possibility of losing audit records.\\nOne method of off-loading audit logs in Red Hat Enterprise Linux is with the use of the audisp-remote dameon.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"V-73163\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-87815\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-001851\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the action the operating system takes if there is an error sending audit records to a remote system.\\n\\nUncomment the \\\"network_failure_action\\\" option in \\\"/etc/audisp/audisp-remote.conf\\\" and set it to \\\"syslog\\\", \\\"single\\\", or \\\"halt\\\".\\n\\nnetwork_failure_action = syslog\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-36315r602655_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-36315r602655_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:87815\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001855" + ], + "nist": [ + "AU-5 (1)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"If security personnel are not notified immediately when the threshold for the repository maximum audit record storage capacity is reached, they are unable to expand the audit record storage capacity before records are lost.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204514", + "group_title": "SRG-OS-000343-GPOS-00134", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204514r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:86715", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4638r88735_fix", + "fixtext_fixref": "F-4638r88735_fix", + "ident": [ + { + "text": "V-72091", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86715", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001855", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-030340", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204512r603261_rule", + "time": "2021-12-17T10:39:39", + "severity": "medium", + "version": "RHEL-07-030321", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "V-73163", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-87815", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001851", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:87815", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must immediately notify the System Administrator (SA) and Information System Security Officer (ISSO) (at a minimum) via email when the threshold for the repository maximum audit record storage capacity is reached.", + "id": "V-204514", + "desc": "If security personnel are not notified immediately when the threshold for the repository maximum audit record storage capacity is reached, they are unable to expand the audit record storage capacity before records are lost.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:86715", + "label": "check" + }, + { + "data": "Configure the operating system to immediately notify the SA and ISSO (at a minimum) when the threshold for the repository maximum audit record storage capacity is reached.\n\nUncomment or edit the \"space_left_action\" keyword in \"/etc/audit/auditd.conf\" and set it to \"email\". \n \nspace_left_action = email", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204514\",\n \"title\": {\n \"text\": \"SRG-OS-000343-GPOS-00134\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204514r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-030340\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must immediately notify the System Administrator (SA) and Information System Security Officer (ISSO) (at a minimum) via email when the threshold for the repository maximum audit record storage capacity is reached.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>If security personnel are not notified immediately when the threshold for the repository maximum audit record storage capacity is reached, they are unable to expand the audit record storage capacity before records are lost.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"V-72091\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86715\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-001855\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to immediately notify the SA and ISSO (at a minimum) when the threshold for the repository maximum audit record storage capacity is reached.\\n\\nUncomment or edit the \\\"space_left_action\\\" keyword in \\\"/etc/audit/auditd.conf\\\" and set it to \\\"email\\\". \\n \\nspace_left_action = email\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4638r88735_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4638r88735_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:86715\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001855" + ], + "nist": [ + "AU-5 (1)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"If security personnel are not notified immediately when the threshold for the repository maximum audit record storage capacity is reached, they are unable to expand the audit record storage capacity before records are lost.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204515", + "group_title": "SRG-OS-000343-GPOS-00134", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204515r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-export": { + "export-name": "oval:mil.disa.stig.rhel7:var:3821", + "value-id": "xccdf_mil.disa.stig_value_var_auditd_action_mail_acct" + }, + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:885", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4639r88738_fix", + "fixtext_fixref": "F-4639r88738_fix", + "ident": [ + { + "text": "CCE-27394-6", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72093", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86717", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001855", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-030350", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204514r603261_rule", + "time": "2021-12-17T10:39:39", + "severity": "medium", + "version": "RHEL-07-030340", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "V-72091", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86715", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001855", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:86715", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must immediately notify the System Administrator (SA) and Information System Security Officer (ISSO) (at a minimum) when the threshold for the repository maximum audit record storage capacity is reached.", + "id": "V-204515", + "desc": "If security personnel are not notified immediately when the threshold for the repository maximum audit record storage capacity is reached, they are unable to expand the audit record storage capacity before records are lost.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:885", + "label": "check" + }, + { + "data": "Configure the operating system to immediately notify the SA and ISSO (at a minimum) when the threshold for the repository maximum audit record storage capacity is reached.\n\nUncomment or edit the \"action_mail_acct\" keyword in \"/etc/audit/auditd.conf\" and set it to root and any other accounts associated with security personnel. \n \naction_mail_acct = root", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204515\",\n \"title\": {\n \"text\": \"SRG-OS-000343-GPOS-00134\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204515r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-030350\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must immediately notify the System Administrator (SA) and Information System Security Officer (ISSO) (at a minimum) when the threshold for the repository maximum audit record storage capacity is reached.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>If security personnel are not notified immediately when the threshold for the repository maximum audit record storage capacity is reached, they are unable to expand the audit record storage capacity before records are lost.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-27394-6\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-72093\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86717\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-001855\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to immediately notify the SA and ISSO (at a minimum) when the threshold for the repository maximum audit record storage capacity is reached.\\n\\nUncomment or edit the \\\"action_mail_acct\\\" keyword in \\\"/etc/audit/auditd.conf\\\" and set it to root and any other accounts associated with security personnel. \\n \\naction_mail_acct = root\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4639r88738_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4639r88738_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-export\": {\n \"export-name\": \"oval:mil.disa.stig.rhel7:var:3821\",\n \"value-id\": \"xccdf_mil.disa.stig_value_var_auditd_action_mail_acct\"\n },\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:885\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:39:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-002234" + ], + "nist": [ + "AC-6 (9)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Misuse of privileged functions, either intentionally or unintentionally by authorized users, or by unauthorized external entities that have compromised information system accounts, is a serious and ongoing concern and can have significant adverse impacts on organizations. Auditing the use of privileged functions is one way to detect such misuse and identify the risk from insider threats and the advanced persistent threat.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204516", + "group_title": "SRG-OS-000327-GPOS-00127", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204516r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:710", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4640r88741_fix", + "fixtext_fixref": "F-4640r88741_fix", + "ident": [ + { + "text": "V-72095", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86719", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-002234", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-030360", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204515r603261_rule", + "time": "2021-12-17T10:39:39", + "severity": "medium", + "version": "RHEL-07-030350", + "weight": "10.000000", + "result": "pass", + "ident": [ + { + "text": "CCE-27394-6", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72093", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86717", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001855", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-export": { + "export-name": "oval:mil.disa.stig.rhel7:var:3821", + "value-id": "xccdf_mil.disa.stig_value_var_auditd_action_mail_acct" + }, + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:885", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + }, + "value": { + "id": "xccdf_mil.disa.stig_value_var_auditd_action_mail_acct", + "type": "string", + "title": { + "text": "Account for auditd to send email when actions occurs", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "description": { + "text": "The setting for action_mail_acct in /etc/audit/auditd.conf", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "value": [ + "root", + { + "text": "root", + "selector": "root" + }, + { + "text": "admin", + "selector": "admin" + } + ] + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all executions of privileged functions.", + "id": "V-204516", + "desc": "Misuse of privileged functions, either intentionally or unintentionally by authorized users, or by unauthorized external entities that have compromised information system accounts, is a serious and ongoing concern and can have significant adverse impacts on organizations. Auditing the use of privileged functions is one way to detect such misuse and identify the risk from insider threats and the advanced persistent threat.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:710", + "label": "check" + }, + { + "data": "Configure the operating system to audit the execution of privileged functions.\n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S execve -C uid!=euid -F euid=0 -k setuid\n-a always,exit -F arch=b64 -S execve -C uid!=euid -F euid=0 -k setuid\n-a always,exit -F arch=b32 -S execve -C gid!=egid -F egid=0 -k setgid\n-a always,exit -F arch=b64 -S execve -C gid!=egid -F egid=0 -k setgid\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204516\",\n \"title\": {\n \"text\": \"SRG-OS-000327-GPOS-00127\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204516r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-030360\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must audit all executions of privileged functions.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Misuse of privileged functions, either intentionally or unintentionally by authorized users, or by unauthorized external entities that have compromised information system accounts, is a serious and ongoing concern and can have significant adverse impacts on organizations. Auditing the use of privileged functions is one way to detect such misuse and identify the risk from insider threats and the advanced persistent threat.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"V-72095\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86719\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-002234\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to audit the execution of privileged functions.\\n\\nAdd or update the following rules in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F arch=b32 -S execve -C uid!=euid -F euid=0 -k setuid\\n-a always,exit -F arch=b64 -S execve -C uid!=euid -F euid=0 -k setuid\\n-a always,exit -F arch=b32 -S execve -C gid!=egid -F egid=0 -k setgid\\n-a always,exit -F arch=b64 -S execve -C gid!=egid -F egid=0 -k setgid\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4640r88741_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4640r88741_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:710\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000126", + "CCI-000172" + ], + "nist": [ + "AU-2 c", + "AU-12 c" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000474-GPOS-00219\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204517", + "group_title": "SRG-OS-000064-GPOS-00033", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204517r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:552", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4641r462559_fix", + "fixtext_fixref": "F-4641r462559_fix", + "ident": [ + { + "text": "CCE-27364-9", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86721", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72097", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000126", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-030370", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204516r603261_rule", + "time": "2021-12-17T10:39:39", + "severity": "medium", + "version": "RHEL-07-030360", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "V-72095", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86719", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-002234", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:710", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the chown syscall.", + "id": "V-204517", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000474-GPOS-00219", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:552", + "label": "check" + }, + { + "data": "Add or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S chown -F auid>=1000 -F auid!=unset -k perm_mod\n\n-a always,exit -F arch=b64 -S chown -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204517\",\n \"title\": {\n \"text\": \"SRG-OS-000064-GPOS-00033\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204517r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-030370\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must audit all uses of the chown syscall.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000474-GPOS-00219</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-27364-9\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86721\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72097\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000126\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Add or update the following rule in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F arch=b32 -S chown -F auid>=1000 -F auid!=unset -k perm_mod\\n\\n-a always,exit -F arch=b64 -S chown -F auid>=1000 -F auid!=unset -k perm_mod\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4641r462559_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4641r462559_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:552\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000126", + "CCI-000172" + ], + "nist": [ + "AU-2 c", + "AU-12 c" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000474-GPOS-00219\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204518", + "group_title": "SRG-OS-000064-GPOS-00033", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204518r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:567", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4642r462562_fix", + "fixtext_fixref": "F-4642r462562_fix", + "ident": [ + { + "text": "CCE-27356-5", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86723", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72099", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000126", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-030380", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204517r603261_rule", + "time": "2021-12-17T10:39:39", + "severity": "medium", + "version": "RHEL-07-030370", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-27364-9", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86721", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72097", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000126", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:552", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the fchown syscall.", + "id": "V-204518", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000474-GPOS-00219", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:567", + "label": "check" + }, + { + "data": "Add or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S fchown -F auid>=1000 -F auid!=unset -k perm_mod\n\n-a always,exit -F arch=b64 -S fchown -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204518\",\n \"title\": {\n \"text\": \"SRG-OS-000064-GPOS-00033\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204518r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-030380\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must audit all uses of the fchown syscall.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000474-GPOS-00219</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-27356-5\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86723\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72099\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000126\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Add or update the following rules in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F arch=b32 -S fchown -F auid>=1000 -F auid!=unset -k perm_mod\\n\\n-a always,exit -F arch=b64 -S fchown -F auid>=1000 -F auid!=unset -k perm_mod\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4642r462562_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4642r462562_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:567\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000126", + "CCI-000172" + ], + "nist": [ + "AU-2 c", + "AU-12 c" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000474-GPOS-00219\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204519", + "group_title": "SRG-OS-000064-GPOS-00033", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204519r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:587", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4643r462565_fix", + "fixtext_fixref": "F-4643r462565_fix", + "ident": [ + { + "text": "CCE-27083-5", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72101", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86725", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000126", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-030390", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204518r603261_rule", + "time": "2021-12-17T10:39:39", + "severity": "medium", + "version": "RHEL-07-030380", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-27356-5", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86723", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72099", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000126", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:567", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the lchown syscall.", + "id": "V-204519", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000474-GPOS-00219", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:587", + "label": "check" + }, + { + "data": "Add or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S lchown -F auid>=1000 -F auid!=unset -k perm_mod\n\n-a always,exit -F arch=b64 -S lchown -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204519\",\n \"title\": {\n \"text\": \"SRG-OS-000064-GPOS-00033\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204519r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-030390\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must audit all uses of the lchown syscall.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000474-GPOS-00219</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-27083-5\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-72101\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86725\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000126\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Add or update the following rules in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F arch=b32 -S lchown -F auid>=1000 -F auid!=unset -k perm_mod\\n\\n-a always,exit -F arch=b64 -S lchown -F auid>=1000 -F auid!=unset -k perm_mod\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4643r462565_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4643r462565_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:587\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000126", + "CCI-000172" + ], + "nist": [ + "AU-2 c", + "AU-12 c" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000474-GPOS-00219\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204520", + "group_title": "SRG-OS-000064-GPOS-00033", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204520r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:572", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4644r462568_fix", + "fixtext_fixref": "F-4644r462568_fix", + "ident": [ + { + "text": "CCE-27387-0", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72103", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86727", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000126", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-030400", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204519r603261_rule", + "time": "2021-12-17T10:39:39", + "severity": "medium", + "version": "RHEL-07-030390", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-27083-5", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72101", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86725", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000126", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:587", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the fchownat syscall.", + "id": "V-204520", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000474-GPOS-00219", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:572", + "label": "check" + }, + { + "data": "Add or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S fchownat -F auid>=1000 -F auid!=unset -k perm_mod\n\n-a always,exit -F arch=b64 -S fchownat -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204520\",\n \"title\": {\n \"text\": \"SRG-OS-000064-GPOS-00033\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204520r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-030400\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must audit all uses of the fchownat syscall.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000474-GPOS-00219</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-27387-0\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-72103\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86727\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000126\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Add or update the following rules in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F arch=b32 -S fchownat -F auid>=1000 -F auid!=unset -k perm_mod\\n\\n-a always,exit -F arch=b64 -S fchownat -F auid>=1000 -F auid!=unset -k perm_mod\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4644r462568_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4644r462568_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:572\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000172" + ], + "nist": [ + "AU-12 c" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204521", + "group_title": "SRG-OS-000458-GPOS-00203", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204521r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:546", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4645r462571_fix", + "fixtext_fixref": "F-4645r462571_fix", + "ident": [ + { + "text": "CCE-27339-1", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86729", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72105", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-030410", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204520r603261_rule", + "time": "2021-12-17T10:39:39", + "severity": "medium", + "version": "RHEL-07-030400", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-27387-0", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72103", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86727", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000126", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:572", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the chmod syscall.", + "id": "V-204521", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:546", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"chmod\" syscall occur.\n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S chmod -F auid>=1000 -F auid!=unset -k perm_mod\n\n-a always,exit -F arch=b64 -S chmod -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204521\",\n \"title\": {\n \"text\": \"SRG-OS-000458-GPOS-00203\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204521r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-030410\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must audit all uses of the chmod syscall.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-27339-1\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86729\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72105\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"chmod\\\" syscall occur.\\n\\nAdd or update the following rules in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F arch=b32 -S chmod -F auid>=1000 -F auid!=unset -k perm_mod\\n\\n-a always,exit -F arch=b64 -S chmod -F auid>=1000 -F auid!=unset -k perm_mod\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4645r462571_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4645r462571_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:546\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000172" + ], + "nist": [ + "AU-12 c" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204522", + "group_title": "SRG-OS-000458-GPOS-00203", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204522r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:557", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4646r462574_fix", + "fixtext_fixref": "F-4646r462574_fix", + "ident": [ + { + "text": "CCE-27393-8", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86731", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72107", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-030420", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204521r603261_rule", + "time": "2021-12-17T10:39:39", + "severity": "medium", + "version": "RHEL-07-030410", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-27339-1", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86729", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72105", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:546", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the fchmod syscall.", + "id": "V-204522", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:557", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"fchmod\" syscall occur.\n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S fchmod -F auid>=1000 -F auid!=unset -k perm_mod\n\n-a always,exit -F arch=b64 -S fchmod -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204522\",\n \"title\": {\n \"text\": \"SRG-OS-000458-GPOS-00203\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204522r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-030420\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must audit all uses of the fchmod syscall.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-27393-8\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86731\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72107\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"fchmod\\\" syscall occur.\\n\\nAdd or update the following rules in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F arch=b32 -S fchmod -F auid>=1000 -F auid!=unset -k perm_mod\\n\\n-a always,exit -F arch=b64 -S fchmod -F auid>=1000 -F auid!=unset -k perm_mod\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4646r462574_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4646r462574_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:557\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000172" + ], + "nist": [ + "AU-12 c" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204523", + "group_title": "SRG-OS-000458-GPOS-00203", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204523r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:562", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4647r462577_fix", + "fixtext_fixref": "F-4647r462577_fix", + "ident": [ + { + "text": "CCE-27388-8", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86733", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72109", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-030430", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204522r603261_rule", + "time": "2021-12-17T10:39:39", + "severity": "medium", + "version": "RHEL-07-030420", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-27393-8", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86731", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72107", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:557", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the fchmodat syscall.", + "id": "V-204523", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:562", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"fchmodat\" syscall occur.\n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S fchmodat -F auid>=1000 -F auid!=unset -k perm_mod\n\n-a always,exit -F arch=b64 -S fchmodat -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204523\",\n \"title\": {\n \"text\": \"SRG-OS-000458-GPOS-00203\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204523r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-030430\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must audit all uses of the fchmodat syscall.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-27388-8\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86733\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72109\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"fchmodat\\\" syscall occur.\\n\\nAdd or update the following rules in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F arch=b32 -S fchmodat -F auid>=1000 -F auid!=unset -k perm_mod\\n\\n-a always,exit -F arch=b64 -S fchmodat -F auid>=1000 -F auid!=unset -k perm_mod\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4647r462577_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4647r462577_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:562\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000172" + ], + "nist": [ + "AU-12 c" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204524", + "group_title": "SRG-OS-000458-GPOS-00203", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204524r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:607", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4648r462732_fix", + "fixtext_fixref": "F-4648r462732_fix", + "ident": [ + { + "text": "CCE-27213-8", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86735", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72111", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-030440", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204523r603261_rule", + "time": "2021-12-17T10:39:39", + "severity": "medium", + "version": "RHEL-07-030430", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-27388-8", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86733", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72109", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:562", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the setxattr syscall.", + "id": "V-204524", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:607", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"setxattr\" syscall occur.\n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S setxattr -F auid>=1000 -F auid!=unset -k perm_mod\n\n-a always,exit -F arch=b64 -S setxattr -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204524\",\n \"title\": {\n \"text\": \"SRG-OS-000458-GPOS-00203\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204524r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-030440\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must audit all uses of the setxattr syscall.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-27213-8\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86735\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72111\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"setxattr\\\" syscall occur.\\n\\nAdd or update the following rules in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F arch=b32 -S setxattr -F auid>=1000 -F auid!=unset -k perm_mod\\n\\n-a always,exit -F arch=b64 -S setxattr -F auid>=1000 -F auid!=unset -k perm_mod\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4648r462732_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4648r462732_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:607\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000172" + ], + "nist": [ + "AU-12 c" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204525", + "group_title": "SRG-OS-000458-GPOS-00203", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204525r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:582", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4649r462580_fix", + "fixtext_fixref": "F-4649r462580_fix", + "ident": [ + { + "text": "CCE-27389-6", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86737", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72113", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-030450", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204524r603261_rule", + "time": "2021-12-17T10:39:39", + "severity": "medium", + "version": "RHEL-07-030440", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-27213-8", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86735", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72111", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:607", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the fsetxattr syscall.", + "id": "V-204525", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:582", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"fsetxattr\" syscall occur.\n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S fsetxattr -F auid>=1000 -F auid!=unset -k perm_mod\n\n-a always,exit -F arch=b64 -S fsetxattr -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204525\",\n \"title\": {\n \"text\": \"SRG-OS-000458-GPOS-00203\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204525r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-030450\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must audit all uses of the fsetxattr syscall.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-27389-6\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86737\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72113\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"fsetxattr\\\" syscall occur.\\n\\nAdd or update the following rules in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F arch=b32 -S fsetxattr -F auid>=1000 -F auid!=unset -k perm_mod\\n\\n-a always,exit -F arch=b64 -S fsetxattr -F auid>=1000 -F auid!=unset -k perm_mod\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4649r462580_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4649r462580_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:582\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000172" + ], + "nist": [ + "AU-12 c" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204526", + "group_title": "SRG-OS-000458-GPOS-00203", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204526r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:597", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4650r462583_fix", + "fixtext_fixref": "F-4650r462583_fix", + "ident": [ + { + "text": "CCE-27280-7", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72115", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86739", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-030460", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204525r603261_rule", + "time": "2021-12-17T10:39:39", + "severity": "medium", + "version": "RHEL-07-030450", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-27389-6", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86737", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72113", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:582", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the lsetxattr syscall.", + "id": "V-204526", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:597", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"lsetxattr\" syscall occur.\n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S lsetxattr -F auid>=1000 -F auid!=unset -k perm_mod\n\n-a always,exit -F arch=b64 -S lsetxattr -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204526\",\n \"title\": {\n \"text\": \"SRG-OS-000458-GPOS-00203\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204526r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-030460\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must audit all uses of the lsetxattr syscall.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-27280-7\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-72115\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86739\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"lsetxattr\\\" syscall occur.\\n\\nAdd or update the following rules in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F arch=b32 -S lsetxattr -F auid>=1000 -F auid!=unset -k perm_mod\\n\\n-a always,exit -F arch=b64 -S lsetxattr -F auid>=1000 -F auid!=unset -k perm_mod\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4650r462583_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4650r462583_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:597\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000172" + ], + "nist": [ + "AU-12 c" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204527", + "group_title": "SRG-OS-000458-GPOS-00203", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204527r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:602", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4651r462586_fix", + "fixtext_fixref": "F-4651r462586_fix", + "ident": [ + { + "text": "CCE-27367-2", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72117", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86741", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-030470", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204526r603261_rule", + "time": "2021-12-17T10:39:39", + "severity": "medium", + "version": "RHEL-07-030460", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-27280-7", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72115", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86739", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:597", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the removexattr syscall.", + "id": "V-204527", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:602", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"removexattr\" syscall occur.\n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S removexattr -F auid>=1000 -F auid!=unset -k perm_mod\n\n-a always,exit -F arch=b64 -S removexattr -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204527\",\n \"title\": {\n \"text\": \"SRG-OS-000458-GPOS-00203\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204527r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-030470\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must audit all uses of the removexattr syscall.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-27367-2\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-72117\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86741\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"removexattr\\\" syscall occur.\\n\\nAdd or update the following rules in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F arch=b32 -S removexattr -F auid>=1000 -F auid!=unset -k perm_mod\\n\\n-a always,exit -F arch=b64 -S removexattr -F auid>=1000 -F auid!=unset -k perm_mod\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4651r462586_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4651r462586_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:602\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000172" + ], + "nist": [ + "AU-12 c" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204528", + "group_title": "SRG-OS-000458-GPOS-00203", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204528r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:577", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4652r462589_fix", + "fixtext_fixref": "F-4652r462589_fix", + "ident": [ + { + "text": "CCE-27353-2", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86743", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72119", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-030480", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204527r603261_rule", + "time": "2021-12-17T10:39:39", + "severity": "medium", + "version": "RHEL-07-030470", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-27367-2", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72117", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86741", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:602", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the fremovexattr syscall.", + "id": "V-204528", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:577", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"fremovexattr\" syscall occur.\n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S fremovexattr -F auid>=1000 -F auid!=unset -k perm_mod\n\n-a always,exit -F arch=b64 -S fremovexattr -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204528\",\n \"title\": {\n \"text\": \"SRG-OS-000458-GPOS-00203\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204528r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-030480\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must audit all uses of the fremovexattr syscall.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-27353-2\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86743\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72119\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"fremovexattr\\\" syscall occur.\\n\\nAdd or update the following rules in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F arch=b32 -S fremovexattr -F auid>=1000 -F auid!=unset -k perm_mod\\n\\n-a always,exit -F arch=b64 -S fremovexattr -F auid>=1000 -F auid!=unset -k perm_mod\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4652r462589_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4652r462589_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:577\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000172" + ], + "nist": [ + "AU-12 c" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204529", + "group_title": "SRG-OS-000458-GPOS-00203", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204529r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:592", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4653r462592_fix", + "fixtext_fixref": "F-4653r462592_fix", + "ident": [ + { + "text": "CCE-27410-0", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72121", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86745", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-030490", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204528r603261_rule", + "time": "2021-12-17T10:39:39", + "severity": "medium", + "version": "RHEL-07-030480", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-27353-2", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86743", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72119", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:577", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the lremovexattr syscall.", + "id": "V-204529", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:592", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"lremovexattr\" syscall occur.\n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S lremovexattr -F auid>=1000 -F auid!=unset -k perm_mod\n\n-a always,exit -F arch=b64 -S lremovexattr -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204529\",\n \"title\": {\n \"text\": \"SRG-OS-000458-GPOS-00203\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204529r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-030490\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must audit all uses of the lremovexattr syscall.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-27410-0\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-72121\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86745\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"lremovexattr\\\" syscall occur.\\n\\nAdd or update the following rules in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F arch=b32 -S lremovexattr -F auid>=1000 -F auid!=unset -k perm_mod\\n\\n-a always,exit -F arch=b64 -S lremovexattr -F auid>=1000 -F auid!=unset -k perm_mod\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4653r462592_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4653r462592_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:592\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000172", + "CCI-002884" + ], + "nist": [ + "AU-12 c", + "MA-4 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000458-GPOS-00203, SRG-OS-000461-GPOS-00205, SRG-OS-000392-GPOS-00172\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204530", + "group_title": "SRG-OS-000064-GPOS-00033", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204530r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:801", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4654r462595_fix", + "fixtext_fixref": "F-4654r462595_fix", + "ident": [ + { + "text": "CCE-80385-8", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72123", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86747", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-030500", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204529r603261_rule", + "time": "2021-12-17T10:39:39", + "severity": "medium", + "version": "RHEL-07-030490", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-27410-0", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72121", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86745", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:592", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the creat syscall.", + "id": "V-204530", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000458-GPOS-00203, SRG-OS-000461-GPOS-00205, SRG-OS-000392-GPOS-00172", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:801", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"creat\" syscall occur.\n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules:\n\n-a always,exit -F arch=b32 -S creat -F exit=-EPERM -F auid>=1000 -F auid!=unset -k access\n\n-a always,exit -F arch=b32 -S creat -F exit=-EACCES -F auid>=1000 -F auid!=unset -k access\n\n-a always,exit -F arch=b64 -S creat -F exit=-EPERM -F auid>=1000 -F auid!=unset -k access\n\n-a always,exit -F arch=b64 -S creat -F exit=-EACCES -F auid>=1000 -F auid!=unset -k access\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204530\",\n \"title\": {\n \"text\": \"SRG-OS-000064-GPOS-00033\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204530r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-030500\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must audit all uses of the creat syscall.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000458-GPOS-00203, SRG-OS-000461-GPOS-00205, SRG-OS-000392-GPOS-00172</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-80385-8\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-72123\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86747\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002884\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"creat\\\" syscall occur.\\n\\nAdd or update the following rules in \\\"/etc/audit/rules.d/audit.rules:\\n\\n-a always,exit -F arch=b32 -S creat -F exit=-EPERM -F auid>=1000 -F auid!=unset -k access\\n\\n-a always,exit -F arch=b32 -S creat -F exit=-EACCES -F auid>=1000 -F auid!=unset -k access\\n\\n-a always,exit -F arch=b64 -S creat -F exit=-EPERM -F auid>=1000 -F auid!=unset -k access\\n\\n-a always,exit -F arch=b64 -S creat -F exit=-EACCES -F auid>=1000 -F auid!=unset -k access\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4654r462595_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4654r462595_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:801\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000172", + "CCI-002884" + ], + "nist": [ + "AU-12 c", + "MA-4 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000458-GPOS-00203, SRG-OS-000461-GPOS-00205, SRG-OS-000392-GPOS-00172\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204531", + "group_title": "SRG-OS-000064-GPOS-00033", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204531r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:805", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4655r462598_fix", + "fixtext_fixref": "F-4655r462598_fix", + "ident": [ + { + "text": "CCE-80386-6", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86749", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72125", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-030510", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204530r603261_rule", + "time": "2021-12-17T10:39:39", + "severity": "medium", + "version": "RHEL-07-030500", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-80385-8", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72123", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86747", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:801", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the open syscall.", + "id": "V-204531", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000458-GPOS-00203, SRG-OS-000461-GPOS-00205, SRG-OS-000392-GPOS-00172", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:805", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"open\" syscall occur.\n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S open -F exit=-EPERM -F auid>=1000 -F auid!=unset -k access\n\n-a always,exit -F arch=b32 -S open -F exit=-EACCES -F auid>=1000 -F auid!=unset -k access\n\n-a always,exit -F arch=b64 -S open -F exit=-EPERM -F auid>=1000 -F auid!=unset -k access\n\n-a always,exit -F arch=b64 -S open -F exit=-EACCES -F auid>=1000 -F auid!=unset -k access\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204531\",\n \"title\": {\n \"text\": \"SRG-OS-000064-GPOS-00033\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204531r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-030510\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must audit all uses of the open syscall.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000458-GPOS-00203, SRG-OS-000461-GPOS-00205, SRG-OS-000392-GPOS-00172</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-80386-6\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86749\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72125\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002884\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"open\\\" syscall occur.\\n\\nAdd or update the following rules in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F arch=b32 -S open -F exit=-EPERM -F auid>=1000 -F auid!=unset -k access\\n\\n-a always,exit -F arch=b32 -S open -F exit=-EACCES -F auid>=1000 -F auid!=unset -k access\\n\\n-a always,exit -F arch=b64 -S open -F exit=-EPERM -F auid>=1000 -F auid!=unset -k access\\n\\n-a always,exit -F arch=b64 -S open -F exit=-EACCES -F auid>=1000 -F auid!=unset -k access\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4655r462598_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4655r462598_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:805\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000172", + "CCI-002884" + ], + "nist": [ + "AU-12 c", + "MA-4 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000458-GPOS-00203, SRG-OS-000461-GPOS-00205, SRG-OS-000392-GPOS-00172\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204532", + "group_title": "SRG-OS-000064-GPOS-00033", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204532r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:803", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4656r462601_fix", + "fixtext_fixref": "F-4656r462601_fix", + "ident": [ + { + "text": "CCE-80387-4", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72127", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86751", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-030520", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204531r603261_rule", + "time": "2021-12-17T10:39:39", + "severity": "medium", + "version": "RHEL-07-030510", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-80386-6", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86749", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72125", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:805", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the openat syscall.", + "id": "V-204532", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000458-GPOS-00203, SRG-OS-000461-GPOS-00205, SRG-OS-000392-GPOS-00172", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:803", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"openat\" syscall occur.\n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S openat -F exit=-EPERM -F auid>=1000 -F auid!=unset -k access\n\n-a always,exit -F arch=b32 -S openat -F exit=-EACCES -F auid>=1000 -F auid!=unset -k access\n\n-a always,exit -F arch=b64 -S openat -F exit=-EPERM -F auid>=1000 -F auid!=unset -k access\n\n-a always,exit -F arch=b64 -S openat -F exit=-EACCES -F auid>=1000 -F auid!=unset -k access\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204532\",\n \"title\": {\n \"text\": \"SRG-OS-000064-GPOS-00033\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204532r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-030520\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must audit all uses of the openat syscall.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000458-GPOS-00203, SRG-OS-000461-GPOS-00205, SRG-OS-000392-GPOS-00172</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-80387-4\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-72127\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86751\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002884\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"openat\\\" syscall occur.\\n\\nAdd or update the following rules in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F arch=b32 -S openat -F exit=-EPERM -F auid>=1000 -F auid!=unset -k access\\n\\n-a always,exit -F arch=b32 -S openat -F exit=-EACCES -F auid>=1000 -F auid!=unset -k access\\n\\n-a always,exit -F arch=b64 -S openat -F exit=-EPERM -F auid>=1000 -F auid!=unset -k access\\n\\n-a always,exit -F arch=b64 -S openat -F exit=-EACCES -F auid>=1000 -F auid!=unset -k access\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4656r462601_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4656r462601_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:803\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000172", + "CCI-002884" + ], + "nist": [ + "AU-12 c", + "MA-4 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000458-GPOS-00203, SRG-OS-000461-GPOS-00205, SRG-OS-000392-GPOS-00172\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204533", + "group_title": "SRG-OS-000064-GPOS-00033", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204533r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:804", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4657r462604_fix", + "fixtext_fixref": "F-4657r462604_fix", + "ident": [ + { + "text": "CCE-80388-2", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86753", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72129", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-030530", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204532r603261_rule", + "time": "2021-12-17T10:39:39", + "severity": "medium", + "version": "RHEL-07-030520", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-80387-4", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72127", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86751", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:803", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the open_by_handle_at syscall.", + "id": "V-204533", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000458-GPOS-00203, SRG-OS-000461-GPOS-00205, SRG-OS-000392-GPOS-00172", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:804", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"open_by_handle_at\" syscall occur.\n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S open_by_handle_at -F exit=-EPERM -F auid>=1000 -F auid!=unset -k access\n\n-a always,exit -F arch=b32 -S open_by_handle_at -F exit=-EACCES -F auid>=1000 -F auid!=unset -k access\n\n-a always,exit -F arch=b64 -S open_by_handle_at -F exit=-EPERM -F auid>=1000 -F auid!=unset -k access\n\n-a always,exit -F arch=b64 -S open_by_handle_at -F exit=-EACCES -F auid>=1000 -F auid!=unset -k access\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204533\",\n \"title\": {\n \"text\": \"SRG-OS-000064-GPOS-00033\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204533r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-030530\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must audit all uses of the open_by_handle_at syscall.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000458-GPOS-00203, SRG-OS-000461-GPOS-00205, SRG-OS-000392-GPOS-00172</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-80388-2\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86753\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72129\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002884\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"open_by_handle_at\\\" syscall occur.\\n\\nAdd or update the following rules in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F arch=b32 -S open_by_handle_at -F exit=-EPERM -F auid>=1000 -F auid!=unset -k access\\n\\n-a always,exit -F arch=b32 -S open_by_handle_at -F exit=-EACCES -F auid>=1000 -F auid!=unset -k access\\n\\n-a always,exit -F arch=b64 -S open_by_handle_at -F exit=-EPERM -F auid>=1000 -F auid!=unset -k access\\n\\n-a always,exit -F arch=b64 -S open_by_handle_at -F exit=-EACCES -F auid>=1000 -F auid!=unset -k access\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4657r462604_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4657r462604_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:804\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000172", + "CCI-002884" + ], + "nist": [ + "AU-12 c", + "MA-4 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000458-GPOS-00203, SRG-OS-000461-GPOS-00205, SRG-OS-000392-GPOS-00172\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204534", + "group_title": "SRG-OS-000064-GPOS-00033", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204534r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:806", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4658r462607_fix", + "fixtext_fixref": "F-4658r462607_fix", + "ident": [ + { + "text": "CCE-80389-0", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86755", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72131", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-030540", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204533r603261_rule", + "time": "2021-12-17T10:39:39", + "severity": "medium", + "version": "RHEL-07-030530", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-80388-2", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86753", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72129", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:804", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the truncate syscall.", + "id": "V-204534", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000458-GPOS-00203, SRG-OS-000461-GPOS-00205, SRG-OS-000392-GPOS-00172", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:806", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"truncate\" syscall occur.\n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S truncate -F exit=-EPERM -F auid>=1000 -F auid!=unset -k access\n\n-a always,exit -F arch=b32 -S truncate -F exit=-EACCES -F auid>=1000 -F auid!=unset -k access\n\n-a always,exit -F arch=b64 -S truncate -F exit=-EPERM -F auid>=1000 -F auid!=unset -k access\n\n-a always,exit -F arch=b64 -S truncate -F exit=-EACCES -F auid>=1000 -F auid!=unset -k access\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204534\",\n \"title\": {\n \"text\": \"SRG-OS-000064-GPOS-00033\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204534r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-030540\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must audit all uses of the truncate syscall.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000458-GPOS-00203, SRG-OS-000461-GPOS-00205, SRG-OS-000392-GPOS-00172</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-80389-0\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86755\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72131\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002884\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"truncate\\\" syscall occur.\\n\\nAdd or update the following rules in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F arch=b32 -S truncate -F exit=-EPERM -F auid>=1000 -F auid!=unset -k access\\n\\n-a always,exit -F arch=b32 -S truncate -F exit=-EACCES -F auid>=1000 -F auid!=unset -k access\\n\\n-a always,exit -F arch=b64 -S truncate -F exit=-EPERM -F auid>=1000 -F auid!=unset -k access\\n\\n-a always,exit -F arch=b64 -S truncate -F exit=-EACCES -F auid>=1000 -F auid!=unset -k access\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4658r462607_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4658r462607_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:806\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000172", + "CCI-002884" + ], + "nist": [ + "AU-12 c", + "MA-4 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000458-GPOS-00203, SRG-OS-000461-GPOS-00205, SRG-OS-000392-GPOS-00172\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204535", + "group_title": "SRG-OS-000064-GPOS-00033", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204535r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:802", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4659r462610_fix", + "fixtext_fixref": "F-4659r462610_fix", + "ident": [ + { + "text": "CCE-80390-8", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72133", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86757", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-030550", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204534r603261_rule", + "time": "2021-12-17T10:39:39", + "severity": "medium", + "version": "RHEL-07-030540", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-80389-0", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86755", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72131", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:806", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the ftruncate syscall.", + "id": "V-204535", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000458-GPOS-00203, SRG-OS-000461-GPOS-00205, SRG-OS-000392-GPOS-00172", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:802", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"ftruncate\" syscall occur.\n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S ftruncate -F exit=-EPERM -F auid>=1000 -F auid!=unset -k access\n\n-a always,exit -F arch=b32 -S ftruncate -F exit=-EACCES -F auid>=1000 -F auid!=unset -k access\n\n-a always,exit -F arch=b64 -S ftruncate -F exit=-EPERM -F auid>=1000 -F auid!=unset -k access\n\n-a always,exit -F arch=b64 -S ftruncate -F exit=-EACCES -F auid>=1000 -F auid!=unset -k access\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204535\",\n \"title\": {\n \"text\": \"SRG-OS-000064-GPOS-00033\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204535r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-030550\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must audit all uses of the ftruncate syscall.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000458-GPOS-00203, SRG-OS-000461-GPOS-00205, SRG-OS-000392-GPOS-00172</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-80390-8\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-72133\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86757\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002884\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"ftruncate\\\" syscall occur.\\n\\nAdd or update the following rules in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F arch=b32 -S ftruncate -F exit=-EPERM -F auid>=1000 -F auid!=unset -k access\\n\\n-a always,exit -F arch=b32 -S ftruncate -F exit=-EACCES -F auid>=1000 -F auid!=unset -k access\\n\\n-a always,exit -F arch=b64 -S ftruncate -F exit=-EPERM -F auid>=1000 -F auid!=unset -k access\\n\\n-a always,exit -F arch=b64 -S ftruncate -F exit=-EACCES -F auid>=1000 -F auid!=unset -k access\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4659r462610_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4659r462610_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:802\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000172", + "CCI-002884" + ], + "nist": [ + "AU-12 c", + "MA-4 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000392-GPOS-00172, SRG-OS-000463-GPOS-00207, SRG-OS-000465-GPOS-00209\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204536", + "group_title": "SRG-OS-000392-GPOS-00172", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204536r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:618", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4660r462613_fix", + "fixtext_fixref": "F-4660r462613_fix", + "ident": [ + { + "text": "CCE-80391-6", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86759", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72135", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-030560", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204535r603261_rule", + "time": "2021-12-17T10:39:39", + "severity": "medium", + "version": "RHEL-07-030550", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-80390-8", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72133", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86757", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:802", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the semanage command.", + "id": "V-204536", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000392-GPOS-00172, SRG-OS-000463-GPOS-00207, SRG-OS-000465-GPOS-00209", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:618", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"semanage\" command occur.\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F path=/usr/sbin/semanage -F auid>=1000 -F auid!=unset -k privileged-priv_change\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204536\",\n \"title\": {\n \"text\": \"SRG-OS-000392-GPOS-00172\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204536r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-030560\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must audit all uses of the semanage command.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000392-GPOS-00172, SRG-OS-000463-GPOS-00207, SRG-OS-000465-GPOS-00209</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-80391-6\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86759\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72135\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002884\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"semanage\\\" command occur.\\n\\nAdd or update the following rule in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F path=/usr/sbin/semanage -F auid>=1000 -F auid!=unset -k privileged-priv_change\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4660r462613_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4660r462613_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:618\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000172", + "CCI-002884" + ], + "nist": [ + "AU-12 c", + "MA-4 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000392-GPOS-00172, SRG-OS-000463-GPOS-00207, SRG-OS-000465-GPOS-00209\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204537", + "group_title": "SRG-OS-000392-GPOS-00172", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204537r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:621", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4661r462616_fix", + "fixtext_fixref": "F-4661r462616_fix", + "ident": [ + { + "text": "CCE-80392-4", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72137", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86761", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-030570", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204536r603261_rule", + "time": "2021-12-17T10:39:39", + "severity": "medium", + "version": "RHEL-07-030560", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-80391-6", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86759", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72135", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:618", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the setsebool command.", + "id": "V-204537", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000392-GPOS-00172, SRG-OS-000463-GPOS-00207, SRG-OS-000465-GPOS-00209", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:621", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"setsebool\" command occur.\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F path=/usr/sbin/setsebool -F auid>=1000 -F auid!=unset -k privileged-priv_change\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204537\",\n \"title\": {\n \"text\": \"SRG-OS-000392-GPOS-00172\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204537r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-030570\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must audit all uses of the setsebool command.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000392-GPOS-00172, SRG-OS-000463-GPOS-00207, SRG-OS-000465-GPOS-00209</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-80392-4\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-72137\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86761\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002884\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"setsebool\\\" command occur.\\n\\nAdd or update the following rule in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F path=/usr/sbin/setsebool -F auid>=1000 -F auid!=unset -k privileged-priv_change\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4661r462616_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4661r462616_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:621\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000172", + "CCI-002884" + ], + "nist": [ + "AU-12 c", + "MA-4 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000392-GPOS-00172, SRG-OS-000463-GPOS-00207, SRG-OS-000465-GPOS-00209\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204538", + "group_title": "SRG-OS-000392-GPOS-00172", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204538r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:612", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4662r462619_fix", + "fixtext_fixref": "F-4662r462619_fix", + "ident": [ + { + "text": "CCE-80393-2", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72139", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86763", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-030580", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204537r603261_rule", + "time": "2021-12-17T10:39:39", + "severity": "medium", + "version": "RHEL-07-030570", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-80392-4", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72137", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86761", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:621", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the chcon command.", + "id": "V-204538", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000392-GPOS-00172, SRG-OS-000463-GPOS-00207, SRG-OS-000465-GPOS-00209", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:612", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"chcon\" command occur.\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F path=/usr/bin/chcon -F auid>=1000 -F auid!=unset -k privileged-priv_change\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204538\",\n \"title\": {\n \"text\": \"SRG-OS-000392-GPOS-00172\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204538r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-030580\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must audit all uses of the chcon command.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000392-GPOS-00172, SRG-OS-000463-GPOS-00207, SRG-OS-000465-GPOS-00209</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-80393-2\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-72139\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86763\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002884\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"chcon\\\" command occur.\\n\\nAdd or update the following rule in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F path=/usr/bin/chcon -F auid>=1000 -F auid!=unset -k privileged-priv_change\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4662r462619_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4662r462619_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:612\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000172", + "CCI-002884" + ], + "nist": [ + "AU-12 c", + "MA-4 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000392-GPOS-00172, SRG-OS-000463-GPOS-00207, SRG-OS-000465-GPOS-00209\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204539", + "group_title": "SRG-OS-000392-GPOS-00172", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204539r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:86765", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4663r462622_fix", + "fixtext_fixref": "F-4663r462622_fix", + "ident": [ + { + "text": "V-72141", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86765", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-030590", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204538r603261_rule", + "time": "2021-12-17T10:39:39", + "severity": "medium", + "version": "RHEL-07-030580", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-80393-2", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72139", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86763", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:612", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the setfiles command.", + "id": "V-204539", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000392-GPOS-00172, SRG-OS-000463-GPOS-00207, SRG-OS-000465-GPOS-00209", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:86765", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"setfiles\" command occur.\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F path=/usr/sbin/setfiles -F auid>=1000 -F auid!=unset -k privileged-priv_change\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204539\",\n \"title\": {\n \"text\": \"SRG-OS-000392-GPOS-00172\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204539r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-030590\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must audit all uses of the setfiles command.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000392-GPOS-00172, SRG-OS-000463-GPOS-00207, SRG-OS-000465-GPOS-00209</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"V-72141\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86765\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002884\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"setfiles\\\" command occur.\\n\\nAdd or update the following rule in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F path=/usr/sbin/setfiles -F auid>=1000 -F auid!=unset -k privileged-priv_change\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4663r462622_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4663r462622_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:86765\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000126", + "CCI-000172", + "CCI-002884" + ], + "nist": [ + "AU-2 c", + "AU-12 c", + "MA-4 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000392-GPOS-00172, SRG-OS-000470-GPOS-00214, SRG-OS-000473-GPOS-00218\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204540", + "group_title": "SRG-OS-000392-GPOS-00172", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204540r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:675", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4664r88813_fix", + "fixtext_fixref": "F-4664r88813_fix", + "ident": [ + { + "text": "CCE-80383-3", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72145", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86769", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000126", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-030610", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204539r603261_rule", + "time": "2021-12-17T10:39:39", + "severity": "medium", + "version": "RHEL-07-030590", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "V-72141", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86765", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:86765", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must generate audit records for all unsuccessful account access events.", + "id": "V-204540", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nSatisfies: SRG-OS-000392-GPOS-00172, SRG-OS-000470-GPOS-00214, SRG-OS-000473-GPOS-00218", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:675", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when unsuccessful account access events occur. \n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\": \n\n-w /var/run/faillock -p wa -k logins\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204540\",\n \"title\": {\n \"text\": \"SRG-OS-000392-GPOS-00172\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204540r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-030610\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must generate audit records for all unsuccessful account access events.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000392-GPOS-00172, SRG-OS-000470-GPOS-00214, SRG-OS-000473-GPOS-00218</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-80383-3\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-72145\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86769\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000126\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002884\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when unsuccessful account access events occur. \\n\\nAdd or update the following rule in \\\"/etc/audit/rules.d/audit.rules\\\": \\n\\n-w /var/run/faillock -p wa -k logins\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4664r88813_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4664r88813_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:675\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000126", + "CCI-000172", + "CCI-002884" + ], + "nist": [ + "AU-2 c", + "AU-12 c", + "MA-4 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000392-GPOS-00172, SRG-OS-000470-GPOS-00214, SRG-OS-000473-GPOS-00218\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204541", + "group_title": "SRG-OS-000392-GPOS-00172", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204541r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:676", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4665r88816_fix", + "fixtext_fixref": "F-4665r88816_fix", + "ident": [ + { + "text": "CCE-80384-1", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72147", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86771", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000126", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-030620", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204540r603261_rule", + "time": "2021-12-17T10:39:39", + "severity": "medium", + "version": "RHEL-07-030610", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-80383-3", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72145", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86769", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000126", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:675", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must generate audit records for all successful account access events.", + "id": "V-204541", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nSatisfies: SRG-OS-000392-GPOS-00172, SRG-OS-000470-GPOS-00214, SRG-OS-000473-GPOS-00218", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:676", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful account access events occur. \n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\": \n\n-w /var/log/lastlog -p wa -k logins\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204541\",\n \"title\": {\n \"text\": \"SRG-OS-000392-GPOS-00172\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204541r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-030620\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must generate audit records for all successful account access events.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000392-GPOS-00172, SRG-OS-000470-GPOS-00214, SRG-OS-000473-GPOS-00218</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-80384-1\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-72147\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86771\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000126\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002884\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful account access events occur. \\n\\nAdd or update the following rule in \\\"/etc/audit/rules.d/audit.rules\\\": \\n\\n-w /var/log/lastlog -p wa -k logins\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4665r88816_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4665r88816_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:676\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000135", + "CCI-000172", + "CCI-002884" + ], + "nist": [ + "AU-3 (1)", + "AU-12 c", + "MA-4 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged password commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204542", + "group_title": "SRG-OS-000042-GPOS-00020", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204542r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:733", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4666r462625_fix", + "fixtext_fixref": "F-4666r462625_fix", + "ident": [ + { + "text": "CCE-80395-7", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86773", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72149", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000135", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-030630", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204541r603261_rule", + "time": "2021-12-17T10:39:39", + "severity": "medium", + "version": "RHEL-07-030620", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-80384-1", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72147", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86771", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000126", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:676", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the passwd command.", + "id": "V-204542", + "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged password commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:733", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"passwd\" command occur.\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F path=/usr/bin/passwd -F auid>=1000 -F auid!=unset -k privileged-passwd\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204542\",\n \"title\": {\n \"text\": \"SRG-OS-000042-GPOS-00020\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204542r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-030630\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must audit all uses of the passwd command.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged password commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-80395-7\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86773\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72149\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000135\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002884\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"passwd\\\" command occur.\\n\\nAdd or update the following rule in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F path=/usr/bin/passwd -F auid>=1000 -F auid!=unset -k privileged-passwd\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4666r462625_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4666r462625_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:733\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000135", + "CCI-000172", + "CCI-002884" + ], + "nist": [ + "AU-3 (1)", + "AU-12 c", + "MA-4 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged password commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204543", + "group_title": "SRG-OS-000042-GPOS-00020", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204543r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:760", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4667r462628_fix", + "fixtext_fixref": "F-4667r462628_fix", + "ident": [ + { + "text": "CCE-80396-5", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86775", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72151", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000135", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-030640", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204542r603261_rule", + "time": "2021-12-17T10:39:39", + "severity": "medium", + "version": "RHEL-07-030630", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-80395-7", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86773", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72149", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000135", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:733", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the unix_chkpwd command.", + "id": "V-204543", + "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged password commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:760", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"unix_chkpwd\" command occur.\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F path=/usr/sbin/unix_chkpwd -F auid>=1000 -F auid!=unset -k privileged-passwd\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204543\",\n \"title\": {\n \"text\": \"SRG-OS-000042-GPOS-00020\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204543r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-030640\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must audit all uses of the unix_chkpwd command.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged password commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-80396-5\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86775\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72151\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000135\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002884\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"unix_chkpwd\\\" command occur.\\n\\nAdd or update the following rule in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F path=/usr/sbin/unix_chkpwd -F auid>=1000 -F auid!=unset -k privileged-passwd\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4667r462628_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4667r462628_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:760\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000135", + "CCI-000172", + "CCI-002884" + ], + "nist": [ + "AU-3 (1)", + "AU-12 c", + "MA-4 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged password commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204544", + "group_title": "SRG-OS-000042-GPOS-00020", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204544r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:724", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4668r462631_fix", + "fixtext_fixref": "F-4668r462631_fix", + "ident": [ + { + "text": "CCE-80397-3", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86777", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72153", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000135", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-030650", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204543r603261_rule", + "time": "2021-12-17T10:39:39", + "severity": "medium", + "version": "RHEL-07-030640", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-80396-5", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86775", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72151", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000135", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:760", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the gpasswd command.", + "id": "V-204544", + "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged password commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:724", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"gpasswd\" command occur.\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F path=/usr/bin/gpasswd -F auid>=1000 -F auid!=unset -k privileged-passwd\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204544\",\n \"title\": {\n \"text\": \"SRG-OS-000042-GPOS-00020\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204544r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-030650\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must audit all uses of the gpasswd command.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged password commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-80397-3\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86777\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72153\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000135\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002884\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"gpasswd\\\" command occur.\\n\\nAdd or update the following rule in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F path=/usr/bin/gpasswd -F auid>=1000 -F auid!=unset -k privileged-passwd\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4668r462631_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4668r462631_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:724\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000135", + "CCI-000172", + "CCI-002884" + ], + "nist": [ + "AU-3 (1)", + "AU-12 c", + "MA-4 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged password commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204545", + "group_title": "SRG-OS-000042-GPOS-00020", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204545r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:715", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4669r462634_fix", + "fixtext_fixref": "F-4669r462634_fix", + "ident": [ + { + "text": "CCE-80398-1", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86779", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72155", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000135", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-030660", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204544r603261_rule", + "time": "2021-12-17T10:39:39", + "severity": "medium", + "version": "RHEL-07-030650", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-80397-3", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86777", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72153", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000135", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:724", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the chage command.", + "id": "V-204545", + "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged password commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:715", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"chage\" command occur.\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F path=/usr/bin/chage -F auid>=1000 -F auid!=unset -k privileged-passwd\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204545\",\n \"title\": {\n \"text\": \"SRG-OS-000042-GPOS-00020\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204545r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-030660\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must audit all uses of the chage command.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged password commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-80398-1\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86779\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72155\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000135\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002884\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"chage\\\" command occur.\\n\\nAdd or update the following rule in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F path=/usr/bin/chage -F auid>=1000 -F auid!=unset -k privileged-passwd\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4669r462634_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4669r462634_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:715\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000135", + "CCI-000172", + "CCI-002884" + ], + "nist": [ + "AU-3 (1)", + "AU-12 c", + "MA-4 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged password commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204546", + "group_title": "SRG-OS-000042-GPOS-00020", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204546r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:763", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4670r462637_fix", + "fixtext_fixref": "F-4670r462637_fix", + "ident": [ + { + "text": "CCE-80399-9", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86781", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72157", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000135", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-030670", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204545r603261_rule", + "time": "2021-12-17T10:39:39", + "severity": "medium", + "version": "RHEL-07-030660", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-80398-1", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86779", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72155", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000135", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:715", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the userhelper command.", + "id": "V-204546", + "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged password commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:763", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"userhelper\" command occur.\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F path=/usr/sbin/userhelper -F auid>=1000 -F auid!=unset -k privileged-passwd\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204546\",\n \"title\": {\n \"text\": \"SRG-OS-000042-GPOS-00020\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204546r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-030670\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must audit all uses of the userhelper command.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged password commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-80399-9\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86781\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72157\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000135\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002884\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"userhelper\\\" command occur.\\n\\nAdd or update the following rule in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F path=/usr/sbin/userhelper -F auid>=1000 -F auid!=unset -k privileged-passwd\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4670r462637_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4670r462637_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:763\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000130", + "CCI-000135", + "CCI-000172", + "CCI-002884" + ], + "nist": [ + "AU-3 a", + "AU-3 (1)", + "AU-12 c", + "MA-4 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged access commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204547", + "group_title": "SRG-OS-000037-GPOS-00015", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204547r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:748", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4671r462640_fix", + "fixtext_fixref": "F-4671r462640_fix", + "ident": [ + { + "text": "CCE-80400-5", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86783", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72159", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000130", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000135", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-030680", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204546r603261_rule", + "time": "2021-12-17T10:39:39", + "severity": "medium", + "version": "RHEL-07-030670", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-80399-9", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86781", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72157", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000135", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:763", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the su command.", + "id": "V-204547", + "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged access commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:748", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"su\" command occur.\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\": \n\n-a always,exit -F path=/usr/bin/su -F auid>=1000 -F auid!=unset -k privileged-priv_change \n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204547\",\n \"title\": {\n \"text\": \"SRG-OS-000037-GPOS-00015\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204547r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-030680\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must audit all uses of the su command.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged access commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-80400-5\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86783\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72159\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000130\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000135\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002884\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"su\\\" command occur.\\n\\nAdd or update the following rule in \\\"/etc/audit/rules.d/audit.rules\\\": \\n\\n-a always,exit -F path=/usr/bin/su -F auid>=1000 -F auid!=unset -k privileged-priv_change \\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4671r462640_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4671r462640_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:748\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000130", + "CCI-000135", + "CCI-000172", + "CCI-002884" + ], + "nist": [ + "AU-3 a", + "AU-3 (1)", + "AU-12 c", + "MA-4 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged access commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204548", + "group_title": "SRG-OS-000037-GPOS-00015", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204548r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:751", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4672r462643_fix", + "fixtext_fixref": "F-4672r462643_fix", + "ident": [ + { + "text": "CCE-80401-3", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72161", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86785", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000130", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000135", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-030690", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204547r603261_rule", + "time": "2021-12-17T10:39:39", + "severity": "medium", + "version": "RHEL-07-030680", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-80400-5", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86783", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72159", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000130", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000135", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:748", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the sudo command.", + "id": "V-204548", + "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged access commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:751", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"sudo\" command occur.\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\": \n\n-a always,exit -F path=/usr/bin/sudo -F auid>=1000 -F auid!=unset -k privileged-priv_change \n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204548\",\n \"title\": {\n \"text\": \"SRG-OS-000037-GPOS-00015\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204548r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-030690\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must audit all uses of the sudo command.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged access commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-80401-3\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-72161\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86785\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000130\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000135\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002884\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"sudo\\\" command occur.\\n\\nAdd or update the following rule in \\\"/etc/audit/rules.d/audit.rules\\\": \\n\\n-a always,exit -F path=/usr/bin/sudo -F auid>=1000 -F auid!=unset -k privileged-priv_change \\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4672r462643_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4672r462643_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:751\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000130", + "CCI-000135", + "CCI-000172", + "CCI-002884" + ], + "nist": [ + "AU-3 a", + "AU-3 (1)", + "AU-12 c", + "MA-4 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged access commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nSatisfies: SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204549", + "group_title": "SRG-OS-000037-GPOS-00015", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204549r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:773", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4673r88840_fix", + "fixtext_fixref": "F-4673r88840_fix", + "ident": [ + { + "text": "CCE-27461-3", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72163", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86787", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000130", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000135", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-030700", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204548r603261_rule", + "time": "2021-12-17T10:39:39", + "severity": "medium", + "version": "RHEL-07-030690", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-80401-3", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72161", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86785", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000130", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000135", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:751", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the sudoers file and all files in the /etc/sudoers.d/ directory.", + "id": "V-204549", + "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged access commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\n\nSatisfies: SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:773", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to access the \"/etc/sudoers\" file and files in the \"/etc/sudoers.d/\" directory.\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-w /etc/sudoers -p wa -k privileged-actions\n\n-w /etc/sudoers.d/ -p wa -k privileged-actions\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204549\",\n \"title\": {\n \"text\": \"SRG-OS-000037-GPOS-00015\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204549r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-030700\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must audit all uses of the sudoers file and all files in the /etc/sudoers.d/ directory.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged access commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nSatisfies: SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-27461-3\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-72163\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86787\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000130\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000135\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002884\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to access the \\\"/etc/sudoers\\\" file and files in the \\\"/etc/sudoers.d/\\\" directory.\\n\\nAdd or update the following rule in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-w /etc/sudoers -p wa -k privileged-actions\\n\\n-w /etc/sudoers.d/ -p wa -k privileged-actions\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4673r88840_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4673r88840_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:773\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000130", + "CCI-000135", + "CCI-000172", + "CCI-002884" + ], + "nist": [ + "AU-3 a", + "AU-3 (1)", + "AU-12 c", + "MA-4 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged access commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204550", + "group_title": "SRG-OS-000037-GPOS-00015", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204550r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:727", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4674r462646_fix", + "fixtext_fixref": "F-4674r462646_fix", + "ident": [ + { + "text": "CCE-80403-9", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72165", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86789", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000130", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000135", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-030710", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204549r603261_rule", + "time": "2021-12-17T10:39:39", + "severity": "medium", + "version": "RHEL-07-030700", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-27461-3", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72163", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86787", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000130", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000135", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:773", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the newgrp command.", + "id": "V-204550", + "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged access commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:727", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"newgrp\" command occur.\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\": \n\n-a always,exit -F path=/usr/bin/newgrp -F auid>=1000 -F auid!=unset -k privileged-priv_change\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204550\",\n \"title\": {\n \"text\": \"SRG-OS-000037-GPOS-00015\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204550r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-030710\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must audit all uses of the newgrp command.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged access commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-80403-9\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-72165\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86789\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000130\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000135\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002884\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"newgrp\\\" command occur.\\n\\nAdd or update the following rule in \\\"/etc/audit/rules.d/audit.rules\\\": \\n\\n-a always,exit -F path=/usr/bin/newgrp -F auid>=1000 -F auid!=unset -k privileged-priv_change\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4674r462646_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4674r462646_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:727\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000130", + "CCI-000135", + "CCI-000172", + "CCI-002884" + ], + "nist": [ + "AU-3 a", + "AU-3 (1)", + "AU-12 c", + "MA-4 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged access commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204551", + "group_title": "SRG-OS-000037-GPOS-00015", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204551r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:718", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4675r462649_fix", + "fixtext_fixref": "F-4675r462649_fix", + "ident": [ + { + "text": "CCE-80404-7", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86791", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72167", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000130", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000135", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-030720", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204550r603261_rule", + "time": "2021-12-17T10:39:39", + "severity": "medium", + "version": "RHEL-07-030710", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-80403-9", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72165", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86789", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000130", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000135", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:727", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the chsh command.", + "id": "V-204551", + "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged access commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:718", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"chsh\" command occur.\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\": \n\n-a always,exit -F path=/usr/bin/chsh -F auid>=1000 -F auid!=unset -k privileged-priv_change\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204551\",\n \"title\": {\n \"text\": \"SRG-OS-000037-GPOS-00015\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204551r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-030720\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must audit all uses of the chsh command.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged access commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-80404-7\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86791\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72167\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000130\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000135\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002884\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"chsh\\\" command occur.\\n\\nAdd or update the following rule in \\\"/etc/audit/rules.d/audit.rules\\\": \\n\\n-a always,exit -F path=/usr/bin/chsh -F auid>=1000 -F auid!=unset -k privileged-priv_change\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4675r462649_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4675r462649_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:718\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000135", + "CCI-002884" + ], + "nist": [ + "AU-3 (1)", + "MA-4 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged mount commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204552", + "group_title": "SRG-OS-000042-GPOS-00020", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204552r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:686", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4676r462652_fix", + "fixtext_fixref": "F-4676r462652_fix", + "ident": [ + { + "text": "CCE-27447-2", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72171", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86795", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000135", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-030740", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204551r603261_rule", + "time": "2021-12-17T10:39:39", + "severity": "medium", + "version": "RHEL-07-030720", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-80404-7", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86791", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72167", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000130", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000135", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:718", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the mount command and syscall.", + "id": "V-204552", + "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged mount commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:686", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"mount\" command and syscall occur.\n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S mount -F auid>=1000 -F auid!=unset -k privileged-mount\n-a always,exit -F arch=b64 -S mount -F auid>=1000 -F auid!=unset -k privileged-mount\n-a always,exit -F path=/usr/bin/mount -F auid>=1000 -F auid!=unset -k privileged-mount\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204552\",\n \"title\": {\n \"text\": \"SRG-OS-000042-GPOS-00020\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204552r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-030740\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must audit all uses of the mount command and syscall.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged mount commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-27447-2\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-72171\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86795\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000135\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002884\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"mount\\\" command and syscall occur.\\n\\nAdd or update the following rules in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F arch=b32 -S mount -F auid>=1000 -F auid!=unset -k privileged-mount\\n-a always,exit -F arch=b64 -S mount -F auid>=1000 -F auid!=unset -k privileged-mount\\n-a always,exit -F path=/usr/bin/mount -F auid>=1000 -F auid!=unset -k privileged-mount\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4676r462652_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4676r462652_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:686\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000135", + "CCI-002884" + ], + "nist": [ + "AU-3 (1)", + "MA-4 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged mount commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204553", + "group_title": "SRG-OS-000042-GPOS-00020", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204553r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:757", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4677r462655_fix", + "fixtext_fixref": "F-4677r462655_fix", + "ident": [ + { + "text": "CCE-80405-4", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72173", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86797", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000135", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-030750", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204552r603261_rule", + "time": "2021-12-17T10:39:39", + "severity": "medium", + "version": "RHEL-07-030740", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-27447-2", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72171", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86795", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000135", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:686", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the umount command.", + "id": "V-204553", + "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged mount commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:757", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"umount\" command occur.\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\": \n\n-a always,exit -F path=/usr/bin/umount -F auid>=1000 -F auid!=unset -k privileged-mount\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204553\",\n \"title\": {\n \"text\": \"SRG-OS-000042-GPOS-00020\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204553r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-030750\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must audit all uses of the umount command.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged mount commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-80405-4\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-72173\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86797\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000135\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002884\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"umount\\\" command occur.\\n\\nAdd or update the following rule in \\\"/etc/audit/rules.d/audit.rules\\\": \\n\\n-a always,exit -F path=/usr/bin/umount -F auid>=1000 -F auid!=unset -k privileged-mount\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4677r462655_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4677r462655_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:757\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000135", + "CCI-002884" + ], + "nist": [ + "AU-3 (1)", + "MA-4 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged postfix commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204554", + "group_title": "SRG-OS-000042-GPOS-00020", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204554r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:736", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4678r462658_fix", + "fixtext_fixref": "F-4678r462658_fix", + "ident": [ + { + "text": "CCE-80406-2", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72175", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86799", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000135", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-030760", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204553r603261_rule", + "time": "2021-12-17T10:39:39", + "severity": "medium", + "version": "RHEL-07-030750", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-80405-4", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72173", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86797", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000135", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:757", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the postdrop command.", + "id": "V-204554", + "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged postfix commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:736", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"postdrop\" command occur.\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\": \n\n-a always,exit -F path=/usr/sbin/postdrop -F auid>=1000 -F auid!=unset -k privileged-postfix\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204554\",\n \"title\": {\n \"text\": \"SRG-OS-000042-GPOS-00020\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204554r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-030760\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must audit all uses of the postdrop command.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged postfix commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-80406-2\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-72175\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86799\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000135\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002884\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"postdrop\\\" command occur.\\n\\nAdd or update the following rule in \\\"/etc/audit/rules.d/audit.rules\\\": \\n\\n-a always,exit -F path=/usr/sbin/postdrop -F auid>=1000 -F auid!=unset -k privileged-postfix\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4678r462658_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4678r462658_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:736\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000135", + "CCI-002884" + ], + "nist": [ + "AU-3 (1)", + "MA-4 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged postfix commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204555", + "group_title": "SRG-OS-000042-GPOS-00020", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204555r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:739", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4679r462661_fix", + "fixtext_fixref": "F-4679r462661_fix", + "ident": [ + { + "text": "CCE-80407-0", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86801", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72177", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000135", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-030770", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204554r603261_rule", + "time": "2021-12-17T10:39:39", + "severity": "medium", + "version": "RHEL-07-030760", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-80406-2", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72175", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86799", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000135", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:736", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the postqueue command.", + "id": "V-204555", + "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged postfix commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:739", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"postqueue\" command occur. \n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\": \n\n-a always,exit -F path=/usr/sbin/postqueue -F auid>=1000 -F auid!=unset -k privileged-postfix\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204555\",\n \"title\": {\n \"text\": \"SRG-OS-000042-GPOS-00020\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204555r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-030770\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must audit all uses of the postqueue command.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged postfix commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-80407-0\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86801\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72177\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000135\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002884\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"postqueue\\\" command occur. \\n\\nAdd or update the following rule in \\\"/etc/audit/rules.d/audit.rules\\\": \\n\\n-a always,exit -F path=/usr/sbin/postqueue -F auid>=1000 -F auid!=unset -k privileged-postfix\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4679r462661_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4679r462661_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:739\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000135", + "CCI-000172", + "CCI-002884" + ], + "nist": [ + "AU-3 (1)", + "AU-12 c", + "MA-4 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged ssh commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204556", + "group_title": "SRG-OS-000042-GPOS-00020", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204556r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:745", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4680r462664_fix", + "fixtext_fixref": "F-4680r462664_fix", + "ident": [ + { + "text": "CCE-80408-8", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86803", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72179", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000135", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-030780", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204555r603261_rule", + "time": "2021-12-17T10:39:39", + "severity": "medium", + "version": "RHEL-07-030770", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-80407-0", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86801", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72177", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000135", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:739", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the ssh-keysign command.", + "id": "V-204556", + "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged ssh commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:745", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"ssh-keysign\" command occur. \n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\": \n\n-a always,exit -F path=/usr/libexec/openssh/ssh-keysign -F auid>=1000 -F auid!=unset -k privileged-ssh\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204556\",\n \"title\": {\n \"text\": \"SRG-OS-000042-GPOS-00020\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204556r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-030780\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must audit all uses of the ssh-keysign command.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged ssh commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-80408-8\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86803\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72179\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000135\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002884\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"ssh-keysign\\\" command occur. \\n\\nAdd or update the following rule in \\\"/etc/audit/rules.d/audit.rules\\\": \\n\\n-a always,exit -F path=/usr/libexec/openssh/ssh-keysign -F auid>=1000 -F auid!=unset -k privileged-ssh\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4680r462664_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4680r462664_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:745\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000135", + "CCI-000172", + "CCI-002884" + ], + "nist": [ + "AU-3 (1)", + "AU-12 c", + "MA-4 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204557", + "group_title": "SRG-OS-000042-GPOS-00020", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204557r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:721", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4681r462667_fix", + "fixtext_fixref": "F-4681r462667_fix", + "ident": [ + { + "text": "CCE-80410-4", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86807", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72183", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000135", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-030800", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204556r603261_rule", + "time": "2021-12-17T10:39:39", + "severity": "medium", + "version": "RHEL-07-030780", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-80408-8", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86803", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72179", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000135", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:745", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the crontab command.", + "id": "V-204557", + "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:721", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"crontab\" command occur. \n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\": \n\n-a always,exit -F path=/usr/bin/crontab -F auid>=1000 -F auid!=unset -k privileged-cron\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204557\",\n \"title\": {\n \"text\": \"SRG-OS-000042-GPOS-00020\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204557r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-030800\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must audit all uses of the crontab command.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-80410-4\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86807\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72183\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000135\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002884\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"crontab\\\" command occur. \\n\\nAdd or update the following rule in \\\"/etc/audit/rules.d/audit.rules\\\": \\n\\n-a always,exit -F path=/usr/bin/crontab -F auid>=1000 -F auid!=unset -k privileged-cron\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4681r462667_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4681r462667_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:721\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000172" + ], + "nist": [ + "AU-12 c" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204558", + "group_title": "SRG-OS-000471-GPOS-00215", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204558r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:730", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4682r462670_fix", + "fixtext_fixref": "F-4682r462670_fix", + "ident": [ + { + "text": "CCE-80411-2", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72185", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86809", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-030810", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204557r603261_rule", + "time": "2021-12-17T10:39:39", + "severity": "medium", + "version": "RHEL-07-030800", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-80410-4", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86807", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72183", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000135", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:721", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the pam_timestamp_check command.", + "id": "V-204558", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:730", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"pam_timestamp_check\" command occur. \n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\": \n\n-a always,exit -F path=/usr/sbin/pam_timestamp_check -F auid>=1000 -F auid!=unset -k privileged-pam\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204558\",\n \"title\": {\n \"text\": \"SRG-OS-000471-GPOS-00215\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204558r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-030810\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must audit all uses of the pam_timestamp_check command.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-80411-2\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-72185\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86809\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"pam_timestamp_check\\\" command occur. \\n\\nAdd or update the following rule in \\\"/etc/audit/rules.d/audit.rules\\\": \\n\\n-a always,exit -F path=/usr/sbin/pam_timestamp_check -F auid>=1000 -F auid!=unset -k privileged-pam\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4682r462670_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4682r462670_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:730\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000172" + ], + "nist": [ + "AU-12 c" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one. \\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000471-GPOS-00216, SRG-OS-000477-GPOS-00222\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204559", + "group_title": "SRG-OS-000471-GPOS-00216", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204559r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:93705", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4683r88870_fix", + "fixtext_fixref": "F-4683r88870_fix", + "ident": [ + { + "text": "V-78999", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-93705", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-030819", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204558r603261_rule", + "time": "2021-12-17T10:39:39", + "severity": "medium", + "version": "RHEL-07-030810", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-80411-2", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72185", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86809", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:730", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the create_module syscall.", + "id": "V-204559", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one. \n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nSatisfies: SRG-OS-000471-GPOS-00216, SRG-OS-000477-GPOS-00222", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:93705", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"create_module\" syscall occur.\n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S create_module -k module-change\n\n-a always,exit -F arch=b64 -S create_module -k module-change\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204559\",\n \"title\": {\n \"text\": \"SRG-OS-000471-GPOS-00216\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204559r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-030819\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must audit all uses of the create_module syscall.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one. \\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000471-GPOS-00216, SRG-OS-000477-GPOS-00222</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"V-78999\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-93705\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"create_module\\\" syscall occur.\\n\\nAdd or update the following rules in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F arch=b32 -S create_module -k module-change\\n\\n-a always,exit -F arch=b64 -S create_module -k module-change\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4683r88870_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4683r88870_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:93705\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000172" + ], + "nist": [ + "AU-12 c" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one. \\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000471-GPOS-00216, SRG-OS-000477-GPOS-00222\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204560", + "group_title": "SRG-OS-000471-GPOS-00216", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204560r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:657", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4684r88873_fix", + "fixtext_fixref": "F-4684r88873_fix", + "ident": [ + { + "text": "CCE-80414-6", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72187", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86811", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-030820", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204559r603261_rule", + "time": "2021-12-17T10:39:39", + "severity": "medium", + "version": "RHEL-07-030819", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "V-78999", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-93705", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:93705", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the init_module syscall.", + "id": "V-204560", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one. \n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nSatisfies: SRG-OS-000471-GPOS-00216, SRG-OS-000477-GPOS-00222", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:657", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"init_module\" syscall occur. \n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S init_module -k module-change\n\n-a always,exit -F arch=b64 -S init_module -k module-change\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204560\",\n \"title\": {\n \"text\": \"SRG-OS-000471-GPOS-00216\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204560r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-030820\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must audit all uses of the init_module syscall.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one. \\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000471-GPOS-00216, SRG-OS-000477-GPOS-00222</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-80414-6\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-72187\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86811\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"init_module\\\" syscall occur. \\n\\nAdd or update the following rules in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F arch=b32 -S init_module -k module-change\\n\\n-a always,exit -F arch=b64 -S init_module -k module-change\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4684r88873_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4684r88873_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:657\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000172" + ], + "nist": [ + "AU-12 c" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one. \\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000471-GPOS-00216, SRG-OS-000477-GPOS-00222\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204561", + "group_title": "SRG-OS-000471-GPOS-00216", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204561r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:93707", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4685r88876_fix", + "fixtext_fixref": "F-4685r88876_fix", + "ident": [ + { + "text": "CCE-80547-3", + "system": "http://cce.mitre.org" + }, + { + "text": "V-79001", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-93707", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-030821", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204560r603261_rule", + "time": "2021-12-17T10:39:39", + "severity": "medium", + "version": "RHEL-07-030820", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-80414-6", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72187", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86811", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:657", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the finit_module syscall.", + "id": "V-204561", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one. \n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nSatisfies: SRG-OS-000471-GPOS-00216, SRG-OS-000477-GPOS-00222", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:93707", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"finit_module\" syscall occur. \n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\": \n\n-a always,exit -F arch=b32 -S finit_module -k module-change\n\n-a always,exit -F arch=b64 -S finit_module -k module-change\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204561\",\n \"title\": {\n \"text\": \"SRG-OS-000471-GPOS-00216\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204561r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-030821\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must audit all uses of the finit_module syscall.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one. \\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000471-GPOS-00216, SRG-OS-000477-GPOS-00222</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-80547-3\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-79001\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-93707\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"finit_module\\\" syscall occur. \\n\\nAdd or update the following rules in \\\"/etc/audit/rules.d/audit.rules\\\": \\n\\n-a always,exit -F arch=b32 -S finit_module -k module-change\\n\\n-a always,exit -F arch=b64 -S finit_module -k module-change\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4685r88876_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4685r88876_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:93707\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000172" + ], + "nist": [ + "AU-12 c" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one. \\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000471-GPOS-00216, SRG-OS-000477-GPOS-00222\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204562", + "group_title": "SRG-OS-000471-GPOS-00216", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204562r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:658", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4686r88879_fix", + "fixtext_fixref": "F-4686r88879_fix", + "ident": [ + { + "text": "CCE-80415-3", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72189", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86813", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-030830", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204561r603261_rule", + "time": "2021-12-17T10:39:39", + "severity": "medium", + "version": "RHEL-07-030821", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-80547-3", + "system": "http://cce.mitre.org" + }, + { + "text": "V-79001", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-93707", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:93707", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the delete_module syscall.", + "id": "V-204562", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one. \n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nSatisfies: SRG-OS-000471-GPOS-00216, SRG-OS-000477-GPOS-00222", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:658", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"delete_module\" syscall occur. \n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\": \n\n-a always,exit -F arch=b32 -S delete_module -k module-change\n\n-a always,exit -F arch=b64 -S delete_module -k module-change\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204562\",\n \"title\": {\n \"text\": \"SRG-OS-000471-GPOS-00216\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204562r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-030830\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must audit all uses of the delete_module syscall.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one. \\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000471-GPOS-00216, SRG-OS-000477-GPOS-00222</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-80415-3\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-72189\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86813\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"delete_module\\\" syscall occur. \\n\\nAdd or update the following rules in \\\"/etc/audit/rules.d/audit.rules\\\": \\n\\n-a always,exit -F arch=b32 -S delete_module -k module-change\\n\\n-a always,exit -F arch=b64 -S delete_module -k module-change\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4686r88879_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4686r88879_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:658\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000172" + ], + "nist": [ + "AU-12 c" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one. \\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000471-GPOS-00216, SRG-OS-000477-GPOS-00222\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204563", + "group_title": "SRG-OS-000471-GPOS-00216", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204563r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:86815", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4687r462673_fix", + "fixtext_fixref": "F-4687r462673_fix", + "ident": [ + { + "text": "SV-86815", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72191", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-030840", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204562r603261_rule", + "time": "2021-12-17T10:39:39", + "severity": "medium", + "version": "RHEL-07-030830", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-80415-3", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72189", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86813", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:658", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the kmod command.", + "id": "V-204563", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one. \n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000471-GPOS-00216, SRG-OS-000477-GPOS-00222", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:86815", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"kmod\" command occur. \n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-w /usr/bin/kmod -p x -F auid!=unset -k module-change\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204563\",\n \"title\": {\n \"text\": \"SRG-OS-000471-GPOS-00216\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204563r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-030840\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must audit all uses of the kmod command.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one. \\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000471-GPOS-00216, SRG-OS-000477-GPOS-00222</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"SV-86815\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72191\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"kmod\\\" command occur. \\n\\nAdd or update the following rule in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-w /usr/bin/kmod -p x -F auid!=unset -k module-change\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4687r462673_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4687r462673_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:86815\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000018", + "CCI-000172", + "CCI-001403", + "CCI-002130" + ], + "nist": [ + "AC-2 (4)", + "AU-12 c", + "AC-2 (4)", + "AC-2 (4)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000004-GPOS-00004, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000476-GPOS-00221\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204564", + "group_title": "SRG-OS-000004-GPOS-00004", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204564r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:875", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4688r88885_fix", + "fixtext_fixref": "F-4688r88885_fix", + "ident": [ + { + "text": "CCE-80435-1", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86821", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72197", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000018", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001403", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002130", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-030870", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204563r603261_rule", + "time": "2021-12-17T10:39:39", + "severity": "medium", + "version": "RHEL-07-030840", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "SV-86815", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72191", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:86815", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/passwd.", + "id": "V-204564", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nSatisfies: SRG-OS-000004-GPOS-00004, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000476-GPOS-00221", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:875", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records for all account creations, modifications, disabling, and termination events that affect \"/etc/passwd\".\n\nAdd or update the following rule \"/etc/audit/rules.d/audit.rules\":\n\n-w /etc/passwd -p wa -k identity\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204564\",\n \"title\": {\n \"text\": \"SRG-OS-000004-GPOS-00004\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204564r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-030870\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/passwd.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000004-GPOS-00004, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000476-GPOS-00221</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-80435-1\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86821\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72197\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000018\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-001403\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002130\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to generate audit records for all account creations, modifications, disabling, and termination events that affect \\\"/etc/passwd\\\".\\n\\nAdd or update the following rule \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-w /etc/passwd -p wa -k identity\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4688r88885_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4688r88885_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:875\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000018", + "CCI-000172", + "CCI-001403", + "CCI-002130" + ], + "nist": [ + "AC-2 (4)", + "AU-12 c", + "AC-2 (4)", + "AC-2 (4)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204565", + "group_title": "SRG-OS-000004-GPOS-00004", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204565r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:866", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4689r88888_fix", + "fixtext_fixref": "F-4689r88888_fix", + "ident": [ + { + "text": "CCE-80433-6", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-87817", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-73165", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000018", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001403", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002130", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-030871", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204564r603261_rule", + "time": "2021-12-17T10:39:39", + "severity": "medium", + "version": "RHEL-07-030870", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-80435-1", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86821", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72197", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000018", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001403", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002130", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:875", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/group.", + "id": "V-204565", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:866", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records for all account creations, modifications, disabling, and termination events that affect \"/etc/group\".\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-w /etc/group -p wa -k identity\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204565\",\n \"title\": {\n \"text\": \"SRG-OS-000004-GPOS-00004\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204565r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-030871\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/group.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-80433-6\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-87817\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-73165\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000018\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-001403\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002130\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to generate audit records for all account creations, modifications, disabling, and termination events that affect \\\"/etc/group\\\".\\n\\nAdd or update the following rule in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-w /etc/group -p wa -k identity\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4689r88888_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4689r88888_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:866\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000018", + "CCI-000172", + "CCI-001403", + "CCI-002130" + ], + "nist": [ + "AC-2 (4)", + "AU-12 c", + "AC-2 (4)", + "AC-2 (4)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204566", + "group_title": "SRG-OS-000004-GPOS-00004", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204566r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:869", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4690r88891_fix", + "fixtext_fixref": "F-4690r88891_fix", + "ident": [ + { + "text": "CCE-80432-8", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-87819", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-73167", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000018", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001403", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002130", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-030872", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204565r603261_rule", + "time": "2021-12-17T10:39:39", + "severity": "medium", + "version": "RHEL-07-030871", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-80433-6", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-87817", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-73165", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000018", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001403", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002130", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:866", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/gshadow.", + "id": "V-204566", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:869", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records for all account creations, modifications, disabling, and termination events that affect \"/etc/gshadow\".\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-w /etc/gshadow -p wa -k identity\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204566\",\n \"title\": {\n \"text\": \"SRG-OS-000004-GPOS-00004\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204566r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-030872\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/gshadow.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-80432-8\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-87819\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-73167\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000018\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-001403\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002130\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to generate audit records for all account creations, modifications, disabling, and termination events that affect \\\"/etc/gshadow\\\".\\n\\nAdd or update the following rule in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-w /etc/gshadow -p wa -k identity\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4690r88891_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4690r88891_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:869\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000018", + "CCI-000172", + "CCI-001403", + "CCI-002130" + ], + "nist": [ + "AC-2 (4)", + "AU-12 c", + "AC-2 (4)", + "AC-2 (4)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204567", + "group_title": "SRG-OS-000004-GPOS-00004", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204567r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:878", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4691r88894_fix", + "fixtext_fixref": "F-4691r88894_fix", + "ident": [ + { + "text": "CCE-80431-0", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-87823", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-73171", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000018", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001403", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002130", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-030873", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204566r603261_rule", + "time": "2021-12-17T10:39:39", + "severity": "medium", + "version": "RHEL-07-030872", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-80432-8", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-87819", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-73167", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000018", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001403", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002130", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:869", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/shadow.", + "id": "V-204567", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:878", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/shadow.\n\nAdd or update the following file system rule in \"/etc/audit/rules.d/audit.rules\":\n\n-w /etc/shadow -p wa -k identity\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204567\",\n \"title\": {\n \"text\": \"SRG-OS-000004-GPOS-00004\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204567r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-030873\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/shadow.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-80431-0\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-87823\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-73171\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000018\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-001403\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002130\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/shadow.\\n\\nAdd or update the following file system rule in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-w /etc/shadow -p wa -k identity\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4691r88894_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4691r88894_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:878\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000018", + "CCI-000172", + "CCI-001403", + "CCI-002130" + ], + "nist": [ + "AC-2 (4)", + "AU-12 c", + "AC-2 (4)", + "AC-2 (4)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204568", + "group_title": "SRG-OS-000004-GPOS-00004", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204568r744115_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:872", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4692r744114_fix", + "fixtext_fixref": "F-4692r744114_fix", + "ident": [ + { + "text": "CCE-80430-2", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-87825", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-73173", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000018", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001403", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002130", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-030874", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204567r603261_rule", + "time": "2021-12-17T10:39:39", + "severity": "medium", + "version": "RHEL-07-030873", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-80431-0", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-87823", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-73171", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000018", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001403", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002130", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:878", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/security/opasswd.", + "id": "V-204568", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:872", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/security/opasswd.\n\nAdd or update the following file system rule in \"/etc/audit/rules.d/audit.rules\":\n\n-w /etc/security/opasswd -p wa -k identity\n\nThe audit daemon must be restarted for the changes to take effect:\n# systemctl restart auditd", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204568\",\n \"title\": {\n \"text\": \"SRG-OS-000004-GPOS-00004\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204568r744115_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-030874\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/security/opasswd.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-80430-2\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-87825\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-73173\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000018\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-001403\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002130\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/security/opasswd.\\n\\nAdd or update the following file system rule in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-w /etc/security/opasswd -p wa -k identity\\n\\nThe audit daemon must be restarted for the changes to take effect:\\n# systemctl restart auditd\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4692r744114_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4692r744114_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:872\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000172", + "CCI-002884" + ], + "nist": [ + "AU-12 c", + "MA-4 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"If the system is not configured to audit certain activities and write them to an audit log, it is more difficult to detect and track system compromises and damages incurred during a system compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000466-GPOS-00210, SRG-OS-000467-GPOS-00211, SRG-OS-000468-GPOS-00212, SRG-OS-000392-GPOS-00172\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204569", + "group_title": "SRG-OS-000466-GPOS-00210", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204569r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:628", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4693r462676_fix", + "fixtext_fixref": "F-4693r462676_fix", + "ident": [ + { + "text": "CCE-27206-2", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86823", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72199", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-030880", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204568r744115_rule", + "time": "2021-12-17T10:39:39", + "severity": "medium", + "version": "RHEL-07-030874", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-80430-2", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-87825", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-73173", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000018", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001403", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002130", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:872", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the rename syscall.", + "id": "V-204569", + "desc": "If the system is not configured to audit certain activities and write them to an audit log, it is more difficult to detect and track system compromises and damages incurred during a system compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000466-GPOS-00210, SRG-OS-000467-GPOS-00211, SRG-OS-000468-GPOS-00212, SRG-OS-000392-GPOS-00172", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:628", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"rename\" syscall occur.\n\nAdd the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S rename -F auid>=1000 -F auid!=unset -k delete\n\n-a always,exit -F arch=b64 -S rename -F auid>=1000 -F auid!=unset -k delete\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204569\",\n \"title\": {\n \"text\": \"SRG-OS-000466-GPOS-00210\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204569r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-030880\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must audit all uses of the rename syscall.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>If the system is not configured to audit certain activities and write them to an audit log, it is more difficult to detect and track system compromises and damages incurred during a system compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000466-GPOS-00210, SRG-OS-000467-GPOS-00211, SRG-OS-000468-GPOS-00212, SRG-OS-000392-GPOS-00172</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-27206-2\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86823\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72199\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002884\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"rename\\\" syscall occur.\\n\\nAdd the following rules in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F arch=b32 -S rename -F auid>=1000 -F auid!=unset -k delete\\n\\n-a always,exit -F arch=b64 -S rename -F auid>=1000 -F auid!=unset -k delete\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4693r462676_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4693r462676_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:628\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000172", + "CCI-002884" + ], + "nist": [ + "AU-12 c", + "MA-4 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"If the system is not configured to audit certain activities and write them to an audit log, it is more difficult to detect and track system compromises and damages incurred during a system compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000466-GPOS-00210, SRG-OS-000467-GPOS-00211, SRG-OS-000468-GPOS-00212, SRG-OS-000392-GPOS-00172\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204570", + "group_title": "SRG-OS-000466-GPOS-00210", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204570r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:629", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4694r462679_fix", + "fixtext_fixref": "F-4694r462679_fix", + "ident": [ + { + "text": "CCE-80413-8", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86825", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72201", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-030890", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204569r603261_rule", + "time": "2021-12-17T10:39:39", + "severity": "medium", + "version": "RHEL-07-030880", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-27206-2", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86823", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72199", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:628", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the renameat syscall.", + "id": "V-204570", + "desc": "If the system is not configured to audit certain activities and write them to an audit log, it is more difficult to detect and track system compromises and damages incurred during a system compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000466-GPOS-00210, SRG-OS-000467-GPOS-00211, SRG-OS-000468-GPOS-00212, SRG-OS-000392-GPOS-00172", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:629", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"renameat\" syscall occur.\n\nAdd the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S renameat -F auid>=1000 -F auid!=unset -k delete\n\n-a always,exit -F arch=b64 -S renameat -F auid>=1000 -F auid!=unset -k delete\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204570\",\n \"title\": {\n \"text\": \"SRG-OS-000466-GPOS-00210\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204570r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-030890\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must audit all uses of the renameat syscall.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>If the system is not configured to audit certain activities and write them to an audit log, it is more difficult to detect and track system compromises and damages incurred during a system compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000466-GPOS-00210, SRG-OS-000467-GPOS-00211, SRG-OS-000468-GPOS-00212, SRG-OS-000392-GPOS-00172</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-80413-8\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86825\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72201\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002884\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"renameat\\\" syscall occur.\\n\\nAdd the following rules in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F arch=b32 -S renameat -F auid>=1000 -F auid!=unset -k delete\\n\\n-a always,exit -F arch=b64 -S renameat -F auid>=1000 -F auid!=unset -k delete\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4694r462679_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4694r462679_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:629\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000172", + "CCI-002884" + ], + "nist": [ + "AU-12 c", + "MA-4 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"If the system is not configured to audit certain activities and write them to an audit log, it is more difficult to detect and track system compromises and damages incurred during a system compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000466-GPOS-00210, SRG-OS-000467-GPOS-00211, SRG-OS-000468-GPOS-00212, SRG-OS-000392-GPOS-00172\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204571", + "group_title": "SRG-OS-000466-GPOS-00210", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204571r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:625", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4695r462682_fix", + "fixtext_fixref": "F-4695r462682_fix", + "ident": [ + { + "text": "CCE-80412-0", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72203", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86827", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-030900", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204570r603261_rule", + "time": "2021-12-17T10:39:39", + "severity": "medium", + "version": "RHEL-07-030890", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-80413-8", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86825", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72201", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:629", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the rmdir syscall.", + "id": "V-204571", + "desc": "If the system is not configured to audit certain activities and write them to an audit log, it is more difficult to detect and track system compromises and damages incurred during a system compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000466-GPOS-00210, SRG-OS-000467-GPOS-00211, SRG-OS-000468-GPOS-00212, SRG-OS-000392-GPOS-00172", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:625", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"rmdir\" syscall occur.\n\nAdd the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S rmdir -F auid>=1000 -F auid!=unset -k delete\n\n-a always,exit -F arch=b64 -S rmdir -F auid>=1000 -F auid!=unset -k delete\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204571\",\n \"title\": {\n \"text\": \"SRG-OS-000466-GPOS-00210\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204571r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-030900\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must audit all uses of the rmdir syscall.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>If the system is not configured to audit certain activities and write them to an audit log, it is more difficult to detect and track system compromises and damages incurred during a system compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000466-GPOS-00210, SRG-OS-000467-GPOS-00211, SRG-OS-000468-GPOS-00212, SRG-OS-000392-GPOS-00172</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-80412-0\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-72203\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86827\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002884\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"rmdir\\\" syscall occur.\\n\\nAdd the following rules in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F arch=b32 -S rmdir -F auid>=1000 -F auid!=unset -k delete\\n\\n-a always,exit -F arch=b64 -S rmdir -F auid>=1000 -F auid!=unset -k delete\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4695r462682_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4695r462682_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:625\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000172", + "CCI-002884" + ], + "nist": [ + "AU-12 c", + "MA-4 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"If the system is not configured to audit certain activities and write them to an audit log, it is more difficult to detect and track system compromises and damages incurred during a system compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000466-GPOS-00210, SRG-OS-000467-GPOS-00211, SRG-OS-000468-GPOS-00212, SRG-OS-000392-GPOS-00172\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204572", + "group_title": "SRG-OS-000466-GPOS-00210", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204572r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:626", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4696r462685_fix", + "fixtext_fixref": "F-4696r462685_fix", + "ident": [ + { + "text": "CCE-27206-2", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72205", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86829", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-030910", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204571r603261_rule", + "time": "2021-12-17T10:39:39", + "severity": "medium", + "version": "RHEL-07-030900", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-80412-0", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72203", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86827", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:625", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the unlink syscall.", + "id": "V-204572", + "desc": "If the system is not configured to audit certain activities and write them to an audit log, it is more difficult to detect and track system compromises and damages incurred during a system compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000466-GPOS-00210, SRG-OS-000467-GPOS-00211, SRG-OS-000468-GPOS-00212, SRG-OS-000392-GPOS-00172", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:626", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"unlink\" syscall occur.\n\nAdd the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S unlink -F auid>=1000 -F auid!=unset -k delete\n\n-a always,exit -F arch=b64 -S unlink -F auid>=1000 -F auid!=unset -k delete\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204572\",\n \"title\": {\n \"text\": \"SRG-OS-000466-GPOS-00210\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204572r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-030910\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must audit all uses of the unlink syscall.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>If the system is not configured to audit certain activities and write them to an audit log, it is more difficult to detect and track system compromises and damages incurred during a system compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000466-GPOS-00210, SRG-OS-000467-GPOS-00211, SRG-OS-000468-GPOS-00212, SRG-OS-000392-GPOS-00172</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-27206-2\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-72205\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86829\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002884\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"unlink\\\" syscall occur.\\n\\nAdd the following rules in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F arch=b32 -S unlink -F auid>=1000 -F auid!=unset -k delete\\n\\n-a always,exit -F arch=b64 -S unlink -F auid>=1000 -F auid!=unset -k delete\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4696r462685_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4696r462685_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:626\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000172", + "CCI-002884" + ], + "nist": [ + "AU-12 c", + "MA-4 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"If the system is not configured to audit certain activities and write them to an audit log, it is more difficult to detect and track system compromises and damages incurred during a system compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000466-GPOS-00210, SRG-OS-000467-GPOS-00211, SRG-OS-000468-GPOS-00212, SRG-OS-000392-GPOS-00172\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204573", + "group_title": "SRG-OS-000466-GPOS-00210", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204573r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:627", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4697r462688_fix", + "fixtext_fixref": "F-4697r462688_fix", + "ident": [ + { + "text": "CCE-27206-2", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72207", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86831", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-030920", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204572r603261_rule", + "time": "2021-12-17T10:39:39", + "severity": "medium", + "version": "RHEL-07-030910", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-27206-2", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72205", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86829", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:626", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the unlinkat syscall.", + "id": "V-204573", + "desc": "If the system is not configured to audit certain activities and write them to an audit log, it is more difficult to detect and track system compromises and damages incurred during a system compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000466-GPOS-00210, SRG-OS-000467-GPOS-00211, SRG-OS-000468-GPOS-00212, SRG-OS-000392-GPOS-00172", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:627", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"unlinkat\" syscall occur.\n\nAdd the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S unlinkat -F auid>=1000 -F auid!=unset -k delete\n\n-a always,exit -F arch=b64 -S unlinkat -F auid>=1000 -F auid!=unset -k delete\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204573\",\n \"title\": {\n \"text\": \"SRG-OS-000466-GPOS-00210\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204573r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-030920\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must audit all uses of the unlinkat syscall.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>If the system is not configured to audit certain activities and write them to an audit log, it is more difficult to detect and track system compromises and damages incurred during a system compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000466-GPOS-00210, SRG-OS-000467-GPOS-00211, SRG-OS-000468-GPOS-00212, SRG-OS-000392-GPOS-00172</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-27206-2\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-72207\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86831\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002884\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"unlinkat\\\" syscall occur.\\n\\nAdd the following rules in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F arch=b32 -S unlinkat -F auid>=1000 -F auid!=unset -k delete\\n\\n-a always,exit -F arch=b64 -S unlinkat -F auid>=1000 -F auid!=unset -k delete\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4697r462688_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4697r462688_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:627\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000054" + ], + "nist": [ + "AC-10" + ], + "severity": "low", + "description": "{\"VulnDiscussion\":\"Operating system management includes the ability to control the number of users and user sessions that utilize an operating system. Limiting the number of allowed users and sessions per user is helpful in reducing the risks related to DoS attacks.\\n\\nThis requirement addresses concurrent sessions for information system accounts and does not address concurrent sessions by single users via multiple system accounts. The maximum number of concurrent sessions should be defined based on mission needs and the operational environment for each system.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204576", + "group_title": "SRG-OS-000027-GPOS-00008", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204576r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-export": { + "export-name": "oval:mil.disa.stig.rhel7:var:3792", + "value-id": "xccdf_mil.disa.stig_value_var_accounts_max_concurrent_login_sessions" + }, + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:449", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4700r88921_fix", + "fixtext_fixref": "F-4700r88921_fix", + "ident": [ + { + "text": "CCE-27081-9", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72217", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86841", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000054", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-040000", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204573r603261_rule", + "time": "2021-12-17T10:39:39", + "severity": "medium", + "version": "RHEL-07-030920", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-27206-2", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72207", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86831", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:627", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must limit the number of concurrent sessions to 10 for all accounts and/or account types.", + "id": "V-204576", + "desc": "Operating system management includes the ability to control the number of users and user sessions that utilize an operating system. Limiting the number of allowed users and sessions per user is helpful in reducing the risks related to DoS attacks.\n\nThis requirement addresses concurrent sessions for information system accounts and does not address concurrent sessions by single users via multiple system accounts. The maximum number of concurrent sessions should be defined based on mission needs and the operational environment for each system.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:449", + "label": "check" + }, + { + "data": "Configure the operating system to limit the number of concurrent sessions to \"10\" for all accounts and/or account types.\n\nAdd the following line to the top of the /etc/security/limits.conf or in a \".conf\" file defined in /etc/security/limits.d/ :\n\n* hard maxlogins 10", + "label": "fix" + } + ], + "impact": 0.3, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204576\",\n \"title\": {\n \"text\": \"SRG-OS-000027-GPOS-00008\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204576r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"low\",\n \"version\": {\n \"text\": \"RHEL-07-040000\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must limit the number of concurrent sessions to 10 for all accounts and/or account types.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Operating system management includes the ability to control the number of users and user sessions that utilize an operating system. Limiting the number of allowed users and sessions per user is helpful in reducing the risks related to DoS attacks.\\n\\nThis requirement addresses concurrent sessions for information system accounts and does not address concurrent sessions by single users via multiple system accounts. The maximum number of concurrent sessions should be defined based on mission needs and the operational environment for each system.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-27081-9\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-72217\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86841\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000054\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to limit the number of concurrent sessions to \\\"10\\\" for all accounts and/or account types.\\n\\nAdd the following line to the top of the /etc/security/limits.conf or in a \\\".conf\\\" file defined in /etc/security/limits.d/ :\\n\\n* hard maxlogins 10\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4700r88921_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4700r88921_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-export\": {\n \"export-name\": \"oval:mil.disa.stig.rhel7:var:3792\",\n \"value-id\": \"xccdf_mil.disa.stig_value_var_accounts_max_concurrent_login_sessions\"\n },\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:449\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000068", + "CCI-000366", + "CCI-000803" + ], + "nist": [ + "AC-17 (2)", + "CM-6 b", + "IA-7" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Unapproved mechanisms that are used for authentication to the cryptographic module are not verified and therefore cannot be relied upon to provide confidentiality or integrity, and DoD data may be compromised.\\n\\nOperating systems utilizing encryption are required to use FIPS-compliant mechanisms for authenticating to cryptographic modules.\\n\\nFIPS 140-2 is the current standard for validating that mechanisms used to access cryptographic modules utilize authentication that meets DoD requirements. This allows for Security Levels 1, 2, 3, or 4 for use on a general purpose computing system.\\n\\nThe system will attempt to use the first cipher presented by the client that matches the server list. Listing the values \\\"strongest to weakest\\\" is a method to ensure the use of the strongest cipher available to secure the SSH connection.\\n\\nSatisfies: SRG-OS-000033-GPOS-00014, SRG-OS-000120-GPOS-00061, SRG-OS-000125-GPOS-00065, SRG-OS-000250-GPOS-00093, SRG-OS-000393-GPOS-00173\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204578", + "group_title": "SRG-OS-000033-GPOS-00014", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204578r744116_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:1399", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4702r622306_fix", + "fixtext_fixref": "F-4702r622306_fix", + "ident": [ + { + "text": "CCE-27295-5", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72221", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86845", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000068", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000803", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-040110", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204576r603261_rule", + "time": "2021-12-17T10:39:39", + "severity": "low", + "version": "RHEL-07-040000", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-27081-9", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72217", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86841", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000054", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-export": { + "export-name": "oval:mil.disa.stig.rhel7:var:3792", + "value-id": "xccdf_mil.disa.stig_value_var_accounts_max_concurrent_login_sessions" + }, + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:449", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + }, + "value": { + "id": "xccdf_mil.disa.stig_value_var_accounts_max_concurrent_login_sessions", + "operator": "equals", + "type": "number", + "title": { + "text": "Maximum concurrent login sessions", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "description": { + "text": "Maximum number of concurrent sessions by a user", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "value": [ + 10, + { + "text": 1, + "selector": "1" + }, + { + "text": 3, + "selector": "3" + }, + { + "text": 5, + "selector": "5" + }, + { + "text": 10, + "selector": "10" + }, + { + "text": 15, + "selector": "15" + }, + { + "text": 20, + "selector": "20" + } + ] + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux 7 operating system must implement DoD-approved encryption to protect the confidentiality of SSH connections.", + "id": "V-204578", + "desc": "Unapproved mechanisms that are used for authentication to the cryptographic module are not verified and therefore cannot be relied upon to provide confidentiality or integrity, and DoD data may be compromised.\n\nOperating systems utilizing encryption are required to use FIPS-compliant mechanisms for authenticating to cryptographic modules.\n\nFIPS 140-2 is the current standard for validating that mechanisms used to access cryptographic modules utilize authentication that meets DoD requirements. This allows for Security Levels 1, 2, 3, or 4 for use on a general purpose computing system.\n\nThe system will attempt to use the first cipher presented by the client that matches the server list. Listing the values \"strongest to weakest\" is a method to ensure the use of the strongest cipher available to secure the SSH connection.\n\nSatisfies: SRG-OS-000033-GPOS-00014, SRG-OS-000120-GPOS-00061, SRG-OS-000125-GPOS-00065, SRG-OS-000250-GPOS-00093, SRG-OS-000393-GPOS-00173", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:1399", + "label": "check" + }, + { + "data": "Configure SSH to use FIPS 140-2 approved cryptographic algorithms.\n\nAdd the following line (or modify the line to have the required value) to the \"/etc/ssh/sshd_config\" file (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor).\n\nCiphers aes256-ctr,aes192-ctr,aes128-ctr\n\nThe SSH service must be restarted for changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204578\",\n \"title\": {\n \"text\": \"SRG-OS-000033-GPOS-00014\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204578r744116_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-040110\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux 7 operating system must implement DoD-approved encryption to protect the confidentiality of SSH connections.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Unapproved mechanisms that are used for authentication to the cryptographic module are not verified and therefore cannot be relied upon to provide confidentiality or integrity, and DoD data may be compromised.\\n\\nOperating systems utilizing encryption are required to use FIPS-compliant mechanisms for authenticating to cryptographic modules.\\n\\nFIPS 140-2 is the current standard for validating that mechanisms used to access cryptographic modules utilize authentication that meets DoD requirements. This allows for Security Levels 1, 2, 3, or 4 for use on a general purpose computing system.\\n\\nThe system will attempt to use the first cipher presented by the client that matches the server list. Listing the values \\\"strongest to weakest\\\" is a method to ensure the use of the strongest cipher available to secure the SSH connection.\\n\\nSatisfies: SRG-OS-000033-GPOS-00014, SRG-OS-000120-GPOS-00061, SRG-OS-000125-GPOS-00065, SRG-OS-000250-GPOS-00093, SRG-OS-000393-GPOS-00173</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-27295-5\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-72221\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86845\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000068\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000803\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure SSH to use FIPS 140-2 approved cryptographic algorithms.\\n\\nAdd the following line (or modify the line to have the required value) to the \\\"/etc/ssh/sshd_config\\\" file (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor).\\n\\nCiphers aes256-ctr,aes192-ctr,aes128-ctr\\n\\nThe SSH service must be restarted for changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4702r622306_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4702r622306_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:1399\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001133", + "CCI-002361" + ], + "nist": [ + "SC-10", + "AC-12" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Terminating an idle session within a short time period reduces the window of opportunity for unauthorized personnel to take control of a management session enabled on the console or console port that has been left unattended. In addition, quickly terminating an idle session will also free up resources committed by the managed network element. \\n\\nTerminating network connections associated with communications sessions includes, for example, de-allocating associated TCP/IP address/port pairs at the operating system level and de-allocating networking assignments at the application level if multiple application sessions are using a single operating system-level network connection. This does not mean that the operating system terminates all sessions or network access; it only ends the inactive session and releases the resources associated with that session.\\n\\nSatisfies: SRG-OS-000029-GPOS-00010, SRG-OS-000163-GPOS-00072\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204579", + "group_title": "SRG-OS-000163-GPOS-00072", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204579r646844_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:510", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4703r646843_fix", + "fixtext_fixref": "F-4703r646843_fix", + "ident": [ + { + "text": "SV-86847", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72223", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001133", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002361", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-040160", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204578r744116_rule", + "time": "2021-12-17T10:39:39", + "severity": "medium", + "version": "RHEL-07-040110", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-27295-5", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72221", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86845", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000068", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000803", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:1399", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that all network connections associated with a communication session are terminated at the end of the session or after 15 minutes of inactivity from the user at a command prompt, except to fulfill documented and validated mission requirements.", + "id": "V-204579", + "desc": "Terminating an idle session within a short time period reduces the window of opportunity for unauthorized personnel to take control of a management session enabled on the console or console port that has been left unattended. In addition, quickly terminating an idle session will also free up resources committed by the managed network element. \n\nTerminating network connections associated with communications sessions includes, for example, de-allocating associated TCP/IP address/port pairs at the operating system level and de-allocating networking assignments at the application level if multiple application sessions are using a single operating system-level network connection. This does not mean that the operating system terminates all sessions or network access; it only ends the inactive session and releases the resources associated with that session.\n\nSatisfies: SRG-OS-000029-GPOS-00010, SRG-OS-000163-GPOS-00072", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:510", + "label": "check" + }, + { + "data": "Configure the operating system to terminate all network connections associated with a communications session at the end of the session or after a period of inactivity.\n\nCreate a script to enforce the inactivity timeout (for example /etc/profile.d/tmout.sh) such as:\n\n#!/bin/bash\n\ndeclare -xr TMOUT=900", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204579\",\n \"title\": {\n \"text\": \"SRG-OS-000163-GPOS-00072\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204579r646844_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-040160\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must be configured so that all network connections associated with a communication session are terminated at the end of the session or after 15 minutes of inactivity from the user at a command prompt, except to fulfill documented and validated mission requirements.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Terminating an idle session within a short time period reduces the window of opportunity for unauthorized personnel to take control of a management session enabled on the console or console port that has been left unattended. In addition, quickly terminating an idle session will also free up resources committed by the managed network element. \\n\\nTerminating network connections associated with communications sessions includes, for example, de-allocating associated TCP/IP address/port pairs at the operating system level and de-allocating networking assignments at the application level if multiple application sessions are using a single operating system-level network connection. This does not mean that the operating system terminates all sessions or network access; it only ends the inactive session and releases the resources associated with that session.\\n\\nSatisfies: SRG-OS-000029-GPOS-00010, SRG-OS-000163-GPOS-00072</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"SV-86847\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72223\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-001133\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002361\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to terminate all network connections associated with a communications session at the end of the session or after a period of inactivity.\\n\\nCreate a script to enforce the inactivity timeout (for example /etc/profile.d/tmout.sh) such as:\\n\\n#!/bin/bash\\n\\ndeclare -xr TMOUT=900\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4703r646843_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4703r646843_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:510\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Address space layout randomization (ASLR) makes it more difficult for an attacker to predict the location of attack code he or she has introduced into a process's address space during an attempt at exploitation. Additionally, ASLR also makes it more difficult for an attacker to know the location of existing code in order to repurpose it using return-oriented programming (ROP) techniques.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204584", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204584r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:92521", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4708r88945_fix", + "fixtext_fixref": "F-4708r88945_fix", + "ident": [ + { + "text": "SV-92521", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-77825", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-040201", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204579r646844_rule", + "time": "2021-12-17T10:39:39", + "severity": "medium", + "version": "RHEL-07-040160", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "SV-86847", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72223", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001133", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002361", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:510", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must implement virtual address space randomization.", + "id": "V-204584", + "desc": "Address space layout randomization (ASLR) makes it more difficult for an attacker to predict the location of attack code he or she has introduced into a process's address space during an attempt at exploitation. Additionally, ASLR also makes it more difficult for an attacker to know the location of existing code in order to repurpose it using return-oriented programming (ROP) techniques.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:92521", + "label": "check" + }, + { + "data": "Configure the operating system implement virtual address space randomization.\n\nSet the system to the required kernel parameter by adding the following line to \"/etc/sysctl.conf\" or a config file in the /etc/sysctl.d/ directory (or modify the line to have the required value):\n\nkernel.randomize_va_space = 2\n\nIssue the following command to make the changes take effect:\n\n# sysctl --system", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204584\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204584r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-040201\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must implement virtual address space randomization.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Address space layout randomization (ASLR) makes it more difficult for an attacker to predict the location of attack code he or she has introduced into a process's address space during an attempt at exploitation. Additionally, ASLR also makes it more difficult for an attacker to know the location of existing code in order to repurpose it using return-oriented programming (ROP) techniques.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"SV-92521\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-77825\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system implement virtual address space randomization.\\n\\nSet the system to the required kernel parameter by adding the following line to \\\"/etc/sysctl.conf\\\" or a config file in the /etc/sysctl.d/ directory (or modify the line to have the required value):\\n\\nkernel.randomize_va_space = 2\\n\\nIssue the following command to make the changes take effect:\\n\\n# sysctl --system\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4708r88945_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4708r88945_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:92521\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:40" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-002418", + "CCI-002420", + "CCI-002421", + "CCI-002422" + ], + "nist": [ + "SC-8", + "SC-8 (2)", + "SC-8 (1)", + "SC-8 (2)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without protection of the transmitted information, confidentiality and integrity may be compromised because unprotected communications can be intercepted and either read or altered. \\n\\nThis requirement applies to both internal and external networks and all types of information system components from which information can be transmitted (e.g., servers, mobile devices, notebook computers, printers, copiers, scanners, and facsimile machines). Communication paths outside the physical protection of a controlled boundary are exposed to the possibility of interception and modification. \\n\\nProtecting the confidentiality and integrity of organizational information can be accomplished by physical means (e.g., employing physical distribution systems) or by logical means (e.g., employing cryptographic techniques). If physical means of protection are employed, logical means (cryptography) do not have to be employed, and vice versa.\\n\\nSatisfies: SRG-OS-000423-GPOS-00187, SRG-OS-000424-GPOS-00188, SRG-OS-000425-GPOS-00189, SRG-OS-000426-GPOS-00190\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204585", + "group_title": "SRG-OS-000423-GPOS-00187", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204585r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:4248", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4709r88948_fix", + "fixtext_fixref": "F-4709r88948_fix", + "ident": [ + { + "text": "CCE-80215-7", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86857", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72233", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-002418", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002420", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002421", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002422", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-040300", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204584r603261_rule", + "time": "2021-12-17T10:39:40", + "severity": "medium", + "version": "RHEL-07-040201", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "SV-92521", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-77825", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:92521", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that all networked systems have SSH installed.", + "id": "V-204585", + "desc": "Without protection of the transmitted information, confidentiality and integrity may be compromised because unprotected communications can be intercepted and either read or altered. \n\nThis requirement applies to both internal and external networks and all types of information system components from which information can be transmitted (e.g., servers, mobile devices, notebook computers, printers, copiers, scanners, and facsimile machines). Communication paths outside the physical protection of a controlled boundary are exposed to the possibility of interception and modification. \n\nProtecting the confidentiality and integrity of organizational information can be accomplished by physical means (e.g., employing physical distribution systems) or by logical means (e.g., employing cryptographic techniques). If physical means of protection are employed, logical means (cryptography) do not have to be employed, and vice versa.\n\nSatisfies: SRG-OS-000423-GPOS-00187, SRG-OS-000424-GPOS-00188, SRG-OS-000425-GPOS-00189, SRG-OS-000426-GPOS-00190", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:4248", + "label": "check" + }, + { + "data": "Install SSH packages onto the host with the following commands:\n\n# yum install openssh-server.x86_64", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204585\",\n \"title\": {\n \"text\": \"SRG-OS-000423-GPOS-00187\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204585r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-040300\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must be configured so that all networked systems have SSH installed.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without protection of the transmitted information, confidentiality and integrity may be compromised because unprotected communications can be intercepted and either read or altered. \\n\\nThis requirement applies to both internal and external networks and all types of information system components from which information can be transmitted (e.g., servers, mobile devices, notebook computers, printers, copiers, scanners, and facsimile machines). Communication paths outside the physical protection of a controlled boundary are exposed to the possibility of interception and modification. \\n\\nProtecting the confidentiality and integrity of organizational information can be accomplished by physical means (e.g., employing physical distribution systems) or by logical means (e.g., employing cryptographic techniques). If physical means of protection are employed, logical means (cryptography) do not have to be employed, and vice versa.\\n\\nSatisfies: SRG-OS-000423-GPOS-00187, SRG-OS-000424-GPOS-00188, SRG-OS-000425-GPOS-00189, SRG-OS-000426-GPOS-00190</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-80215-7\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86857\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72233\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-002418\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002420\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002421\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002422\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Install SSH packages onto the host with the following commands:\\n\\n# yum install openssh-server.x86_64\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4709r88948_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4709r88948_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:4248\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:39:40" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001133", + "CCI-002361" + ], + "nist": [ + "SC-10", + "AC-12" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Terminating an idle SSH session within a short time period reduces the window of opportunity for unauthorized personnel to take control of a management session enabled on the console or console port that has been left unattended. In addition, quickly terminating an idle SSH session will also free up resources committed by the managed network element.\\n\\nTerminating network connections associated with communications sessions includes, for example, de-allocating associated TCP/IP address/port pairs at the operating system level and de-allocating networking assignments at the application level if multiple application sessions are using a single operating system-level network connection. This does not mean that the operating system terminates all sessions or network access; it only ends the inactive session and releases the resources associated with that session.\\n\\nSatisfies: SRG-OS-000163-GPOS-00072, SRG-OS-000279-GPOS-00109\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204587", + "group_title": "SRG-OS-000163-GPOS-00072", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204587r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-export": { + "export-name": "oval:mil.disa.stig.rhel7:var:3866", + "value-id": "xccdf_mil.disa.stig_value_sshd_idle_timeout_value" + }, + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:1391", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4711r88954_fix", + "fixtext_fixref": "F-4711r88954_fix", + "ident": [ + { + "text": "CCE-27433-2", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72237", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86861", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001133", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002361", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-040320", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204585r603261_rule", + "time": "2021-12-17T10:39:40", + "severity": "medium", + "version": "RHEL-07-040300", + "weight": "10.000000", + "result": "pass", + "ident": [ + { + "text": "CCE-80215-7", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86857", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72233", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-002418", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002420", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002421", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002422", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:4248", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that all network connections associated with SSH traffic are terminated at the end of the session or after 10 minutes of inactivity, except to fulfill documented and validated mission requirements.", + "id": "V-204587", + "desc": "Terminating an idle SSH session within a short time period reduces the window of opportunity for unauthorized personnel to take control of a management session enabled on the console or console port that has been left unattended. In addition, quickly terminating an idle SSH session will also free up resources committed by the managed network element.\n\nTerminating network connections associated with communications sessions includes, for example, de-allocating associated TCP/IP address/port pairs at the operating system level and de-allocating networking assignments at the application level if multiple application sessions are using a single operating system-level network connection. This does not mean that the operating system terminates all sessions or network access; it only ends the inactive session and releases the resources associated with that session.\n\nSatisfies: SRG-OS-000163-GPOS-00072, SRG-OS-000279-GPOS-00109", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:1391", + "label": "check" + }, + { + "data": "Configure the operating system to automatically terminate a user session after inactivity time-outs have expired or at shutdown.\n\nAdd the following line (or modify the line to have the required value) to the \"/etc/ssh/sshd_config\" file (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor):\n\nClientAliveInterval 600\n\nThe SSH service must be restarted for changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204587\",\n \"title\": {\n \"text\": \"SRG-OS-000163-GPOS-00072\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204587r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-040320\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must be configured so that all network connections associated with SSH traffic are terminated at the end of the session or after 10 minutes of inactivity, except to fulfill documented and validated mission requirements.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Terminating an idle SSH session within a short time period reduces the window of opportunity for unauthorized personnel to take control of a management session enabled on the console or console port that has been left unattended. In addition, quickly terminating an idle SSH session will also free up resources committed by the managed network element.\\n\\nTerminating network connections associated with communications sessions includes, for example, de-allocating associated TCP/IP address/port pairs at the operating system level and de-allocating networking assignments at the application level if multiple application sessions are using a single operating system-level network connection. This does not mean that the operating system terminates all sessions or network access; it only ends the inactive session and releases the resources associated with that session.\\n\\nSatisfies: SRG-OS-000163-GPOS-00072, SRG-OS-000279-GPOS-00109</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-27433-2\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-72237\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86861\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-001133\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002361\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to automatically terminate a user session after inactivity time-outs have expired or at shutdown.\\n\\nAdd the following line (or modify the line to have the required value) to the \\\"/etc/ssh/sshd_config\\\" file (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor):\\n\\nClientAliveInterval 600\\n\\nThe SSH service must be restarted for changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4711r88954_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4711r88954_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-export\": {\n \"export-name\": \"oval:mil.disa.stig.rhel7:var:3866\",\n \"value-id\": \"xccdf_mil.disa.stig_value_sshd_idle_timeout_value\"\n },\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:1391\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:40" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Configuring this setting for the SSH daemon provides additional assurance that remote logon via SSH will require a password, even in the event of misconfiguration elsewhere.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204588", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204588r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:1379", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4712r88957_fix", + "fixtext_fixref": "F-4712r88957_fix", + "ident": [ + { + "text": "CCE-80373-4", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72239", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86863", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-040330", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204587r603261_rule", + "time": "2021-12-17T10:39:40", + "severity": "medium", + "version": "RHEL-07-040320", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-27433-2", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72237", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86861", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001133", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002361", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-export": { + "export-name": "oval:mil.disa.stig.rhel7:var:3866", + "value-id": "xccdf_mil.disa.stig_value_sshd_idle_timeout_value" + }, + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:1391", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + }, + "value": { + "id": "xccdf_mil.disa.stig_value_sshd_idle_timeout_value", + "operator": "equals", + "type": "number", + "title": { + "text": "SSH session Idle time", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "description": { + "text": "Specify duration of allowed idle time.", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "value": [ + 600, + { + "text": 300, + "selector": "5_minutes" + }, + { + "text": 600, + "selector": "10_minutes" + }, + { + "text": 900, + "selector": "15_minutes" + }, + { + "text": 3600, + "selector": "60_minutes" + }, + { + "text": 7200, + "selector": "120_minutes" + } + ] + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that the SSH daemon does not allow authentication using RSA rhosts authentication.", + "id": "V-204588", + "desc": "Configuring this setting for the SSH daemon provides additional assurance that remote logon via SSH will require a password, even in the event of misconfiguration elsewhere.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:1379", + "label": "check" + }, + { + "data": "Configure the SSH daemon to not allow authentication using RSA rhosts authentication.\n\nAdd the following line in \"/etc/ssh/sshd_config\", or uncomment the line and set the value to \"no\":\n\nRhostsRSAAuthentication no\n\nThe SSH service must be restarted for changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204588\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204588r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-040330\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must be configured so that the SSH daemon does not allow authentication using RSA rhosts authentication.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Configuring this setting for the SSH daemon provides additional assurance that remote logon via SSH will require a password, even in the event of misconfiguration elsewhere.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-80373-4\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-72239\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86863\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the SSH daemon to not allow authentication using RSA rhosts authentication.\\n\\nAdd the following line in \\\"/etc/ssh/sshd_config\\\", or uncomment the line and set the value to \\\"no\\\":\\n\\nRhostsRSAAuthentication no\\n\\nThe SSH service must be restarted for changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4712r88957_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4712r88957_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:1379\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:39:40" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001133", + "CCI-002361" + ], + "nist": [ + "SC-10", + "AC-12" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Terminating an idle SSH session within a short time period reduces the window of opportunity for unauthorized personnel to take control of a management session enabled on the console or console port that has been left unattended. In addition, quickly terminating an idle SSH session will also free up resources committed by the managed network element.\\n\\nTerminating network connections associated with communications sessions includes, for example, de-allocating associated TCP/IP address/port pairs at the operating system level and de-allocating networking assignments at the application level if multiple application sessions are using a single operating system-level network connection. This does not mean that the operating system terminates all sessions or network access; it only ends the inactive session and releases the resources associated with that session.\\n\\nSatisfies: SRG-OS-000163-GPOS-00072, SRG-OS-000279-GPOS-00109\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204589", + "group_title": "SRG-OS-000163-GPOS-00072", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204589r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:1393", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4713r88960_fix", + "fixtext_fixref": "F-4713r88960_fix", + "ident": [ + { + "text": "CCE-27082-7", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86865", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72241", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001133", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002361", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-040340", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204588r603261_rule", + "time": "2021-12-17T10:39:40", + "severity": "medium", + "version": "RHEL-07-040330", + "weight": "10.000000", + "result": "pass", + "ident": [ + { + "text": "CCE-80373-4", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72239", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86863", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:1379", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that all network connections associated with SSH traffic terminate after a period of inactivity.", + "id": "V-204589", + "desc": "Terminating an idle SSH session within a short time period reduces the window of opportunity for unauthorized personnel to take control of a management session enabled on the console or console port that has been left unattended. In addition, quickly terminating an idle SSH session will also free up resources committed by the managed network element.\n\nTerminating network connections associated with communications sessions includes, for example, de-allocating associated TCP/IP address/port pairs at the operating system level and de-allocating networking assignments at the application level if multiple application sessions are using a single operating system-level network connection. This does not mean that the operating system terminates all sessions or network access; it only ends the inactive session and releases the resources associated with that session.\n\nSatisfies: SRG-OS-000163-GPOS-00072, SRG-OS-000279-GPOS-00109", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:1393", + "label": "check" + }, + { + "data": "Configure the operating system to terminate automatically a user session after inactivity time-outs have expired or at shutdown.\n\nAdd the following line (or modify the line to have the required value) to the \"/etc/ssh/sshd_config\" file (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor):\n\nClientAliveCountMax 0\n\nThe SSH service must be restarted for changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204589\",\n \"title\": {\n \"text\": \"SRG-OS-000163-GPOS-00072\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204589r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-040340\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must be configured so that all network connections associated with SSH traffic terminate after a period of inactivity.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Terminating an idle SSH session within a short time period reduces the window of opportunity for unauthorized personnel to take control of a management session enabled on the console or console port that has been left unattended. In addition, quickly terminating an idle SSH session will also free up resources committed by the managed network element.\\n\\nTerminating network connections associated with communications sessions includes, for example, de-allocating associated TCP/IP address/port pairs at the operating system level and de-allocating networking assignments at the application level if multiple application sessions are using a single operating system-level network connection. This does not mean that the operating system terminates all sessions or network access; it only ends the inactive session and releases the resources associated with that session.\\n\\nSatisfies: SRG-OS-000163-GPOS-00072, SRG-OS-000279-GPOS-00109</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-27082-7\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86865\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72241\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-001133\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002361\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to terminate automatically a user session after inactivity time-outs have expired or at shutdown.\\n\\nAdd the following line (or modify the line to have the required value) to the \\\"/etc/ssh/sshd_config\\\" file (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor):\\n\\nClientAliveCountMax 0\\n\\nThe SSH service must be restarted for changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4713r88960_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4713r88960_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:1393\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:40" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Configuring this setting for the SSH daemon provides additional assurance that remote logon via SSH will require a password, even in the event of misconfiguration elsewhere.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204590", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204590r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:1377", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4714r88963_fix", + "fixtext_fixref": "F-4714r88963_fix", + "ident": [ + { + "text": "CCE-27377-1", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72243", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86867", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-040350", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204589r603261_rule", + "time": "2021-12-17T10:39:40", + "severity": "medium", + "version": "RHEL-07-040340", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-27082-7", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86865", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72241", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001133", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002361", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:1393", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that the SSH daemon does not allow authentication using rhosts authentication.", + "id": "V-204590", + "desc": "Configuring this setting for the SSH daemon provides additional assurance that remote logon via SSH will require a password, even in the event of misconfiguration elsewhere.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:1377", + "label": "check" + }, + { + "data": "Configure the SSH daemon to not allow authentication using known hosts authentication.\n\nAdd the following line in \"/etc/ssh/sshd_config\", or uncomment the line and set the value to \"yes\":\n\nIgnoreRhosts yes", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204590\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204590r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-040350\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must be configured so that the SSH daemon does not allow authentication using rhosts authentication.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Configuring this setting for the SSH daemon provides additional assurance that remote logon via SSH will require a password, even in the event of misconfiguration elsewhere.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-27377-1\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-72243\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86867\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the SSH daemon to not allow authentication using known hosts authentication.\\n\\nAdd the following line in \\\"/etc/ssh/sshd_config\\\", or uncomment the line and set the value to \\\"yes\\\":\\n\\nIgnoreRhosts yes\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4714r88963_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4714r88963_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:1377\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:40" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Providing users with feedback on when account accesses via SSH last occurred facilitates user recognition and reporting of unauthorized account use.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204591", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204591r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:166", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4715r88966_fix", + "fixtext_fixref": "F-4715r88966_fix", + "ident": [ + { + "text": "CCE-80225-6", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72245", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86869", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-040360", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204590r603261_rule", + "time": "2021-12-17T10:39:40", + "severity": "medium", + "version": "RHEL-07-040350", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-27377-1", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72243", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86867", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:1377", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must display the date and time of the last successful account logon upon an SSH logon.", + "id": "V-204591", + "desc": "Providing users with feedback on when account accesses via SSH last occurred facilitates user recognition and reporting of unauthorized account use.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:166", + "label": "check" + }, + { + "data": "Configure SSH to provide users with feedback on when account accesses last occurred by setting the required configuration options in \"/etc/pam.d/sshd\" or in the \"sshd_config\" file used by the system (\"/etc/ssh/sshd_config\" will be used in the example) (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor).\n\nModify the \"PrintLastLog\" line in \"/etc/ssh/sshd_config\" to match the following:\n\nPrintLastLog yes\n\nThe SSH service must be restarted for changes to \"sshd_config\" to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204591\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204591r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-040360\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must display the date and time of the last successful account logon upon an SSH logon.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Providing users with feedback on when account accesses via SSH last occurred facilitates user recognition and reporting of unauthorized account use.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-80225-6\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-72245\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86869\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure SSH to provide users with feedback on when account accesses last occurred by setting the required configuration options in \\\"/etc/pam.d/sshd\\\" or in the \\\"sshd_config\\\" file used by the system (\\\"/etc/ssh/sshd_config\\\" will be used in the example) (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor).\\n\\nModify the \\\"PrintLastLog\\\" line in \\\"/etc/ssh/sshd_config\\\" to match the following:\\n\\nPrintLastLog yes\\n\\nThe SSH service must be restarted for changes to \\\"sshd_config\\\" to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4715r88966_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4715r88966_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:166\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:40" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Even though the communications channel may be encrypted, an additional layer of security is gained by extending the policy of not logging on directly as root. In addition, logging on with a user-specific account provides individual accountability of actions performed on the system.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204592", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204592r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:1381", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4716r88969_fix", + "fixtext_fixref": "F-4716r88969_fix", + "ident": [ + { + "text": "CCE-27445-6", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72247", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86871", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-040370", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204591r603261_rule", + "time": "2021-12-17T10:39:40", + "severity": "medium", + "version": "RHEL-07-040360", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-80225-6", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72245", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86869", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:166", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must not permit direct logons to the root account using remote access via SSH.", + "id": "V-204592", + "desc": "Even though the communications channel may be encrypted, an additional layer of security is gained by extending the policy of not logging on directly as root. In addition, logging on with a user-specific account provides individual accountability of actions performed on the system.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:1381", + "label": "check" + }, + { + "data": "Configure SSH to stop users from logging on remotely as the root user.\n\nEdit the appropriate \"/etc/ssh/sshd_config\" file to uncomment or add the line for the \"PermitRootLogin\" keyword and set its value to \"no\" (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor):\n\nPermitRootLogin no\n\nThe SSH service must be restarted for changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204592\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204592r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-040370\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must not permit direct logons to the root account using remote access via SSH.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Even though the communications channel may be encrypted, an additional layer of security is gained by extending the policy of not logging on directly as root. In addition, logging on with a user-specific account provides individual accountability of actions performed on the system.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-27445-6\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-72247\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86871\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure SSH to stop users from logging on remotely as the root user.\\n\\nEdit the appropriate \\\"/etc/ssh/sshd_config\\\" file to uncomment or add the line for the \\\"PermitRootLogin\\\" keyword and set its value to \\\"no\\\" (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor):\\n\\nPermitRootLogin no\\n\\nThe SSH service must be restarted for changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4716r88969_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4716r88969_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:1381\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:40" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Configuring this setting for the SSH daemon provides additional assurance that remote logon via SSH will require a password, even in the event of misconfiguration elsewhere.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204593", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204593r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:1383", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4717r88972_fix", + "fixtext_fixref": "F-4717r88972_fix", + "ident": [ + { + "text": "CCE-80372-6", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72249", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86873", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-040380", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204592r603261_rule", + "time": "2021-12-17T10:39:40", + "severity": "medium", + "version": "RHEL-07-040370", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-27445-6", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72247", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86871", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:1381", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that the SSH daemon does not allow authentication using known hosts authentication.", + "id": "V-204593", + "desc": "Configuring this setting for the SSH daemon provides additional assurance that remote logon via SSH will require a password, even in the event of misconfiguration elsewhere.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:1383", + "label": "check" + }, + { + "data": "Configure the SSH daemon to not allow authentication using known hosts authentication.\n\nAdd the following line in \"/etc/ssh/sshd_config\", or uncomment the line and set the value to \"yes\":\n\nIgnoreUserKnownHosts yes\n\nThe SSH service must be restarted for changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204593\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204593r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-040380\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must be configured so that the SSH daemon does not allow authentication using known hosts authentication.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Configuring this setting for the SSH daemon provides additional assurance that remote logon via SSH will require a password, even in the event of misconfiguration elsewhere.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-80372-6\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-72249\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86873\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the SSH daemon to not allow authentication using known hosts authentication.\\n\\nAdd the following line in \\\"/etc/ssh/sshd_config\\\", or uncomment the line and set the value to \\\"yes\\\":\\n\\nIgnoreUserKnownHosts yes\\n\\nThe SSH service must be restarted for changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4717r88972_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4717r88972_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:1383\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:40" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000197", + "CCI-000366" + ], + "nist": [ + "IA-5 (1) (c)", + "CM-6 b" + ], + "severity": "high", + "description": "{\"VulnDiscussion\":\"SSHv1 is an insecure implementation of the SSH protocol and has many well-known vulnerability exploits. Exploits of the SSH daemon could provide immediate root access to the system.\\n\\nSatisfies: SRG-OS-000074-GPOS-00042, SRG-OS-000480-GPOS-00227\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204594", + "group_title": "SRG-OS-000074-GPOS-00042", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204594r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:1373", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4718r88975_fix", + "fixtext_fixref": "F-4718r88975_fix", + "ident": [ + { + "text": "CCE-27320-1", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86875", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72251", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000197", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-040390", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204593r603261_rule", + "time": "2021-12-17T10:39:40", + "severity": "medium", + "version": "RHEL-07-040380", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-80372-6", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72249", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86873", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:1383", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that the SSH daemon is configured to only use the SSHv2 protocol.", + "id": "V-204594", + "desc": "SSHv1 is an insecure implementation of the SSH protocol and has many well-known vulnerability exploits. Exploits of the SSH daemon could provide immediate root access to the system.\n\nSatisfies: SRG-OS-000074-GPOS-00042, SRG-OS-000480-GPOS-00227", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:1373", + "label": "check" + }, + { + "data": "Remove all Protocol lines that reference version \"1\" in \"/etc/ssh/sshd_config\" (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor). The \"Protocol\" line must be as follows:\n\nProtocol 2\n\nThe SSH service must be restarted for changes to take effect.", + "label": "fix" + } + ], + "impact": 0.7, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204594\",\n \"title\": {\n \"text\": \"SRG-OS-000074-GPOS-00042\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204594r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"high\",\n \"version\": {\n \"text\": \"RHEL-07-040390\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must be configured so that the SSH daemon is configured to only use the SSHv2 protocol.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>SSHv1 is an insecure implementation of the SSH protocol and has many well-known vulnerability exploits. Exploits of the SSH daemon could provide immediate root access to the system.\\n\\nSatisfies: SRG-OS-000074-GPOS-00042, SRG-OS-000480-GPOS-00227</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-27320-1\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86875\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72251\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000197\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Remove all Protocol lines that reference version \\\"1\\\" in \\\"/etc/ssh/sshd_config\\\" (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor). The \\\"Protocol\\\" line must be as follows:\\n\\nProtocol 2\\n\\nThe SSH service must be restarted for changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4718r88975_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4718r88975_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:1373\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:39:40" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001453" + ], + "nist": [ + "AC-17 (2)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"DoD information systems are required to use FIPS 140-2 approved cryptographic hash functions. The only SSHv2 hash algorithm meeting this requirement is SHA.\\n\\nThe system will attempt to use the first hash presented by the client that matches the server list. Listing the values \\\"strongest to weakest\\\" is a method to ensure the use of the strongest hash available to secure the SSH connection.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204595", + "group_title": "SRG-OS-000250-GPOS-00093", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204595r744117_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:168", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4719r622309_fix", + "fixtext_fixref": "F-4719r622309_fix", + "ident": [ + { + "text": "CCE-27455-5", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86877", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72253", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001453", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-040400", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204594r603261_rule", + "time": "2021-12-17T10:39:40", + "severity": "high", + "version": "RHEL-07-040390", + "weight": "10.000000", + "result": "pass", + "ident": [ + { + "text": "CCE-27320-1", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86875", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72251", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000197", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:1373", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that the SSH daemon is configured to only use Message Authentication Codes (MACs) employing FIPS 140-2 approved cryptographic hash algorithms.", + "id": "V-204595", + "desc": "DoD information systems are required to use FIPS 140-2 approved cryptographic hash functions. The only SSHv2 hash algorithm meeting this requirement is SHA.\n\nThe system will attempt to use the first hash presented by the client that matches the server list. Listing the values \"strongest to weakest\" is a method to ensure the use of the strongest hash available to secure the SSH connection.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:168", + "label": "check" + }, + { + "data": "Edit the \"/etc/ssh/sshd_config\" file to uncomment or add the line for the \"MACs\" keyword and set its value to \"hmac-sha2-512\" and/or \"hmac-sha2-256\" (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor):\n\nMACs hmac-sha2-512,hmac-sha2-256\n\nThe SSH service must be restarted for changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204595\",\n \"title\": {\n \"text\": \"SRG-OS-000250-GPOS-00093\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204595r744117_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-040400\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must be configured so that the SSH daemon is configured to only use Message Authentication Codes (MACs) employing FIPS 140-2 approved cryptographic hash algorithms.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>DoD information systems are required to use FIPS 140-2 approved cryptographic hash functions. The only SSHv2 hash algorithm meeting this requirement is SHA.\\n\\nThe system will attempt to use the first hash presented by the client that matches the server list. Listing the values \\\"strongest to weakest\\\" is a method to ensure the use of the strongest hash available to secure the SSH connection.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-27455-5\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86877\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72253\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-001453\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Edit the \\\"/etc/ssh/sshd_config\\\" file to uncomment or add the line for the \\\"MACs\\\" keyword and set its value to \\\"hmac-sha2-512\\\" and/or \\\"hmac-sha2-256\\\" (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor):\\n\\nMACs hmac-sha2-512,hmac-sha2-256\\n\\nThe SSH service must be restarted for changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4719r622309_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4719r622309_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:168\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:40" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"If a public host key file is modified by an unauthorized user, the SSH service may be compromised.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204596", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204596r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:120", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4720r88981_fix", + "fixtext_fixref": "F-4720r88981_fix", + "ident": [ + { + "text": "CCE-27311-0", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72255", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86879", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-040410", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204595r744117_rule", + "time": "2021-12-17T10:39:40", + "severity": "medium", + "version": "RHEL-07-040400", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-27455-5", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86877", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72253", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001453", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:168", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that the SSH public host key files have mode 0644 or less permissive.", + "id": "V-204596", + "desc": "If a public host key file is modified by an unauthorized user, the SSH service may be compromised.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:120", + "label": "check" + }, + { + "data": "Note: SSH public key files may be found in other directories on the system depending on the installation. \n\nChange the mode of public host key files under \"/etc/ssh\" to \"0644\" with the following command:\n\n# chmod 0644 /etc/ssh/*.key.pub", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204596\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204596r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-040410\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must be configured so that the SSH public host key files have mode 0644 or less permissive.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>If a public host key file is modified by an unauthorized user, the SSH service may be compromised.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-27311-0\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-72255\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86879\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Note: SSH public key files may be found in other directories on the system depending on the installation. \\n\\nChange the mode of public host key files under \\\"/etc/ssh\\\" to \\\"0644\\\" with the following command:\\n\\n# chmod 0644 /etc/ssh/*.key.pub\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4720r88981_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4720r88981_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:120\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:39:40" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"If an unauthorized user obtains the private SSH host key file, the host could be impersonated.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204597", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204597r792834_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:118", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4721r792833_fix", + "fixtext_fixref": "F-4721r792833_fix", + "ident": [ + { + "text": "CCE-27485-2", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72257", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86881", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-040420", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204596r603261_rule", + "time": "2021-12-17T10:39:40", + "severity": "medium", + "version": "RHEL-07-040410", + "weight": "10.000000", + "result": "pass", + "ident": [ + { + "text": "CCE-27311-0", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72255", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86879", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:120", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that the SSH private host key files have mode 0600 or less permissive.", + "id": "V-204597", + "desc": "If an unauthorized user obtains the private SSH host key file, the host could be impersonated.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:118", + "label": "check" + }, + { + "data": "Configure the mode of SSH private host key files under \"/etc/ssh\" to \"0600\" with the following command:\n\n# chmod 0600 /path/to/file/ssh_host*key", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204597\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204597r792834_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-040420\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must be configured so that the SSH private host key files have mode 0600 or less permissive.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>If an unauthorized user obtains the private SSH host key file, the host could be impersonated.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-27485-2\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-72257\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86881\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the mode of SSH private host key files under \\\"/etc/ssh\\\" to \\\"0600\\\" with the following command:\\n\\n# chmod 0600 /path/to/file/ssh_host*key\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4721r792833_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4721r792833_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:118\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:40" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000318", + "CCI-000368", + "CCI-001812", + "CCI-001813", + "CCI-001814" + ], + "nist": [ + "CM-3 f", + "CM-6 c", + "CM-11 (2)", + "CM-5 (1) (a)", + "CM-5 (1)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"GSSAPI authentication is used to provide additional authentication mechanisms to applications. Allowing GSSAPI authentication through SSH exposes the system's GSSAPI to remote hosts, increasing the attack surface of the system. GSSAPI authentication must be disabled unless needed.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204598", + "group_title": "SRG-OS-000364-GPOS-00151", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204598r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:160", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4722r88987_fix", + "fixtext_fixref": "F-4722r88987_fix", + "ident": [ + { + "text": "V-72259", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86883", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000318", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000368", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001812", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001813", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001814", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-040430", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204597r792834_rule", + "time": "2021-12-17T10:39:40", + "severity": "medium", + "version": "RHEL-07-040420", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-27485-2", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72257", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86881", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:118", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that the SSH daemon does not permit Generic Security Service Application Program Interface (GSSAPI) authentication unless needed.", + "id": "V-204598", + "desc": "GSSAPI authentication is used to provide additional authentication mechanisms to applications. Allowing GSSAPI authentication through SSH exposes the system's GSSAPI to remote hosts, increasing the attack surface of the system. GSSAPI authentication must be disabled unless needed.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:160", + "label": "check" + }, + { + "data": "Uncomment the \"GSSAPIAuthentication\" keyword in \"/etc/ssh/sshd_config\" (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor) and set the value to \"no\": \n\nGSSAPIAuthentication no\n\nThe SSH service must be restarted for changes to take effect.\n\nIf GSSAPI authentication is required, it must be documented, to include the location of the configuration file, with the ISSO.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204598\",\n \"title\": {\n \"text\": \"SRG-OS-000364-GPOS-00151\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204598r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-040430\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must be configured so that the SSH daemon does not permit Generic Security Service Application Program Interface (GSSAPI) authentication unless needed.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>GSSAPI authentication is used to provide additional authentication mechanisms to applications. Allowing GSSAPI authentication through SSH exposes the system's GSSAPI to remote hosts, increasing the attack surface of the system. GSSAPI authentication must be disabled unless needed.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"V-72259\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86883\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000318\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000368\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-001812\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-001813\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-001814\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Uncomment the \\\"GSSAPIAuthentication\\\" keyword in \\\"/etc/ssh/sshd_config\\\" (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor) and set the value to \\\"no\\\": \\n\\nGSSAPIAuthentication no\\n\\nThe SSH service must be restarted for changes to take effect.\\n\\nIf GSSAPI authentication is required, it must be documented, to include the location of the configuration file, with the ISSO.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4722r88987_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4722r88987_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:160\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:40" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000318", + "CCI-000368", + "CCI-001812", + "CCI-001813", + "CCI-001814" + ], + "nist": [ + "CM-3 f", + "CM-6 c", + "CM-11 (2)", + "CM-5 (1) (a)", + "CM-5 (1)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Kerberos authentication for SSH is often implemented using Generic Security Service Application Program Interface (GSSAPI). If Kerberos is enabled through SSH, the SSH daemon provides a means of access to the system's Kerberos implementation. Vulnerabilities in the system's Kerberos implementation may then be subject to exploitation. To reduce the attack surface of the system, the Kerberos authentication mechanism within SSH must be disabled for systems not using this capability.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204599", + "group_title": "SRG-OS-000364-GPOS-00151", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204599r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:162", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4723r88990_fix", + "fixtext_fixref": "F-4723r88990_fix", + "ident": [ + { + "text": "CCE-80221-5", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72261", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86885", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000318", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000368", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001812", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001813", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001814", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-040440", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204598r603261_rule", + "time": "2021-12-17T10:39:40", + "severity": "medium", + "version": "RHEL-07-040430", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "V-72259", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86883", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000318", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000368", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001812", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001813", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001814", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:160", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that the SSH daemon does not permit Kerberos authentication unless needed.", + "id": "V-204599", + "desc": "Kerberos authentication for SSH is often implemented using Generic Security Service Application Program Interface (GSSAPI). If Kerberos is enabled through SSH, the SSH daemon provides a means of access to the system's Kerberos implementation. Vulnerabilities in the system's Kerberos implementation may then be subject to exploitation. To reduce the attack surface of the system, the Kerberos authentication mechanism within SSH must be disabled for systems not using this capability.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:162", + "label": "check" + }, + { + "data": "Uncomment the \"KerberosAuthentication\" keyword in \"/etc/ssh/sshd_config\" (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor) and set the value to \"no\":\n\nKerberosAuthentication no\n\nThe SSH service must be restarted for changes to take effect.\n\nIf Kerberos authentication is required, it must be documented, to include the location of the configuration file, with the ISSO.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204599\",\n \"title\": {\n \"text\": \"SRG-OS-000364-GPOS-00151\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204599r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-040440\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must be configured so that the SSH daemon does not permit Kerberos authentication unless needed.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Kerberos authentication for SSH is often implemented using Generic Security Service Application Program Interface (GSSAPI). If Kerberos is enabled through SSH, the SSH daemon provides a means of access to the system's Kerberos implementation. Vulnerabilities in the system's Kerberos implementation may then be subject to exploitation. To reduce the attack surface of the system, the Kerberos authentication mechanism within SSH must be disabled for systems not using this capability.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-80221-5\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-72261\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86885\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000318\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000368\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-001812\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-001813\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-001814\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Uncomment the \\\"KerberosAuthentication\\\" keyword in \\\"/etc/ssh/sshd_config\\\" (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor) and set the value to \\\"no\\\":\\n\\nKerberosAuthentication no\\n\\nThe SSH service must be restarted for changes to take effect.\\n\\nIf Kerberos authentication is required, it must be documented, to include the location of the configuration file, with the ISSO.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4723r88990_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4723r88990_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:162\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:40" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"If other users have access to modify user-specific SSH configuration files, they may be able to log on to the system as another user.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204600", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204600r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:164", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4724r88993_fix", + "fixtext_fixref": "F-4724r88993_fix", + "ident": [ + { + "text": "CCE-80222-3", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86887", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72263", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-040450", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204599r603261_rule", + "time": "2021-12-17T10:39:40", + "severity": "medium", + "version": "RHEL-07-040440", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-80221-5", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72261", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86885", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000318", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000368", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001812", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001813", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001814", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:162", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that the SSH daemon performs strict mode checking of home directory configuration files.", + "id": "V-204600", + "desc": "If other users have access to modify user-specific SSH configuration files, they may be able to log on to the system as another user.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:164", + "label": "check" + }, + { + "data": "Uncomment the \"StrictModes\" keyword in \"/etc/ssh/sshd_config\" (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor) and set the value to \"yes\":\n\nStrictModes yes\n\nThe SSH service must be restarted for changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204600\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204600r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-040450\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must be configured so that the SSH daemon performs strict mode checking of home directory configuration files.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>If other users have access to modify user-specific SSH configuration files, they may be able to log on to the system as another user.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-80222-3\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86887\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72263\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Uncomment the \\\"StrictModes\\\" keyword in \\\"/etc/ssh/sshd_config\\\" (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor) and set the value to \\\"yes\\\":\\n\\nStrictModes yes\\n\\nThe SSH service must be restarted for changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4724r88993_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4724r88993_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:164\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:40" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"SSH daemon privilege separation causes the SSH process to drop root privileges when not needed, which would decrease the impact of software vulnerabilities in the unprivileged section.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204601", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204601r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:171", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4725r88996_fix", + "fixtext_fixref": "F-4725r88996_fix", + "ident": [ + { + "text": "CCE-80223-1", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86889", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72265", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-040460", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204600r603261_rule", + "time": "2021-12-17T10:39:40", + "severity": "medium", + "version": "RHEL-07-040450", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-80222-3", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86887", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72263", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:164", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that the SSH daemon uses privilege separation.", + "id": "V-204601", + "desc": "SSH daemon privilege separation causes the SSH process to drop root privileges when not needed, which would decrease the impact of software vulnerabilities in the unprivileged section.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:171", + "label": "check" + }, + { + "data": "Uncomment the \"UsePrivilegeSeparation\" keyword in \"/etc/ssh/sshd_config\" (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor) and set the value to \"sandbox\" or \"yes\":\n\nUsePrivilegeSeparation sandbox\n\nThe SSH service must be restarted for changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204601\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204601r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-040460\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must be configured so that the SSH daemon uses privilege separation.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>SSH daemon privilege separation causes the SSH process to drop root privileges when not needed, which would decrease the impact of software vulnerabilities in the unprivileged section.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-80223-1\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86889\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72265\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Uncomment the \\\"UsePrivilegeSeparation\\\" keyword in \\\"/etc/ssh/sshd_config\\\" (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor) and set the value to \\\"sandbox\\\" or \\\"yes\\\":\\n\\nUsePrivilegeSeparation sandbox\\n\\nThe SSH service must be restarted for changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4725r88996_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4725r88996_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:171\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:40" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"If compression is allowed in an SSH connection prior to authentication, vulnerabilities in the compression software could result in compromise of the system from an unauthenticated connection, potentially with root privileges.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204602", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204602r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:158", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4726r88999_fix", + "fixtext_fixref": "F-4726r88999_fix", + "ident": [ + { + "text": "SV-86891", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72267", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-040470", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204601r603261_rule", + "time": "2021-12-17T10:39:40", + "severity": "medium", + "version": "RHEL-07-040460", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-80223-1", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86889", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72265", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:171", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that the SSH daemon does not allow compression or only allows compression after successful authentication.", + "id": "V-204602", + "desc": "If compression is allowed in an SSH connection prior to authentication, vulnerabilities in the compression software could result in compromise of the system from an unauthenticated connection, potentially with root privileges.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:158", + "label": "check" + }, + { + "data": "Uncomment the \"Compression\" keyword in \"/etc/ssh/sshd_config\" (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor) on the system and set the value to \"delayed\" or \"no\":\n\nCompression no\n\nThe SSH service must be restarted for changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204602\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204602r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-040470\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must be configured so that the SSH daemon does not allow compression or only allows compression after successful authentication.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>If compression is allowed in an SSH connection prior to authentication, vulnerabilities in the compression software could result in compromise of the system from an unauthenticated connection, potentially with root privileges.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"SV-86891\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72267\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Uncomment the \\\"Compression\\\" keyword in \\\"/etc/ssh/sshd_config\\\" (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor) on the system and set the value to \\\"delayed\\\" or \\\"no\\\":\\n\\nCompression no\\n\\nThe SSH service must be restarted for changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4726r88999_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4726r88999_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:158\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:40" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "low", + "description": "{\"VulnDiscussion\":\"Providing users with feedback on when account accesses last occurred facilitates user recognition and reporting of unauthorized account use.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204605", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204605r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:1020", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4729r89008_fix", + "fixtext_fixref": "F-4729r89008_fix", + "ident": [ + { + "text": "SV-86899", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72275", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-040530", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204602r603261_rule", + "time": "2021-12-17T10:39:40", + "severity": "medium", + "version": "RHEL-07-040470", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "SV-86891", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72267", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:158", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must display the date and time of the last successful account logon upon logon.", + "id": "V-204605", + "desc": "Providing users with feedback on when account accesses last occurred facilitates user recognition and reporting of unauthorized account use.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:1020", + "label": "check" + }, + { + "data": "Configure the operating system to provide users with feedback on when account accesses last occurred by setting the required configuration options in \"/etc/pam.d/postlogin\". \n\nAdd the following line to the top of \"/etc/pam.d/postlogin\":\n\nsession required pam_lastlog.so showfailed", + "label": "fix" + } + ], + "impact": 0.3, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204605\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204605r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"low\",\n \"version\": {\n \"text\": \"RHEL-07-040530\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must display the date and time of the last successful account logon upon logon.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Providing users with feedback on when account accesses last occurred facilitates user recognition and reporting of unauthorized account use.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"SV-86899\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72275\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to provide users with feedback on when account accesses last occurred by setting the required configuration options in \\\"/etc/pam.d/postlogin\\\". \\n\\nAdd the following line to the top of \\\"/etc/pam.d/postlogin\\\":\\n\\nsession required pam_lastlog.so showfailed\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4729r89008_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4729r89008_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:1020\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:40" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "high", + "description": "{\"VulnDiscussion\":\"The .shosts files are used to configure host-based authentication for individual users or the system via SSH. Host-based authentication is not sufficient for preventing unauthorized access to the system, as it does not require interactive identification and authentication of a connection request, or for the use of two-factor authentication.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204606", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204606r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:86901", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4730r89011_fix", + "fixtext_fixref": "F-4730r89011_fix", + "ident": [ + { + "text": "SV-86901", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72277", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-040540", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204605r603261_rule", + "time": "2021-12-17T10:39:40", + "severity": "low", + "version": "RHEL-07-040530", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "SV-86899", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72275", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:1020", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must not contain .shosts files.", + "id": "V-204606", + "desc": "The .shosts files are used to configure host-based authentication for individual users or the system via SSH. Host-based authentication is not sufficient for preventing unauthorized access to the system, as it does not require interactive identification and authentication of a connection request, or for the use of two-factor authentication.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:86901", + "label": "check" + }, + { + "data": "Remove any found \".shosts\" files from the system.\n\n# rm /[path]/[to]/[file]/.shosts", + "label": "fix" + } + ], + "impact": 0.7, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204606\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204606r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"high\",\n \"version\": {\n \"text\": \"RHEL-07-040540\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must not contain .shosts files.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>The .shosts files are used to configure host-based authentication for individual users or the system via SSH. Host-based authentication is not sufficient for preventing unauthorized access to the system, as it does not require interactive identification and authentication of a connection request, or for the use of two-factor authentication.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"SV-86901\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72277\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Remove any found \\\".shosts\\\" files from the system.\\n\\n# rm /[path]/[to]/[file]/.shosts\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4730r89011_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4730r89011_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:86901\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:39:43" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "high", + "description": "{\"VulnDiscussion\":\"The shosts.equiv files are used to configure host-based authentication for the system via SSH. Host-based authentication is not sufficient for preventing unauthorized access to the system, as it does not require interactive identification and authentication of a connection request, or for the use of two-factor authentication.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204607", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204607r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:86903", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4731r89014_fix", + "fixtext_fixref": "F-4731r89014_fix", + "ident": [ + { + "text": "SV-86903", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72279", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-040550", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204606r603261_rule", + "time": "2021-12-17T10:39:43", + "severity": "high", + "version": "RHEL-07-040540", + "weight": "10.000000", + "result": "pass", + "ident": [ + { + "text": "SV-86901", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72277", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:86901", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must not contain shosts.equiv files.", + "id": "V-204607", + "desc": "The shosts.equiv files are used to configure host-based authentication for the system via SSH. Host-based authentication is not sufficient for preventing unauthorized access to the system, as it does not require interactive identification and authentication of a connection request, or for the use of two-factor authentication.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:86903", + "label": "check" + }, + { + "data": "Remove any found \"shosts.equiv\" files from the system.\n\n# rm /[path]/[to]/[file]/shosts.equiv", + "label": "fix" + } + ], + "impact": 0.7, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204607\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204607r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"high\",\n \"version\": {\n \"text\": \"RHEL-07-040550\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must not contain shosts.equiv files.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>The shosts.equiv files are used to configure host-based authentication for the system via SSH. Host-based authentication is not sufficient for preventing unauthorized access to the system, as it does not require interactive identification and authentication of a connection request, or for the use of two-factor authentication.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"SV-86903\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72279\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Remove any found \\\"shosts.equiv\\\" files from the system.\\n\\n# rm /[path]/[to]/[file]/shosts.equiv\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4731r89014_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4731r89014_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:86903\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:39:47" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Source-routed packets allow the source of the packet to suggest that routers forward the packet along a different path than configured on the router, which can be used to bypass network security measures. This requirement applies only to the forwarding of source-routed traffic, such as when IPv4 forwarding is enabled and the system is functioning as a router.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204609", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204609r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-export": { + "export-name": "oval:mil.disa.stig.rhel7:var:3771", + "value-id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_all_accept_source_route_value" + }, + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:251", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4733r89020_fix", + "fixtext_fixref": "F-4733r89020_fix", + "ident": [ + { + "text": "CCE-27434-0", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72283", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86907", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-040610", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204607r603261_rule", + "time": "2021-12-17T10:39:47", + "severity": "high", + "version": "RHEL-07-040550", + "weight": "10.000000", + "result": "pass", + "ident": [ + { + "text": "SV-86903", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72279", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:86903", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must not forward Internet Protocol version 4 (IPv4) source-routed packets.", + "id": "V-204609", + "desc": "Source-routed packets allow the source of the packet to suggest that routers forward the packet along a different path than configured on the router, which can be used to bypass network security measures. This requirement applies only to the forwarding of source-routed traffic, such as when IPv4 forwarding is enabled and the system is functioning as a router.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:251", + "label": "check" + }, + { + "data": "Set the system to the required kernel parameter by adding the following line to \"/etc/sysctl.conf\" or a configuration file in the /etc/sysctl.d/ directory (or modify the line to have the required value):\n\nnet.ipv4.conf.all.accept_source_route = 0 \n\nIssue the following command to make the changes take effect:\n \n# sysctl -system", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204609\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204609r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-040610\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must not forward Internet Protocol version 4 (IPv4) source-routed packets.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Source-routed packets allow the source of the packet to suggest that routers forward the packet along a different path than configured on the router, which can be used to bypass network security measures. This requirement applies only to the forwarding of source-routed traffic, such as when IPv4 forwarding is enabled and the system is functioning as a router.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-27434-0\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-72283\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86907\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Set the system to the required kernel parameter by adding the following line to \\\"/etc/sysctl.conf\\\" or a configuration file in the /etc/sysctl.d/ directory (or modify the line to have the required value):\\n\\nnet.ipv4.conf.all.accept_source_route = 0 \\n\\nIssue the following command to make the changes take effect:\\n \\n# sysctl -system\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4733r89020_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4733r89020_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-export\": {\n \"export-name\": \"oval:mil.disa.stig.rhel7:var:3771\",\n \"value-id\": \"xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_all_accept_source_route_value\"\n },\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:251\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:39:47" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Source-routed packets allow the source of the packet to suggest that routers forward the packet along a different path than configured on the router, which can be used to bypass network security measures. This requirement applies only to the forwarding of source-routed traffic, such as when IPv4 forwarding is enabled and the system is functioning as a router.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204612", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204612r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-export": { + "export-name": "oval:mil.disa.stig.rhel7:var:3776", + "value-id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_default_accept_source_route_value" + }, + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:269", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4736r89029_fix", + "fixtext_fixref": "F-4736r89029_fix", + "ident": [ + { + "text": "CCE-80162-1", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72285", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86909", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-040620", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204609r603261_rule", + "time": "2021-12-17T10:39:47", + "severity": "medium", + "version": "RHEL-07-040610", + "weight": "10.000000", + "result": "pass", + "ident": [ + { + "text": "CCE-27434-0", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72283", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86907", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-export": { + "export-name": "oval:mil.disa.stig.rhel7:var:3771", + "value-id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_all_accept_source_route_value" + }, + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:251", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + }, + "value": { + "id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_all_accept_source_route_value", + "operator": "equals", + "type": "number", + "title": { + "text": "net.ipv4.conf.all.accept_source_route", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "description": { + "text": "Trackers could be using source-routed packets to\ngenerate traffic that seems to be intra-net, but actually was\ncreated outside and has been redirected.", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "value": [ + 0, + { + "text": 1, + "selector": "enabled" + }, + { + "text": 0, + "selector": "disabled" + } + ] + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must not forward Internet Protocol version 4 (IPv4) source-routed packets by default.", + "id": "V-204612", + "desc": "Source-routed packets allow the source of the packet to suggest that routers forward the packet along a different path than configured on the router, which can be used to bypass network security measures. This requirement applies only to the forwarding of source-routed traffic, such as when IPv4 forwarding is enabled and the system is functioning as a router.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:269", + "label": "check" + }, + { + "data": "Set the system to the required kernel parameter by adding the following line to \"/etc/sysctl.conf\" or a configuration file in the /etc/sysctl.d/ directory (or modify the line to have the required value):\n\nnet.ipv4.conf.default.accept_source_route = 0 \n\nIssue the following command to make the changes take effect:\n \n# sysctl --system", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204612\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204612r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-040620\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must not forward Internet Protocol version 4 (IPv4) source-routed packets by default.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Source-routed packets allow the source of the packet to suggest that routers forward the packet along a different path than configured on the router, which can be used to bypass network security measures. This requirement applies only to the forwarding of source-routed traffic, such as when IPv4 forwarding is enabled and the system is functioning as a router.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-80162-1\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-72285\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86909\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Set the system to the required kernel parameter by adding the following line to \\\"/etc/sysctl.conf\\\" or a configuration file in the /etc/sysctl.d/ directory (or modify the line to have the required value):\\n\\nnet.ipv4.conf.default.accept_source_route = 0 \\n\\nIssue the following command to make the changes take effect:\\n \\n# sysctl --system\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4736r89029_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4736r89029_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-export\": {\n \"export-name\": \"oval:mil.disa.stig.rhel7:var:3776\",\n \"value-id\": \"xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_default_accept_source_route_value\"\n },\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:269\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:39:47" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Responding to broadcast (ICMP) echoes facilitates network mapping and provides a vector for amplification attacks.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204613", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204613r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-export": { + "export-name": "oval:mil.disa.stig.rhel7:var:3780", + "value-id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_icmp_echo_ignore_broadcasts_value" + }, + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:284", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4737r89032_fix", + "fixtext_fixref": "F-4737r89032_fix", + "ident": [ + { + "text": "CCE-80165-4", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72287", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86911", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-040630", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204612r603261_rule", + "time": "2021-12-17T10:39:47", + "severity": "medium", + "version": "RHEL-07-040620", + "weight": "10.000000", + "result": "pass", + "ident": [ + { + "text": "CCE-80162-1", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72285", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86909", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-export": { + "export-name": "oval:mil.disa.stig.rhel7:var:3776", + "value-id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_default_accept_source_route_value" + }, + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:269", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + }, + "value": { + "id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_default_accept_source_route_value", + "operator": "equals", + "type": "number", + "title": { + "text": "net.ipv4.conf.default.accept_source_route", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "description": { + "text": "Disable IP source routing?", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "value": [ + 0, + { + "text": 1, + "selector": "enabled" + }, + { + "text": 0, + "selector": "disabled" + } + ] + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must not respond to Internet Protocol version 4 (IPv4) Internet Control Message Protocol (ICMP) echoes sent to a broadcast address.", + "id": "V-204613", + "desc": "Responding to broadcast (ICMP) echoes facilitates network mapping and provides a vector for amplification attacks.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:284", + "label": "check" + }, + { + "data": "Set the system to the required kernel parameter by adding the following line to \"/etc/sysctl.conf\" or a configuration file in the /etc/sysctl.d/ directory (or modify the line to have the required value):\n\nnet.ipv4.icmp_echo_ignore_broadcasts = 1\n\nIssue the following command to make the changes take effect: \n\n# sysctl --system", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204613\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204613r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-040630\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must not respond to Internet Protocol version 4 (IPv4) Internet Control Message Protocol (ICMP) echoes sent to a broadcast address.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Responding to broadcast (ICMP) echoes facilitates network mapping and provides a vector for amplification attacks.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-80165-4\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-72287\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86911\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Set the system to the required kernel parameter by adding the following line to \\\"/etc/sysctl.conf\\\" or a configuration file in the /etc/sysctl.d/ directory (or modify the line to have the required value):\\n\\nnet.ipv4.icmp_echo_ignore_broadcasts = 1\\n\\nIssue the following command to make the changes take effect: \\n\\n# sysctl --system\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4737r89032_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4737r89032_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-export\": {\n \"export-name\": \"oval:mil.disa.stig.rhel7:var:3780\",\n \"value-id\": \"xccdf_mil.disa.stig_value_sysctl_net_ipv4_icmp_echo_ignore_broadcasts_value\"\n },\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:284\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:47" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages modify the host's route table and are unauthenticated. An illicit ICMP redirect message could result in a man-in-the-middle attack.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204614", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204614r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-export": { + "export-name": "oval:mil.disa.stig.rhel7:var:3775", + "value-id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_default_accept_redirects_value" + }, + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:266", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4738r89035_fix", + "fixtext_fixref": "F-4738r89035_fix", + "ident": [ + { + "text": "CCE-80163-9", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86913", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72289", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-040640", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204613r603261_rule", + "time": "2021-12-17T10:39:47", + "severity": "medium", + "version": "RHEL-07-040630", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-80165-4", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72287", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86911", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-export": { + "export-name": "oval:mil.disa.stig.rhel7:var:3780", + "value-id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_icmp_echo_ignore_broadcasts_value" + }, + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:284", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + }, + "value": { + "id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_icmp_echo_ignore_broadcasts_value", + "operator": "equals", + "type": "number", + "title": { + "text": "net.ipv4.icmp_echo_ignore_broadcasts", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "description": { + "text": "Ignore all ICMP ECHO and TIMESTAMP requests sent to it via broadcast/multicast", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "value": [ + 1, + { + "text": 1, + "selector": "enabled" + }, + { + "text": 0, + "selector": "disabled" + } + ] + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must prevent Internet Protocol version 4 (IPv4) Internet Control Message Protocol (ICMP) redirect messages from being accepted.", + "id": "V-204614", + "desc": "ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages modify the host's route table and are unauthenticated. An illicit ICMP redirect message could result in a man-in-the-middle attack.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:266", + "label": "check" + }, + { + "data": "Set the system to not accept IPv4 ICMP redirect messages by adding the following line to \"/etc/sysctl.conf\" or a configuration file in the /etc/sysctl.d/ directory (or modify the line to have the required value):\n\nnet.ipv4.conf.default.accept_redirects = 0 \n\nIssue the following command to make the changes take effect:\n\n# sysctl --system", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204614\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204614r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-040640\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must prevent Internet Protocol version 4 (IPv4) Internet Control Message Protocol (ICMP) redirect messages from being accepted.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages modify the host's route table and are unauthenticated. An illicit ICMP redirect message could result in a man-in-the-middle attack.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-80163-9\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86913\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72289\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Set the system to not accept IPv4 ICMP redirect messages by adding the following line to \\\"/etc/sysctl.conf\\\" or a configuration file in the /etc/sysctl.d/ directory (or modify the line to have the required value):\\n\\nnet.ipv4.conf.default.accept_redirects = 0 \\n\\nIssue the following command to make the changes take effect:\\n\\n# sysctl --system\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4738r89035_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4738r89035_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-export\": {\n \"export-name\": \"oval:mil.disa.stig.rhel7:var:3775\",\n \"value-id\": \"xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_default_accept_redirects_value\"\n },\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:266\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:47" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages modify the host's route table and are unauthenticated. An illicit ICMP redirect message could result in a man-in-the-middle attack.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204615", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204615r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-export": { + "export-name": "oval:mil.disa.stig.rhel7:var:3770", + "value-id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_all_accept_redirects_value" + }, + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:248", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4739r89038_fix", + "fixtext_fixref": "F-4739r89038_fix", + "ident": [ + { + "text": "CCE-80158-9", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-87827", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-73175", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-040641", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204614r603261_rule", + "time": "2021-12-17T10:39:47", + "severity": "medium", + "version": "RHEL-07-040640", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-80163-9", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86913", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72289", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-export": { + "export-name": "oval:mil.disa.stig.rhel7:var:3775", + "value-id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_default_accept_redirects_value" + }, + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:266", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + }, + "value": { + "id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_default_accept_redirects_value", + "operator": "equals", + "type": "number", + "title": { + "text": "net.ipv4.conf.default.accept_redirects", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "description": { + "text": "Disable ICMP Redirect Acceptance?", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "value": [ + 0, + { + "text": 1, + "selector": "enabled" + }, + { + "text": 0, + "selector": "disabled" + } + ] + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must ignore Internet Protocol version 4 (IPv4) Internet Control Message Protocol (ICMP) redirect messages.", + "id": "V-204615", + "desc": "ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages modify the host's route table and are unauthenticated. An illicit ICMP redirect message could result in a man-in-the-middle attack.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:248", + "label": "check" + }, + { + "data": "Set the system to ignore IPv4 ICMP redirect messages by adding the following line to \"/etc/sysctl.conf\" or a configuration file in the /etc/sysctl.d/ directory (or modify the line to have the required value):\n\nnet.ipv4.conf.all.accept_redirects = 0 \n\nIssue the following command to make the changes take effect:\n\n# sysctl --system", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204615\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204615r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-040641\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must ignore Internet Protocol version 4 (IPv4) Internet Control Message Protocol (ICMP) redirect messages.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages modify the host's route table and are unauthenticated. An illicit ICMP redirect message could result in a man-in-the-middle attack.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-80158-9\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-87827\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-73175\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Set the system to ignore IPv4 ICMP redirect messages by adding the following line to \\\"/etc/sysctl.conf\\\" or a configuration file in the /etc/sysctl.d/ directory (or modify the line to have the required value):\\n\\nnet.ipv4.conf.all.accept_redirects = 0 \\n\\nIssue the following command to make the changes take effect:\\n\\n# sysctl --system\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4739r89038_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4739r89038_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-export\": {\n \"export-name\": \"oval:mil.disa.stig.rhel7:var:3770\",\n \"value-id\": \"xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_all_accept_redirects_value\"\n },\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:248\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:47" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages contain information from the system's route table, possibly revealing portions of the network topology.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204616", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204616r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:281", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4740r89041_fix", + "fixtext_fixref": "F-4740r89041_fix", + "ident": [ + { + "text": "CCE-80156-3", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72291", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86915", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-040650", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204615r603261_rule", + "time": "2021-12-17T10:39:47", + "severity": "medium", + "version": "RHEL-07-040641", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-80158-9", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-87827", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-73175", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-export": { + "export-name": "oval:mil.disa.stig.rhel7:var:3770", + "value-id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_all_accept_redirects_value" + }, + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:248", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + }, + "value": { + "id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_all_accept_redirects_value", + "operator": "equals", + "type": "number", + "title": { + "text": "net.ipv4.conf.all.accept_redirects", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "description": { + "text": "Disable ICMP Redirect Acceptance", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "value": [ + 0, + { + "text": 1, + "selector": "enabled" + }, + { + "text": 0, + "selector": "disabled" + } + ] + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must not allow interfaces to perform Internet Protocol version 4 (IPv4) Internet Control Message Protocol (ICMP) redirects by default.", + "id": "V-204616", + "desc": "ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages contain information from the system's route table, possibly revealing portions of the network topology.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:281", + "label": "check" + }, + { + "data": "Configure the system to not allow interfaces to perform IPv4 ICMP redirects by default. \n\nSet the system to the required kernel parameter by adding the following line to \"/etc/sysctl.conf\" or a configuration file in the /etc/sysctl.d/ directory (or modify the line to have the required value):\n\nnet.ipv4.conf.default.send_redirects = 0\n\nIssue the following command to make the changes take effect:\n\n# sysctl --system", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204616\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204616r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-040650\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must not allow interfaces to perform Internet Protocol version 4 (IPv4) Internet Control Message Protocol (ICMP) redirects by default.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages contain information from the system's route table, possibly revealing portions of the network topology.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-80156-3\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-72291\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86915\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the system to not allow interfaces to perform IPv4 ICMP redirects by default. \\n\\nSet the system to the required kernel parameter by adding the following line to \\\"/etc/sysctl.conf\\\" or a configuration file in the /etc/sysctl.d/ directory (or modify the line to have the required value):\\n\\nnet.ipv4.conf.default.send_redirects = 0\\n\\nIssue the following command to make the changes take effect:\\n\\n# sysctl --system\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4740r89041_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4740r89041_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:281\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:47" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages contain information from the system's route table, possibly revealing portions of the network topology.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204617", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204617r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:263", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4741r89044_fix", + "fixtext_fixref": "F-4741r89044_fix", + "ident": [ + { + "text": "CCE-80156-3", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72293", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86917", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-040660", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204616r603261_rule", + "time": "2021-12-17T10:39:47", + "severity": "medium", + "version": "RHEL-07-040650", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-80156-3", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72291", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86915", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:281", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must not send Internet Protocol version 4 (IPv4) Internet Control Message Protocol (ICMP) redirects.", + "id": "V-204617", + "desc": "ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages contain information from the system's route table, possibly revealing portions of the network topology.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:263", + "label": "check" + }, + { + "data": "Configure the system to not allow interfaces to perform IPv4 ICMP redirects. \n\nSet the system to the required kernel parameter by adding the following line to \"/etc/sysctl.conf\" or a configuration file in the /etc/sysctl.d/ directory (or modify the line to have the required value):\n\nnet.ipv4.conf.all.send_redirects = 0\n\nIssue the following command to make the changes take effect:\n\n# sysctl --system", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204617\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204617r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-040660\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must not send Internet Protocol version 4 (IPv4) Internet Control Message Protocol (ICMP) redirects.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages contain information from the system's route table, possibly revealing portions of the network topology.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-80156-3\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-72293\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86917\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the system to not allow interfaces to perform IPv4 ICMP redirects. \\n\\nSet the system to the required kernel parameter by adding the following line to \\\"/etc/sysctl.conf\\\" or a configuration file in the /etc/sysctl.d/ directory (or modify the line to have the required value):\\n\\nnet.ipv4.conf.all.send_redirects = 0\\n\\nIssue the following command to make the changes take effect:\\n\\n# sysctl --system\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4741r89044_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4741r89044_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:263\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:47" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "high", + "description": "{\"VulnDiscussion\":\"The FTP service provides an unencrypted remote access that does not provide for the confidentiality and integrity of user passwords or the remote session. If a privileged user were to log on using this service, the privileged user password could be compromised. SSH or other encrypted file transfer methods must be used in place of this service.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204620", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204620r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:1301", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4744r89053_fix", + "fixtext_fixref": "F-4744r89053_fix", + "ident": [ + { + "text": "SV-86923", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72299", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-040690", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204617r603261_rule", + "time": "2021-12-17T10:39:47", + "severity": "medium", + "version": "RHEL-07-040660", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-80156-3", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72293", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86917", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:263", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must not have a File Transfer Protocol (FTP) server package installed unless needed.", + "id": "V-204620", + "desc": "The FTP service provides an unencrypted remote access that does not provide for the confidentiality and integrity of user passwords or the remote session. If a privileged user were to log on using this service, the privileged user password could be compromised. SSH or other encrypted file transfer methods must be used in place of this service.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:1301", + "label": "check" + }, + { + "data": "Document the \"vsftpd\" package with the ISSO as an operational requirement or remove it from the system with the following command:\n\n# yum remove vsftpd", + "label": "fix" + } + ], + "impact": 0.7, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204620\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204620r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"high\",\n \"version\": {\n \"text\": \"RHEL-07-040690\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must not have a File Transfer Protocol (FTP) server package installed unless needed.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>The FTP service provides an unencrypted remote access that does not provide for the confidentiality and integrity of user passwords or the remote session. If a privileged user were to log on using this service, the privileged user password could be compromised. SSH or other encrypted file transfer methods must be used in place of this service.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"SV-86923\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72299\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Document the \\\"vsftpd\\\" package with the ISSO as an operational requirement or remove it from the system with the following command:\\n\\n# yum remove vsftpd\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4744r89053_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4744r89053_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:1301\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:39:47" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000318", + "CCI-000368", + "CCI-001812", + "CCI-001813", + "CCI-001814" + ], + "nist": [ + "CM-3 f", + "CM-6 c", + "CM-11 (2)", + "CM-5 (1) (a)", + "CM-5 (1)" + ], + "severity": "high", + "description": "{\"VulnDiscussion\":\"If TFTP is required for operational support (such as the transmission of router configurations) its use must be documented with the Information System Security Officer (ISSO), restricted to only authorized personnel, and have access control rules established.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204621", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204621r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:1296", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4745r89056_fix", + "fixtext_fixref": "F-4745r89056_fix", + "ident": [ + { + "text": "CCE-80213-2", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86925", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72301", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000318", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000368", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001812", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001813", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001814", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-040700", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204620r603261_rule", + "time": "2021-12-17T10:39:47", + "severity": "high", + "version": "RHEL-07-040690", + "weight": "10.000000", + "result": "pass", + "ident": [ + { + "text": "SV-86923", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72299", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:1301", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must not have the Trivial File Transfer Protocol (TFTP) server package installed if not required for operational support.", + "id": "V-204621", + "desc": "If TFTP is required for operational support (such as the transmission of router configurations) its use must be documented with the Information System Security Officer (ISSO), restricted to only authorized personnel, and have access control rules established.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:1296", + "label": "check" + }, + { + "data": "Remove the TFTP package from the system with the following command:\n\n# yum remove tftp-server", + "label": "fix" + } + ], + "impact": 0.7, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204621\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204621r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"high\",\n \"version\": {\n \"text\": \"RHEL-07-040700\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must not have the Trivial File Transfer Protocol (TFTP) server package installed if not required for operational support.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>If TFTP is required for operational support (such as the transmission of router configurations) its use must be documented with the Information System Security Officer (ISSO), restricted to only authorized personnel, and have access control rules established.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-80213-2\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86925\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72301\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000318\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000368\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-001812\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-001813\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-001814\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Remove the TFTP package from the system with the following command:\\n\\n# yum remove tftp-server\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4745r89056_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4745r89056_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:1296\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:39:47" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"The security risk of using X11 forwarding is that the client's X11 display server may be exposed to attack when the SSH client requests forwarding. A system administrator may have a stance in which they want to protect clients that may expose themselves to attack by unwittingly requesting X11 forwarding, which can warrant a ''no'' setting.\\nX11 forwarding should be enabled with caution. Users with the ability to bypass file permissions on the remote host (for the user's X11 authorization database) can access the local X11 display through the forwarded connection. An attacker may then be able to perform activities such as keystroke monitoring if the ForwardX11Trusted option is also enabled.\\nIf X11 services are not required for the system's intended function, they should be disabled or restricted as appropriate to the system’s needs.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204622", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204622r603849_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:1389", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4746r622312_fix", + "fixtext_fixref": "F-4746r622312_fix", + "ident": [ + { + "text": "CCE-80226-4", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86927", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72303", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-040710", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204621r603261_rule", + "time": "2021-12-17T10:39:47", + "severity": "high", + "version": "RHEL-07-040700", + "weight": "10.000000", + "result": "pass", + "ident": [ + { + "text": "CCE-80213-2", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86925", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72301", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000318", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000368", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001812", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001813", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001814", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:1296", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that remote X connections are disabled except to fulfill documented and validated mission requirements.", + "id": "V-204622", + "desc": "The security risk of using X11 forwarding is that the client's X11 display server may be exposed to attack when the SSH client requests forwarding. A system administrator may have a stance in which they want to protect clients that may expose themselves to attack by unwittingly requesting X11 forwarding, which can warrant a ''no'' setting.\nX11 forwarding should be enabled with caution. Users with the ability to bypass file permissions on the remote host (for the user's X11 authorization database) can access the local X11 display through the forwarded connection. An attacker may then be able to perform activities such as keystroke monitoring if the ForwardX11Trusted option is also enabled.\nIf X11 services are not required for the system's intended function, they should be disabled or restricted as appropriate to the system’s needs.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:1389", + "label": "check" + }, + { + "data": "Edit the \"/etc/ssh/sshd_config\" file to uncomment or add the line for the \"X11Forwarding\" keyword and set its value to \"no\" (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor):\n\nX11Forwarding no\n\nThe SSH service must be restarted for changes to take effect:\n\n# systemctl restart sshd", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204622\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204622r603849_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-040710\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must be configured so that remote X connections are disabled except to fulfill documented and validated mission requirements.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>The security risk of using X11 forwarding is that the client's X11 display server may be exposed to attack when the SSH client requests forwarding. A system administrator may have a stance in which they want to protect clients that may expose themselves to attack by unwittingly requesting X11 forwarding, which can warrant a ''no'' setting.\\nX11 forwarding should be enabled with caution. Users with the ability to bypass file permissions on the remote host (for the user's X11 authorization database) can access the local X11 display through the forwarded connection. An attacker may then be able to perform activities such as keystroke monitoring if the ForwardX11Trusted option is also enabled.\\nIf X11 services are not required for the system's intended function, they should be disabled or restricted as appropriate to the system’s needs.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-80226-4\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86927\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72303\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Edit the \\\"/etc/ssh/sshd_config\\\" file to uncomment or add the line for the \\\"X11Forwarding\\\" keyword and set its value to \\\"no\\\" (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor):\\n\\nX11Forwarding no\\n\\nThe SSH service must be restarted for changes to take effect:\\n\\n# systemctl restart sshd\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4746r622312_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4746r622312_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:1389\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:47" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Internet services that are not required for system or application processes must not be active to decrease the attack surface of the system. Graphical display managers have a long history of security vulnerabilities and must not be used unless approved and documented.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204624", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204624r646847_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:1305", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-36316r646846_fix", + "fixtext_fixref": "F-36316r646846_fix", + "ident": [ + { + "text": "CCE-27218-7", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86931", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72307", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-040730", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204622r603849_rule", + "time": "2021-12-17T10:39:47", + "severity": "medium", + "version": "RHEL-07-040710", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-80226-4", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86927", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72303", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:1389", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must not have a graphical display manager installed unless approved.", + "id": "V-204624", + "desc": "Internet services that are not required for system or application processes must not be active to decrease the attack surface of the system. Graphical display managers have a long history of security vulnerabilities and must not be used unless approved and documented.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:1305", + "label": "check" + }, + { + "data": "Document the requirement for a graphical user interface with the ISSO or reinstall the operating system without the graphical user interface. If reinstallation is not feasible, then continue with the following procedure:\n\nOpen an SSH session and enter the following commands:\n\n$ sudo systemctl set-default multi-user.target\n\n$ sudo yum remove xorg-x11-server-Xorg xorg-x11-server-common xorg-x11-server-utils\n\nA reboot is required for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204624\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204624r646847_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-040730\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must not have a graphical display manager installed unless approved.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Internet services that are not required for system or application processes must not be active to decrease the attack surface of the system. Graphical display managers have a long history of security vulnerabilities and must not be used unless approved and documented.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-27218-7\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86931\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72307\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Document the requirement for a graphical user interface with the ISSO or reinstall the operating system without the graphical user interface. If reinstallation is not feasible, then continue with the following procedure:\\n\\nOpen an SSH session and enter the following commands:\\n\\n$ sudo systemctl set-default multi-user.target\\n\\n$ sudo yum remove xorg-x11-server-Xorg xorg-x11-server-common xorg-x11-server-utils\\n\\nA reboot is required for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-36316r646846_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-36316r646846_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:1305\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:47" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Routing protocol daemons are typically used on routers to exchange network topology information with other routers. If this software is used when not required, system network information may be unnecessarily transmitted across the network.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204625", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204625r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:290", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4749r89068_fix", + "fixtext_fixref": "F-4749r89068_fix", + "ident": [ + { + "text": "CCE-80157-1", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86933", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72309", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-040740", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204624r646847_rule", + "time": "2021-12-17T10:39:47", + "severity": "medium", + "version": "RHEL-07-040730", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-27218-7", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86931", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72307", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:1305", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must not be performing packet forwarding unless the system is a router.", + "id": "V-204625", + "desc": "Routing protocol daemons are typically used on routers to exchange network topology information with other routers. If this software is used when not required, system network information may be unnecessarily transmitted across the network.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:290", + "label": "check" + }, + { + "data": "Set the system to the required kernel parameter by adding the following line to \"/etc/sysctl.conf\" or a configuration file in the /etc/sysctl.d/ directory (or modify the line to have the required value):\n\nnet.ipv4.ip_forward = 0\n\nIssue the following command to make the changes take effect:\n\n# sysctl --system", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204625\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204625r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-040740\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must not be performing packet forwarding unless the system is a router.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Routing protocol daemons are typically used on routers to exchange network topology information with other routers. If this software is used when not required, system network information may be unnecessarily transmitted across the network.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-80157-1\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86933\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72309\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Set the system to the required kernel parameter by adding the following line to \\\"/etc/sysctl.conf\\\" or a configuration file in the /etc/sysctl.d/ directory (or modify the line to have the required value):\\n\\nnet.ipv4.ip_forward = 0\\n\\nIssue the following command to make the changes take effect:\\n\\n# sysctl --system\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4749r89068_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4749r89068_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:290\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:47" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "high", + "description": "{\"VulnDiscussion\":\"Whether active or not, default Simple Network Management Protocol (SNMP) community strings must be changed to maintain security. If the service is running with the default authenticators, anyone can gather data about the system and the network and use the information to potentially compromise the integrity of the system or network(s). It is highly recommended that SNMP version 3 user authentication and message encryption be used in place of the version 2 community strings.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204627", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204627r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:1369", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4751r89074_fix", + "fixtext_fixref": "F-4751r89074_fix", + "ident": [ + { + "text": "CCE-27386-2", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86937", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72313", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-040800", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204625r603261_rule", + "time": "2021-12-17T10:39:47", + "severity": "medium", + "version": "RHEL-07-040740", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-80157-1", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86933", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72309", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:290", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "SNMP community strings on the Red Hat Enterprise Linux operating system must be changed from the default.", + "id": "V-204627", + "desc": "Whether active or not, default Simple Network Management Protocol (SNMP) community strings must be changed to maintain security. If the service is running with the default authenticators, anyone can gather data about the system and the network and use the information to potentially compromise the integrity of the system or network(s). It is highly recommended that SNMP version 3 user authentication and message encryption be used in place of the version 2 community strings.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:1369", + "label": "check" + }, + { + "data": "If the \"/etc/snmp/snmpd.conf\" file exists, modify any lines that contain a community string value of \"public\" or \"private\" to another string value.", + "label": "fix" + } + ], + "impact": 0.7, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204627\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204627r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"high\",\n \"version\": {\n \"text\": \"RHEL-07-040800\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"SNMP community strings on the Red Hat Enterprise Linux operating system must be changed from the default.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Whether active or not, default Simple Network Management Protocol (SNMP) community strings must be changed to maintain security. If the service is running with the default authenticators, anyone can gather data about the system and the network and use the information to potentially compromise the integrity of the system or network(s). It is highly recommended that SNMP version 3 user authentication and message encryption be used in place of the version 2 community strings.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-27386-2\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86937\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72313\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"If the \\\"/etc/snmp/snmpd.conf\\\" file exists, modify any lines that contain a community string value of \\\"public\\\" or \\\"private\\\" to another string value.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4751r89074_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4751r89074_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:1369\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:39:47" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Source-routed packets allow the source of the packet to suggest that routers forward the packet along a different path than configured on the router, which can be used to bypass network security measures. This requirement applies only to the forwarding of source-routed traffic, such as when IPv6 forwarding is enabled and the system is functioning as a router.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204630", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204630r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-export": { + "export-name": "oval:mil.disa.stig.rhel7:var:3785", + "value-id": "xccdf_mil.disa.stig_value_sysctl_net_ipv6_conf_all_accept_source_route_value" + }, + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:303", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4754r89083_fix", + "fixtext_fixref": "F-4754r89083_fix", + "ident": [ + { + "text": "CCE-80179-5", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72319", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86943", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-040830", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204627r603261_rule", + "time": "2021-12-17T10:39:47", + "severity": "high", + "version": "RHEL-07-040800", + "weight": "10.000000", + "result": "pass", + "ident": [ + { + "text": "CCE-27386-2", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86937", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72313", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:1369", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must not forward IPv6 source-routed packets.", + "id": "V-204630", + "desc": "Source-routed packets allow the source of the packet to suggest that routers forward the packet along a different path than configured on the router, which can be used to bypass network security measures. This requirement applies only to the forwarding of source-routed traffic, such as when IPv6 forwarding is enabled and the system is functioning as a router.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:303", + "label": "check" + }, + { + "data": "Set the system to the required kernel parameter, if IPv6 is enabled, by adding the following line to \"/etc/sysctl.conf\" or a configuration file in the /etc/sysctl.d/ directory (or modify the line to have the required value):\n\nnet.ipv6.conf.all.accept_source_route = 0\n\nIssue the following command to make the changes take effect:\n\n# sysctl --system", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204630\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204630r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-040830\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must not forward IPv6 source-routed packets.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Source-routed packets allow the source of the packet to suggest that routers forward the packet along a different path than configured on the router, which can be used to bypass network security measures. This requirement applies only to the forwarding of source-routed traffic, such as when IPv6 forwarding is enabled and the system is functioning as a router.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-80179-5\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-72319\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86943\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Set the system to the required kernel parameter, if IPv6 is enabled, by adding the following line to \\\"/etc/sysctl.conf\\\" or a configuration file in the /etc/sysctl.d/ directory (or modify the line to have the required value):\\n\\nnet.ipv6.conf.all.accept_source_route = 0\\n\\nIssue the following command to make the changes take effect:\\n\\n# sysctl --system\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4754r89083_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4754r89083_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-export\": {\n \"export-name\": \"oval:mil.disa.stig.rhel7:var:3785\",\n \"value-id\": \"xccdf_mil.disa.stig_value_sysctl_net_ipv6_conf_all_accept_source_route_value\"\n },\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:303\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:47" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001948", + "CCI-001953", + "CCI-001954" + ], + "nist": [ + "IA-2 (11)", + "IA-2 (12)", + "IA-2 (12)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Using an authentication device, such as a CAC or token that is separate from the information system, ensures that even if the information system is compromised, that compromise will not affect credentials stored on the authentication device.\\n\\nMultifactor solutions that require devices separate from information systems gaining access include, for example, hardware tokens providing time-based or challenge-response authenticators and smart cards such as the U.S. Government Personal Identity Verification card and the DoD Common Access Card.\\n\\nA privileged account is defined as an information system account with authorizations of a privileged user.\\n\\nRemote access is access to DoD nonpublic information systems by an authorized user (or an information system) communicating through an external, non-organization-controlled network. Remote access methods include, for example, dial-up, broadband, and wireless.\\n\\nThis requirement only applies to components where this is specific to the function of the device or has the concept of an organizational user (e.g., VPN, proxy capability). This does not apply to authentication for the purpose of configuring the device itself (management).\\n\\nSatisfies: SRG-OS-000375-GPOS-00160, SRG-OS-000375-GPOS-00161, SRG-OS-000375-GPOS-00162\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204631", + "group_title": "SRG-OS-000375-GPOS-00160", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204631r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:87041", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4755r462473_fix", + "fixtext_fixref": "F-4755r462473_fix", + "ident": [ + { + "text": "SV-87041", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72417", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001948", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001953", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001954", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-041001", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204630r603261_rule", + "time": "2021-12-17T10:39:47", + "severity": "medium", + "version": "RHEL-07-040830", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-80179-5", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72319", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86943", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-export": { + "export-name": "oval:mil.disa.stig.rhel7:var:3785", + "value-id": "xccdf_mil.disa.stig_value_sysctl_net_ipv6_conf_all_accept_source_route_value" + }, + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:303", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + }, + "value": { + "id": "xccdf_mil.disa.stig_value_sysctl_net_ipv6_conf_all_accept_source_route_value", + "operator": "equals", + "type": "number", + "title": { + "text": "net.ipv6.conf.all.accept_source_route", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "description": { + "text": "Trackers could be using source-routed packets to\ngenerate traffic that seems to be intra-net, but actually was\ncreated outside and has been redirected.", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "value": [ + 0, + { + "text": 1, + "selector": "enabled" + }, + { + "text": 0, + "selector": "disabled" + } + ] + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must have the required packages for multifactor authentication installed.", + "id": "V-204631", + "desc": "Using an authentication device, such as a CAC or token that is separate from the information system, ensures that even if the information system is compromised, that compromise will not affect credentials stored on the authentication device.\n\nMultifactor solutions that require devices separate from information systems gaining access include, for example, hardware tokens providing time-based or challenge-response authenticators and smart cards such as the U.S. Government Personal Identity Verification card and the DoD Common Access Card.\n\nA privileged account is defined as an information system account with authorizations of a privileged user.\n\nRemote access is access to DoD nonpublic information systems by an authorized user (or an information system) communicating through an external, non-organization-controlled network. Remote access methods include, for example, dial-up, broadband, and wireless.\n\nThis requirement only applies to components where this is specific to the function of the device or has the concept of an organizational user (e.g., VPN, proxy capability). This does not apply to authentication for the purpose of configuring the device itself (management).\n\nSatisfies: SRG-OS-000375-GPOS-00160, SRG-OS-000375-GPOS-00161, SRG-OS-000375-GPOS-00162", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:87041", + "label": "check" + }, + { + "data": "Configure the operating system to implement multifactor authentication by installing the required packages.\n\nInstall the pam_pkcs11 package with the following command:\n\n# yum install pam_pkcs11", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204631\",\n \"title\": {\n \"text\": \"SRG-OS-000375-GPOS-00160\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204631r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-041001\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must have the required packages for multifactor authentication installed.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Using an authentication device, such as a CAC or token that is separate from the information system, ensures that even if the information system is compromised, that compromise will not affect credentials stored on the authentication device.\\n\\nMultifactor solutions that require devices separate from information systems gaining access include, for example, hardware tokens providing time-based or challenge-response authenticators and smart cards such as the U.S. Government Personal Identity Verification card and the DoD Common Access Card.\\n\\nA privileged account is defined as an information system account with authorizations of a privileged user.\\n\\nRemote access is access to DoD nonpublic information systems by an authorized user (or an information system) communicating through an external, non-organization-controlled network. Remote access methods include, for example, dial-up, broadband, and wireless.\\n\\nThis requirement only applies to components where this is specific to the function of the device or has the concept of an organizational user (e.g., VPN, proxy capability). This does not apply to authentication for the purpose of configuring the device itself (management).\\n\\nSatisfies: SRG-OS-000375-GPOS-00160, SRG-OS-000375-GPOS-00161, SRG-OS-000375-GPOS-00162</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"SV-87041\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72417\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-001948\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-001953\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-001954\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to implement multifactor authentication by installing the required packages.\\n\\nInstall the pam_pkcs11 package with the following command:\\n\\n# yum install pam_pkcs11\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4755r462473_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4755r462473_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:87041\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:47" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001948", + "CCI-001953", + "CCI-001954" + ], + "nist": [ + "IA-2 (11)", + "IA-2 (12)", + "IA-2 (12)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Using an authentication device, such as a CAC or token that is separate from the information system, ensures that even if the information system is compromised, that compromise will not affect credentials stored on the authentication device.\\n\\nMultifactor solutions that require devices separate from information systems gaining access include, for example, hardware tokens providing time-based or challenge-response authenticators and smart cards such as the U.S. Government Personal Identity Verification card and the DoD Common Access Card.\\n\\nA privileged account is defined as an information system account with authorizations of a privileged user.\\n\\nRemote access is access to DoD nonpublic information systems by an authorized user (or an information system) communicating through an external, non-organization-controlled network. Remote access methods include, for example, dial-up, broadband, and wireless.\\n\\nThis requirement only applies to components where this is specific to the function of the device or has the concept of an organizational user (e.g., VPN, proxy capability). This does not apply to authentication for the purpose of configuring the device itself (management).\\n\\nSatisfies: SRG-OS-000375-GPOS-00160, SRG-OS-000375-GPOS-00161, SRG-OS-000375-GPOS-00162\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204632", + "group_title": "SRG-OS-000375-GPOS-00160", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204632r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:1405", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4756r89089_fix", + "fixtext_fixref": "F-4756r89089_fix", + "ident": [ + { + "text": "CCE-80437-7", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72427", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-87051", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001948", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001953", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001954", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-041002", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204631r603261_rule", + "time": "2021-12-17T10:39:47", + "severity": "medium", + "version": "RHEL-07-041001", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "SV-87041", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72417", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001948", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001953", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001954", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:87041", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must implement multifactor authentication for access to privileged accounts via pluggable authentication modules (PAM).", + "id": "V-204632", + "desc": "Using an authentication device, such as a CAC or token that is separate from the information system, ensures that even if the information system is compromised, that compromise will not affect credentials stored on the authentication device.\n\nMultifactor solutions that require devices separate from information systems gaining access include, for example, hardware tokens providing time-based or challenge-response authenticators and smart cards such as the U.S. Government Personal Identity Verification card and the DoD Common Access Card.\n\nA privileged account is defined as an information system account with authorizations of a privileged user.\n\nRemote access is access to DoD nonpublic information systems by an authorized user (or an information system) communicating through an external, non-organization-controlled network. Remote access methods include, for example, dial-up, broadband, and wireless.\n\nThis requirement only applies to components where this is specific to the function of the device or has the concept of an organizational user (e.g., VPN, proxy capability). This does not apply to authentication for the purpose of configuring the device itself (management).\n\nSatisfies: SRG-OS-000375-GPOS-00160, SRG-OS-000375-GPOS-00161, SRG-OS-000375-GPOS-00162", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:1405", + "label": "check" + }, + { + "data": "Configure the operating system to implement multifactor authentication for remote access to privileged accounts via pluggable authentication modules (PAM).\n\nModify all of the services lines in \"/etc/sssd/sssd.conf\" or in configuration files found under \"/etc/sssd/conf.d\" to include pam.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204632\",\n \"title\": {\n \"text\": \"SRG-OS-000375-GPOS-00160\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204632r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-041002\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must implement multifactor authentication for access to privileged accounts via pluggable authentication modules (PAM).\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Using an authentication device, such as a CAC or token that is separate from the information system, ensures that even if the information system is compromised, that compromise will not affect credentials stored on the authentication device.\\n\\nMultifactor solutions that require devices separate from information systems gaining access include, for example, hardware tokens providing time-based or challenge-response authenticators and smart cards such as the U.S. Government Personal Identity Verification card and the DoD Common Access Card.\\n\\nA privileged account is defined as an information system account with authorizations of a privileged user.\\n\\nRemote access is access to DoD nonpublic information systems by an authorized user (or an information system) communicating through an external, non-organization-controlled network. Remote access methods include, for example, dial-up, broadband, and wireless.\\n\\nThis requirement only applies to components where this is specific to the function of the device or has the concept of an organizational user (e.g., VPN, proxy capability). This does not apply to authentication for the purpose of configuring the device itself (management).\\n\\nSatisfies: SRG-OS-000375-GPOS-00160, SRG-OS-000375-GPOS-00161, SRG-OS-000375-GPOS-00162</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-80437-7\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-72427\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-87051\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-001948\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-001953\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-001954\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to implement multifactor authentication for remote access to privileged accounts via pluggable authentication modules (PAM).\\n\\nModify all of the services lines in \\\"/etc/sssd/sssd.conf\\\" or in configuration files found under \\\"/etc/sssd/conf.d\\\" to include pam.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4756r89089_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4756r89089_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:1405\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:47" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001948", + "CCI-001953", + "CCI-001954" + ], + "nist": [ + "IA-2 (11)", + "IA-2 (12)", + "IA-2 (12)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Using an authentication device, such as a CAC or token that is separate from the information system, ensures that even if the information system is compromised, that compromise will not affect credentials stored on the authentication device.\\n\\nMultifactor solutions that require devices separate from information systems gaining access include, for example, hardware tokens providing time-based or challenge-response authenticators and smart cards such as the U.S. Government Personal Identity Verification card and the DoD Common Access Card.\\n\\nA privileged account is defined as an information system account with authorizations of a privileged user.\\n\\nRemote access is access to DoD nonpublic information systems by an authorized user (or an information system) communicating through an external, non-organization-controlled network. Remote access methods include, for example, dial-up, broadband, and wireless.\\n\\nThis requirement only applies to components where this is specific to the function of the device or has the concept of an organizational user (e.g., VPN, proxy capability). This does not apply to authentication for the purpose of configuring the device itself (management).\\n\\nSatisfies: SRG-OS-000375-GPOS-00160, SRG-OS-000375-GPOS-00161, SRG-OS-000375-GPOS-00162\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204633", + "group_title": "SRG-OS-000375-GPOS-00160", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204633r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:87057", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-4757r89092_fix", + "fixtext_fixref": "F-4757r89092_fix", + "ident": [ + { + "text": "V-72433", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-87057", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001948", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001953", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001954", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-041003", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204632r603261_rule", + "time": "2021-12-17T10:39:47", + "severity": "medium", + "version": "RHEL-07-041002", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "CCE-80437-7", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72427", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-87051", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001948", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001953", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001954", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:1405", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must implement certificate status checking for PKI authentication.", + "id": "V-204633", + "desc": "Using an authentication device, such as a CAC or token that is separate from the information system, ensures that even if the information system is compromised, that compromise will not affect credentials stored on the authentication device.\n\nMultifactor solutions that require devices separate from information systems gaining access include, for example, hardware tokens providing time-based or challenge-response authenticators and smart cards such as the U.S. Government Personal Identity Verification card and the DoD Common Access Card.\n\nA privileged account is defined as an information system account with authorizations of a privileged user.\n\nRemote access is access to DoD nonpublic information systems by an authorized user (or an information system) communicating through an external, non-organization-controlled network. Remote access methods include, for example, dial-up, broadband, and wireless.\n\nThis requirement only applies to components where this is specific to the function of the device or has the concept of an organizational user (e.g., VPN, proxy capability). This does not apply to authentication for the purpose of configuring the device itself (management).\n\nSatisfies: SRG-OS-000375-GPOS-00160, SRG-OS-000375-GPOS-00161, SRG-OS-000375-GPOS-00162", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:87057", + "label": "check" + }, + { + "data": "Configure the operating system to do certificate status checking for PKI authentication.\n\nModify all of the \"cert_policy\" lines in \"/etc/pam_pkcs11/pam_pkcs11.conf\" to include \"ocsp_on\".", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-204633\",\n \"title\": {\n \"text\": \"SRG-OS-000375-GPOS-00160\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204633r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-041003\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must implement certificate status checking for PKI authentication.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Using an authentication device, such as a CAC or token that is separate from the information system, ensures that even if the information system is compromised, that compromise will not affect credentials stored on the authentication device.\\n\\nMultifactor solutions that require devices separate from information systems gaining access include, for example, hardware tokens providing time-based or challenge-response authenticators and smart cards such as the U.S. Government Personal Identity Verification card and the DoD Common Access Card.\\n\\nA privileged account is defined as an information system account with authorizations of a privileged user.\\n\\nRemote access is access to DoD nonpublic information systems by an authorized user (or an information system) communicating through an external, non-organization-controlled network. Remote access methods include, for example, dial-up, broadband, and wireless.\\n\\nThis requirement only applies to components where this is specific to the function of the device or has the concept of an organizational user (e.g., VPN, proxy capability). This does not apply to authentication for the purpose of configuring the device itself (management).\\n\\nSatisfies: SRG-OS-000375-GPOS-00160, SRG-OS-000375-GPOS-00161, SRG-OS-000375-GPOS-00162</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"V-72433\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-87057\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-001948\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-001953\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-001954\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Configure the operating system to do certificate status checking for PKI authentication.\\n\\nModify all of the \\\"cert_policy\\\" lines in \\\"/etc/pam_pkcs11/pam_pkcs11.conf\\\" to include \\\"ocsp_on\\\".\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-4757r89092_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-4757r89092_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:87057\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:39:47" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001749" + ], + "nist": [ + "CM-5 (3)" + ], + "severity": "high", + "description": "{\"VulnDiscussion\":\"Without cryptographic integrity protections, system command and files can be altered by unauthorized users without detection.\\n\\nCryptographic mechanisms used for protecting the integrity of information include, for example, signed hash functions using asymmetric cryptography enabling distribution of the public key to verify the hash information while maintaining the confidentiality of the key used to generate the hash.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-214799", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-214799r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:1340", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-15997r192363_fix", + "fixtext_fixref": "F-15997r192363_fix", + "ident": [ + { + "text": "CCE-27157-7", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86479", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71855", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001749", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-010020", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-204633r603261_rule", + "time": "2021-12-17T10:39:47", + "severity": "medium", + "version": "RHEL-07-041003", + "weight": "10.000000", + "result": "fail", + "ident": [ + { + "text": "V-72433", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-87057", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001948", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001953", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001954", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:87057", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that the cryptographic hash of system files and commands matches vendor values.", + "id": "V-214799", + "desc": "Without cryptographic integrity protections, system command and files can be altered by unauthorized users without detection.\n\nCryptographic mechanisms used for protecting the integrity of information include, for example, signed hash functions using asymmetric cryptography enabling distribution of the public key to verify the hash information while maintaining the confidentiality of the key used to generate the hash.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:1340", + "label": "check" + }, + { + "data": "Run the following command to determine which package owns the file:\n\n# rpm -qf \n\nThe package can be reinstalled from a yum repository using the command:\n\n# sudo yum reinstall \n\nAlternatively, the package can be reinstalled from trusted media using the command:\n\n# sudo rpm -Uvh ", + "label": "fix" + } + ], + "impact": 0.7, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-214799\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-214799r603261_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"high\",\n \"version\": {\n \"text\": \"RHEL-07-010020\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must be configured so that the cryptographic hash of system files and commands matches vendor values.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without cryptographic integrity protections, system command and files can be altered by unauthorized users without detection.\\n\\nCryptographic mechanisms used for protecting the integrity of information include, for example, signed hash functions using asymmetric cryptography enabling distribution of the public key to verify the hash information while maintaining the confidentiality of the key used to generate the hash.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": [\n {\n \"text\": \"CCE-27157-7\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86479\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-71855\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-001749\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"fixtext\": {\n \"text\": \"Run the following command to determine which package owns the file:\\n\\n# rpm -qf <filename>\\n\\nThe package can be reinstalled from a yum repository using the command:\\n\\n# sudo yum reinstall <packagename>\\n\\nAlternatively, the package can be reinstalled from trusted media using the command:\\n\\n# sudo rpm -Uvh <packagename>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-15997r192363_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-15997r192363_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:1340\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:40:58" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"The sudo command allows a user to execute programs with elevated (administrator) privileges. It prompts the user for their password and confirms your request to execute a command by checking a file, called sudoers. If the \\\"sudoers\\\" file is not configured correctly, any user defined on the system can initiate privileged actions on the target system.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-237633", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-237633r646850_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:177", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-40815r646849_fix", + "fixtext_fixref": "F-40815r646849_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-010341", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-214799r603261_rule", + "time": "2021-12-17T10:40:58", + "severity": "high", + "version": "RHEL-07-010020", + "weight": "10.000000", + "result": "pass", + "ident": [ + { + "text": "CCE-27157-7", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86479", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71855", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001749", + "system": "http://cyber.mil/cci" + } + ], + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:1340", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must restrict privilege elevation to authorized personnel.", + "id": "V-237633", + "desc": "The sudo command allows a user to execute programs with elevated (administrator) privileges. It prompts the user for their password and confirms your request to execute a command by checking a file, called sudoers. If the \"sudoers\" file is not configured correctly, any user defined on the system can initiate privileged actions on the target system.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:177", + "label": "check" + }, + { + "data": "Remove the following entries from the sudoers file:\nALL ALL=(ALL) ALL\nALL ALL=(ALL:ALL) ALL", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-237633\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-237633r646850_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-010341\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must restrict privilege elevation to authorized personnel.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>The sudo command allows a user to execute programs with elevated (administrator) privileges. It prompts the user for their password and confirms your request to execute a command by checking a file, called sudoers. If the \\\"sudoers\\\" file is not configured correctly, any user defined on the system can initiate privileged actions on the target system.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Remove the following entries from the sudoers file:\\nALL ALL=(ALL) ALL\\nALL ALL=(ALL:ALL) ALL\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-40815r646849_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-40815r646849_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:177\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:40:58" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-002227" + ], + "nist": [ + "AC-6 (5)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"The sudoers security policy requires that users authenticate themselves before they can use sudo. When sudoers requires authentication, it validates the invoking user's credentials. If the rootpw, targetpw, or runaspw flags are defined and not disabled, by default the operating system will prompt the invoking user for the \\\"root\\\" user password. \\nFor more information on each of the listed configurations, reference the sudoers(5) manual page.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-237634", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-237634r646853_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:178", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-40816r646852_fix", + "fixtext_fixref": "F-40816r646852_fix", + "ident": { + "text": "CCI-002227", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-010342", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-237633r646850_rule", + "time": "2021-12-17T10:40:58", + "severity": "medium", + "version": "RHEL-07-010341", + "weight": "10.000000", + "result": "pass", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:177", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must use the invoking user's password for privilege escalation when using \"sudo\".", + "id": "V-237634", + "desc": "The sudoers security policy requires that users authenticate themselves before they can use sudo. When sudoers requires authentication, it validates the invoking user's credentials. If the rootpw, targetpw, or runaspw flags are defined and not disabled, by default the operating system will prompt the invoking user for the \"root\" user password. \nFor more information on each of the listed configurations, reference the sudoers(5) manual page.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:178", + "label": "check" + }, + { + "data": "Define the following in the Defaults section of the /etc/sudoers file or a configuration file in the /etc/sudoers.d/ directory:\nDefaults !targetpw\nDefaults !rootpw\nDefaults !runaspw", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-237634\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-237634r646853_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-010342\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must use the invoking user's password for privilege escalation when using \\\"sudo\\\".\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>The sudoers security policy requires that users authenticate themselves before they can use sudo. When sudoers requires authentication, it validates the invoking user's credentials. If the rootpw, targetpw, or runaspw flags are defined and not disabled, by default the operating system will prompt the invoking user for the \\\"root\\\" user password. \\nFor more information on each of the listed configurations, reference the sudoers(5) manual page.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": {\n \"text\": \"CCI-002227\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Define the following in the Defaults section of the /etc/sudoers file or a configuration file in the /etc/sudoers.d/ directory:\\nDefaults !targetpw\\nDefaults !rootpw\\nDefaults !runaspw\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-40816r646852_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-40816r646852_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:178\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:40:58" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-002038" + ], + "nist": [ + "IA-11" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without re-authentication, users may access resources or perform tasks for which they do not have authorization. \\n\\nWhen operating systems provide the capability to escalate a functional capability, it is critical the organization requires the user to re-authenticate when using the \\\"sudo\\\" command.\\n\\nIf the value is set to an integer less than 0, the user's time stamp will not expire and the user will not have to re-authenticate for privileged actions until the user's session is terminated.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-237635", + "group_title": "SRG-OS-000373-GPOS-00156", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-237635r792836_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:179", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-40817r646855_fix", + "fixtext_fixref": "F-40817r646855_fix", + "ident": { + "text": "CCI-002038", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 7", + "dc:subject": "Red Hat Enterprise Linux 7", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2899 + }, + "selected": "true", + "version": "RHEL-07-010343", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-237634r646853_rule", + "time": "2021-12-17T10:40:58", + "severity": "medium", + "version": "RHEL-07-010342", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-002227", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel7:def:178", + "href": "U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must require re-authentication when using the \"sudo\" command.", + "id": "V-237635", + "desc": "Without re-authentication, users may access resources or perform tasks for which they do not have authorization. \n\nWhen operating systems provide the capability to escalate a functional capability, it is critical the organization requires the user to re-authenticate when using the \"sudo\" command.\n\nIf the value is set to an integer less than 0, the user's time stamp will not expire and the user will not have to re-authenticate for privileged actions until the user's session is terminated.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:179", + "label": "check" + }, + { + "data": "Configure the \"sudo\" command to require re-authentication.\nEdit the /etc/sudoers file:\n$ sudo visudo\n\nAdd or modify the following line:\nDefaults timestamp_timeout=[value]\nNote: The \"[value]\" must be a number that is greater than or equal to \"0\".", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-237635\",\n \"title\": {\n \"text\": \"SRG-OS-000373-GPOS-00156\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-237635r792836_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-07-010343\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Red Hat Enterprise Linux operating system must require re-authentication when using the \\\"sudo\\\" command.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without re-authentication, users may access resources or perform tasks for which they do not have authorization. \\n\\nWhen operating systems provide the capability to escalate a functional capability, it is critical the organization requires the user to re-authenticate when using the \\\"sudo\\\" command.\\n\\nIf the value is set to an integer less than 0, the user's time stamp will not expire and the user will not have to re-authenticate for privileged actions until the user's session is terminated.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 7\",\n \"dc:subject\": \"Red Hat Enterprise Linux 7\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2899\n },\n \"ident\": {\n \"text\": \"CCI-002038\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the \\\"sudo\\\" command to require re-authentication.\\nEdit the /etc/sudoers file:\\n$ sudo visudo\\n\\nAdd or modify the following line:\\nDefaults timestamp_timeout=[value]\\nNote: The \\\"[value]\\\" must be a number that is greater than or equal to \\\"0\\\".\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-40817r646855_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-40817r646855_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel7:def:179\",\n \"href\": \"U_RHEL_7_V3R5_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:40:58" + } + ] + } + ], + "sha256": "72c57b78297e0b77e52ab003c5f1808eb424b56e83a17bb0e5a4e8a09cf2c0e2" + } + ], + "passthrough": { + "auxiliary_data": [ + { + "name": "XCCDF", + "data": { + "Benchmark": { + "xmlns": "http://checklists.nist.gov/xccdf/1.2", + "xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", + "resolved": "1", + "status": { + "text": "accepted", + "date": "2021-08-18" + }, + "rear-matter": { + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en" + }, + "plain-text": [ + { + "text": "Release: 3.5 Benchmark Date: 27 Oct 2021", + "id": "release-info" + }, + { + "text": "3.2.2.36079", + "id": "generator" + }, + { + "text": "1.10.0", + "id": "conventionsVersion" + } + ], + "metadata": { + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "dc:creator": { + "text": "DISA", + "xmlns:dc": "http://purl.org/dc/elements/1.1/" + }, + "dc:publisher": { + "text": "DISA", + "xmlns:dc": "http://purl.org/dc/elements/1.1/" + }, + "dc:contributor": { + "text": "DISA", + "xmlns:dc": "http://purl.org/dc/elements/1.1/" + }, + "dc:source": { + "text": "STIG.DOD.MIL", + "xmlns:dc": "http://purl.org/dc/elements/1.1/" + } + }, + "Profile": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "title": { + "text": "I - Mission Critical Classified", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en" + }, + "description": { + "text": "<ProfileDescription></ProfileDescription>", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en" + }, + "select": [ + { + "idref": "xccdf_mil.disa.stig_group_V-204393", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204396", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204397", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204398", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204399", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204402", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204403", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204404", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204405", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204406", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204407", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204408", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204409", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204410", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204411", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204412", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204413", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204414", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204415", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204416", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204417", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204418", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204419", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204420", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204421", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204422", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204423", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204424", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204425", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204426", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204429", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204430", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204431", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204432", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204433", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204434", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204435", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204437", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204438", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204440", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204442", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204443", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204445", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204447", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204448", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204449", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204450", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204451", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204452", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204457", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204458", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204461", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204462", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204466", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204467", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204482", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204483", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204487", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204490", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204491", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204493", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204494", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204495", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204496", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204497", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204502", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204503", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204504", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204506", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204507", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204508", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204509", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204510", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204511", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204512", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204514", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204515", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204516", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204517", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204518", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204519", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204520", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204521", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204522", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204523", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204524", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204525", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204526", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204527", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204528", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204529", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204530", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204531", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204532", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204533", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204534", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204535", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204536", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204537", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204538", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204539", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204540", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204541", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204542", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204543", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204544", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204545", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204546", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204547", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204548", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204549", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204550", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204551", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204552", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204553", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204554", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204555", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204556", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204557", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204558", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204559", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204560", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204561", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204562", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204563", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204564", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204565", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204566", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204567", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204568", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204569", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204570", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204571", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204572", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204573", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204576", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204578", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204579", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204584", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204585", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204587", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204588", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204589", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204590", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204591", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204592", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204593", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204594", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204595", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204596", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204597", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204598", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204599", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204600", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204601", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204602", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204605", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204606", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204607", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204609", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204612", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204613", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204614", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204615", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204616", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204617", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204620", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204621", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204622", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204624", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204625", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204627", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204630", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204631", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204632", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204633", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-214799", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237633", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237634", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237635", + "selected": "true" + } + ] + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "title": { + "text": "I - Mission Critical Public", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en" + }, + "description": { + "text": "<ProfileDescription></ProfileDescription>", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en" + }, + "select": [ + { + "idref": "xccdf_mil.disa.stig_group_V-204393", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204396", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204397", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204398", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204399", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204402", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204403", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204404", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204405", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204406", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204407", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204408", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204409", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204410", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204411", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204412", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204413", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204414", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204415", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204416", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204417", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204418", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204419", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204420", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204421", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204422", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204423", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204424", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204425", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204426", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204429", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204430", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204431", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204432", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204433", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204434", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204435", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204437", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204438", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204440", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204442", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204443", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204445", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204447", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204448", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204449", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204450", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204451", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204452", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204457", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204458", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204461", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204462", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204466", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204467", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204482", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204483", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204487", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204490", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204491", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204493", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204494", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204495", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204496", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204497", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204502", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204503", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204504", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204506", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204507", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204508", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204509", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204510", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204511", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204512", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204514", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204515", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204516", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204517", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204518", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204519", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204520", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204521", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204522", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204523", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204524", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204525", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204526", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204527", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204528", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204529", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204530", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204531", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204532", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204533", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204534", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204535", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204536", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204537", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204538", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204539", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204540", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204541", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204542", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204543", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204544", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204545", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204546", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204547", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204548", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204549", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204550", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204551", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204552", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204553", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204554", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204555", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204556", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204557", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204558", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204559", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204560", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204561", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204562", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204563", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204564", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204565", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204566", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204567", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204568", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204569", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204570", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204571", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204572", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204573", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204576", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204578", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204579", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204584", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204585", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204587", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204588", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204589", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204590", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204591", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204592", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204593", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204594", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204595", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204596", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204597", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204598", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204599", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204600", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204601", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204602", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204605", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204606", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204607", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204609", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204612", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204613", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204614", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204615", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204616", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204617", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204620", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204621", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204622", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204624", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204625", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204627", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204630", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204631", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204632", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204633", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-214799", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237633", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237634", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237635", + "selected": "true" + } + ] + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "title": { + "text": "I - Mission Critical Sensitive", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en" + }, + "description": { + "text": "<ProfileDescription></ProfileDescription>", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en" + }, + "select": [ + { + "idref": "xccdf_mil.disa.stig_group_V-204393", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204396", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204397", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204398", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204399", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204402", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204403", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204404", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204405", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204406", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204407", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204408", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204409", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204410", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204411", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204412", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204413", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204414", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204415", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204416", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204417", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204418", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204419", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204420", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204421", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204422", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204423", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204424", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204425", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204426", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204429", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204430", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204431", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204432", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204433", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204434", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204435", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204437", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204438", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204440", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204442", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204443", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204445", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204447", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204448", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204449", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204450", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204451", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204452", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204457", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204458", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204461", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204462", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204466", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204467", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204482", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204483", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204487", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204490", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204491", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204493", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204494", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204495", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204496", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204497", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204502", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204503", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204504", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204506", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204507", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204508", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204509", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204510", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204511", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204512", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204514", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204515", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204516", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204517", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204518", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204519", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204520", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204521", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204522", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204523", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204524", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204525", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204526", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204527", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204528", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204529", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204530", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204531", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204532", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204533", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204534", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204535", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204536", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204537", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204538", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204539", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204540", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204541", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204542", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204543", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204544", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204545", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204546", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204547", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204548", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204549", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204550", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204551", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204552", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204553", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204554", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204555", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204556", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204557", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204558", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204559", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204560", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204561", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204562", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204563", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204564", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204565", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204566", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204567", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204568", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204569", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204570", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204571", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204572", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204573", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204576", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204578", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204579", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204584", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204585", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204587", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204588", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204589", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204590", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204591", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204592", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204593", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204594", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204595", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204596", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204597", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204598", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204599", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204600", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204601", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204602", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204605", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204606", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204607", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204609", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204612", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204613", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204614", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204615", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204616", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204617", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204620", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204621", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204622", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204624", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204625", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204627", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204630", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204631", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204632", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204633", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-214799", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237633", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237634", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237635", + "selected": "true" + } + ] + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "title": { + "text": "II - Mission Support Classified", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en" + }, + "description": { + "text": "<ProfileDescription></ProfileDescription>", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en" + }, + "select": [ + { + "idref": "xccdf_mil.disa.stig_group_V-204393", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204396", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204397", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204398", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204399", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204402", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204403", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204404", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204405", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204406", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204407", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204408", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204409", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204410", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204411", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204412", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204413", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204414", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204415", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204416", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204417", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204418", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204419", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204420", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204421", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204422", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204423", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204424", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204425", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204426", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204429", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204430", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204431", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204432", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204433", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204434", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204435", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204437", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204438", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204440", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204442", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204443", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204445", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204447", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204448", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204449", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204450", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204451", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204452", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204457", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204458", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204461", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204462", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204466", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204467", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204482", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204483", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204487", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204490", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204491", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204493", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204494", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204495", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204496", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204497", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204502", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204503", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204504", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204506", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204507", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204508", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204509", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204510", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204511", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204512", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204514", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204515", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204516", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204517", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204518", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204519", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204520", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204521", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204522", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204523", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204524", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204525", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204526", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204527", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204528", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204529", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204530", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204531", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204532", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204533", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204534", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204535", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204536", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204537", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204538", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204539", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204540", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204541", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204542", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204543", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204544", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204545", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204546", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204547", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204548", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204549", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204550", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204551", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204552", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204553", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204554", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204555", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204556", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204557", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204558", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204559", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204560", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204561", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204562", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204563", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204564", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204565", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204566", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204567", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204568", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204569", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204570", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204571", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204572", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204573", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204576", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204578", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204579", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204584", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204585", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204587", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204588", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204589", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204590", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204591", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204592", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204593", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204594", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204595", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204596", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204597", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204598", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204599", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204600", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204601", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204602", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204605", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204606", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204607", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204609", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204612", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204613", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204614", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204615", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204616", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204617", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204620", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204621", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204622", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204624", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204625", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204627", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204630", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204631", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204632", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204633", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-214799", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237633", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237634", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237635", + "selected": "true" + } + ] + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "title": { + "text": "II - Mission Support Public", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en" + }, + "description": { + "text": "<ProfileDescription></ProfileDescription>", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en" + }, + "select": [ + { + "idref": "xccdf_mil.disa.stig_group_V-204393", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204396", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204397", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204398", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204399", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204402", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204403", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204404", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204405", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204406", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204407", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204408", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204409", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204410", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204411", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204412", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204413", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204414", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204415", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204416", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204417", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204418", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204419", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204420", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204421", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204422", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204423", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204424", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204425", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204426", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204429", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204430", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204431", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204432", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204433", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204434", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204435", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204437", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204438", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204440", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204442", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204443", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204445", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204447", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204448", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204449", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204450", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204451", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204452", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204457", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204458", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204461", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204462", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204466", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204467", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204482", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204483", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204487", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204490", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204491", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204493", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204494", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204495", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204496", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204497", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204502", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204503", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204504", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204506", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204507", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204508", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204509", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204510", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204511", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204512", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204514", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204515", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204516", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204517", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204518", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204519", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204520", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204521", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204522", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204523", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204524", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204525", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204526", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204527", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204528", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204529", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204530", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204531", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204532", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204533", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204534", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204535", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204536", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204537", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204538", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204539", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204540", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204541", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204542", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204543", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204544", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204545", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204546", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204547", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204548", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204549", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204550", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204551", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204552", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204553", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204554", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204555", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204556", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204557", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204558", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204559", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204560", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204561", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204562", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204563", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204564", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204565", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204566", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204567", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204568", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204569", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204570", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204571", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204572", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204573", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204576", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204578", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204579", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204584", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204585", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204587", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204588", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204589", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204590", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204591", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204592", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204593", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204594", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204595", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204596", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204597", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204598", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204599", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204600", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204601", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204602", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204605", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204606", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204607", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204609", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204612", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204613", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204614", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204615", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204616", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204617", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204620", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204621", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204622", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204624", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204625", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204627", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204630", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204631", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204632", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204633", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-214799", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237633", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237634", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237635", + "selected": "true" + } + ] + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "title": { + "text": "II - Mission Support Sensitive", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en" + }, + "description": { + "text": "<ProfileDescription></ProfileDescription>", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en" + }, + "select": [ + { + "idref": "xccdf_mil.disa.stig_group_V-204393", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204396", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204397", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204398", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204399", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204402", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204403", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204404", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204405", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204406", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204407", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204408", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204409", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204410", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204411", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204412", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204413", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204414", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204415", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204416", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204417", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204418", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204419", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204420", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204421", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204422", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204423", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204424", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204425", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204426", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204429", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204430", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204431", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204432", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204433", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204434", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204435", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204437", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204438", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204440", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204442", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204443", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204445", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204447", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204448", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204449", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204450", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204451", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204452", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204457", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204458", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204461", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204462", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204466", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204467", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204482", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204483", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204487", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204490", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204491", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204493", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204494", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204495", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204496", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204497", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204502", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204503", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204504", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204506", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204507", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204508", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204509", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204510", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204511", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204512", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204514", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204515", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204516", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204517", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204518", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204519", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204520", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204521", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204522", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204523", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204524", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204525", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204526", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204527", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204528", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204529", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204530", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204531", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204532", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204533", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204534", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204535", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204536", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204537", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204538", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204539", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204540", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204541", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204542", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204543", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204544", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204545", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204546", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204547", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204548", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204549", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204550", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204551", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204552", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204553", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204554", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204555", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204556", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204557", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204558", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204559", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204560", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204561", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204562", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204563", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204564", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204565", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204566", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204567", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204568", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204569", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204570", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204571", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204572", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204573", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204576", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204578", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204579", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204584", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204585", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204587", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204588", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204589", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204590", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204591", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204592", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204593", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204594", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204595", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204596", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204597", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204598", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204599", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204600", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204601", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204602", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204605", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204606", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204607", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204609", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204612", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204613", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204614", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204615", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204616", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204617", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204620", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204621", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204622", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204624", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204625", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204627", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204630", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204631", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204632", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204633", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-214799", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237633", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237634", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237635", + "selected": "true" + } + ] + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "title": { + "text": "III - Administrative Classified", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en" + }, + "description": { + "text": "<ProfileDescription></ProfileDescription>", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en" + }, + "select": [ + { + "idref": "xccdf_mil.disa.stig_group_V-204393", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204396", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204397", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204398", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204399", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204402", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204403", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204404", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204405", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204406", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204407", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204408", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204409", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204410", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204411", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204412", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204413", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204414", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204415", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204416", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204417", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204418", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204419", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204420", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204421", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204422", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204423", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204424", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204425", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204426", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204429", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204430", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204431", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204432", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204433", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204434", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204435", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204437", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204438", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204440", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204442", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204443", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204445", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204447", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204448", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204449", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204450", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204451", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204452", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204457", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204458", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204461", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204462", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204466", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204467", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204482", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204483", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204487", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204490", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204491", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204493", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204494", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204495", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204496", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204497", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204502", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204503", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204504", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204506", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204507", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204508", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204509", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204510", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204511", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204512", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204514", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204515", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204516", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204517", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204518", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204519", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204520", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204521", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204522", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204523", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204524", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204525", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204526", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204527", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204528", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204529", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204530", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204531", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204532", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204533", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204534", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204535", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204536", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204537", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204538", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204539", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204540", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204541", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204542", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204543", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204544", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204545", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204546", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204547", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204548", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204549", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204550", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204551", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204552", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204553", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204554", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204555", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204556", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204557", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204558", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204559", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204560", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204561", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204562", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204563", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204564", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204565", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204566", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204567", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204568", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204569", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204570", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204571", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204572", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204573", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204576", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204578", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204579", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204584", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204585", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204587", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204588", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204589", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204590", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204591", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204592", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204593", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204594", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204595", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204596", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204597", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204598", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204599", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204600", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204601", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204602", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204605", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204606", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204607", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204609", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204612", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204613", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204614", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204615", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204616", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204617", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204620", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204621", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204622", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204624", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204625", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204627", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204630", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204631", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204632", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204633", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-214799", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237633", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237634", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237635", + "selected": "true" + } + ] + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "title": { + "text": "III - Administrative Public", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en" + }, + "description": { + "text": "<ProfileDescription></ProfileDescription>", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en" + }, + "select": [ + { + "idref": "xccdf_mil.disa.stig_group_V-204393", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204396", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204397", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204398", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204399", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204402", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204403", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204404", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204405", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204406", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204407", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204408", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204409", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204410", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204411", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204412", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204413", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204414", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204415", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204416", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204417", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204418", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204419", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204420", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204421", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204422", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204423", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204424", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204425", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204426", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204429", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204430", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204431", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204432", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204433", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204434", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204435", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204437", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204438", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204440", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204442", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204443", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204445", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204447", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204448", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204449", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204450", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204451", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204452", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204457", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204458", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204461", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204462", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204466", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204467", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204482", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204483", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204487", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204490", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204491", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204493", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204494", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204495", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204496", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204497", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204502", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204503", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204504", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204506", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204507", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204508", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204509", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204510", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204511", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204512", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204514", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204515", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204516", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204517", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204518", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204519", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204520", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204521", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204522", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204523", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204524", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204525", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204526", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204527", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204528", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204529", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204530", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204531", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204532", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204533", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204534", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204535", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204536", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204537", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204538", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204539", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204540", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204541", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204542", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204543", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204544", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204545", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204546", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204547", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204548", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204549", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204550", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204551", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204552", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204553", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204554", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204555", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204556", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204557", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204558", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204559", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204560", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204561", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204562", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204563", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204564", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204565", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204566", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204567", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204568", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204569", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204570", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204571", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204572", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204573", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204576", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204578", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204579", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204584", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204585", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204587", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204588", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204589", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204590", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204591", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204592", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204593", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204594", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204595", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204596", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204597", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204598", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204599", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204600", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204601", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204602", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204605", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204606", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204607", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204609", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204612", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204613", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204614", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204615", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204616", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204617", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204620", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204621", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204622", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204624", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204625", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204627", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204630", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204631", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204632", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204633", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-214799", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237633", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237634", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237635", + "selected": "true" + } + ] + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "title": { + "text": "III - Administrative Sensitive", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en" + }, + "description": { + "text": "<ProfileDescription></ProfileDescription>", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en" + }, + "select": [ + { + "idref": "xccdf_mil.disa.stig_group_V-204393", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204396", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204397", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204398", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204399", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204402", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204403", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204404", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204405", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204406", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204407", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204408", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204409", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204410", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204411", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204412", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204413", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204414", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204415", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204416", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204417", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204418", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204419", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204420", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204421", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204422", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204423", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204424", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204425", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204426", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204429", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204430", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204431", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204432", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204433", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204434", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204435", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204437", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204438", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204440", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204442", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204443", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204445", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204447", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204448", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204449", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204450", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204451", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204452", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204457", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204458", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204461", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204462", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204466", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204467", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204482", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204483", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204487", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204490", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204491", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204493", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204494", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204495", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204496", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204497", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204502", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204503", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204504", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204506", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204507", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204508", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204509", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204510", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204511", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204512", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204514", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204515", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204516", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204517", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204518", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204519", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204520", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204521", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204522", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204523", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204524", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204525", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204526", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204527", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204528", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204529", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204530", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204531", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204532", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204533", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204534", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204535", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204536", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204537", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204538", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204539", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204540", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204541", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204542", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204543", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204544", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204545", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204546", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204547", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204548", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204549", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204550", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204551", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204552", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204553", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204554", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204555", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204556", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204557", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204558", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204559", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204560", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204561", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204562", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204563", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204564", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204565", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204566", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204567", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204568", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204569", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204570", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204571", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204572", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204573", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204576", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204578", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204579", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204584", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204585", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204587", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204588", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204589", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204590", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204591", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204592", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204593", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204594", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204595", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204596", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204597", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204598", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204599", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204600", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204601", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204602", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204605", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204606", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204607", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204609", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204612", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204613", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204614", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204615", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204616", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204617", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204620", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204621", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204622", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204624", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204625", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204627", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204630", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204631", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204632", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204633", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-214799", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237633", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237634", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237635", + "selected": "true" + } + ] + }, + { + "id": "xccdf_mil.disa.stig_profile_CAT_I_Only", + "title": { + "text": "CAT I Only", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en" + }, + "description": { + "text": "This profile only includes rules that are Severity Category I.", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en" + }, + "select": [ + { + "idref": "xccdf_mil.disa.stig_rule_SV-204393r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204396r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204397r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204398r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204399r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204402r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204403r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204404r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204405r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204406r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204407r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204408r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204409r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204410r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204411r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204412r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204413r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204414r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204415r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204416r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204417r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204418r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204419r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204420r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204421r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204422r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204423r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204426r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204429r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204430r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204431r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204434r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204435r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204437r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204445r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204449r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204450r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204451r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204452r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204457r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204461r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204466r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204467r603826_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204482r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204483r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204487r744106_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204490r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204491r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204493r603840_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204494r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204495r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204496r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204503r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204504r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204506r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204507r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204508r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204509r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204510r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204511r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204512r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204514r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204515r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204516r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204517r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204518r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204519r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204520r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204521r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204522r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204523r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204524r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204525r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204526r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204527r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204528r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204529r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204530r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204531r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204532r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204533r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204534r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204535r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204536r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204537r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204538r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204539r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204540r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204541r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204542r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204543r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204544r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204545r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204546r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204547r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204548r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204549r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204550r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204551r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204552r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204553r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204554r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204555r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204556r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204557r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204558r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204559r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204560r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204561r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204562r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204563r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204564r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204565r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204566r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204567r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204568r744115_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204569r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204570r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204571r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204572r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204573r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204576r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204578r744116_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204579r646844_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204584r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204585r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204587r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204588r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204589r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204590r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204591r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204592r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204593r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204595r744117_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204596r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204597r792834_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204598r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204599r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204600r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204601r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204602r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204605r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204609r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204612r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204613r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204614r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204615r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204616r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204617r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204622r603849_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204624r646847_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204625r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204630r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204631r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204632r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204633r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-237633r646850_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-237634r646853_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-237635r792836_rule", + "selected": "false" + } + ] + } + ], + "Value": [ + { + "id": "xccdf_mil.disa.stig_value_var_password_pam_unix_remember", + "operator": "equals", + "type": "number", + "title": { + "text": "remember", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "description": { + "text": "The last n passwords for each user are saved in /etc/security/opasswd in order to force password change history and keep the user from alternating between the same password too frequently.", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "value": [ + 5, + { + "text": 0, + "selector": "0" + }, + { + "text": 4, + "selector": "4" + }, + { + "text": 5, + "selector": "5" + }, + { + "text": 10, + "selector": "10" + }, + { + "text": 24, + "selector": "24" + } + ] + }, + { + "id": "xccdf_mil.disa.stig_value_var_password_pam_ucredit", + "operator": "equals", + "type": "number", + "title": { + "text": "ucredit", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "description": { + "text": "Minimum number of upper case in password", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "value": [ + -1, + { + "text": -2, + "selector": "2" + }, + { + "text": -1, + "selector": "1" + }, + { + "text": 0, + "selector": "0" + } + ] + }, + { + "id": "xccdf_mil.disa.stig_value_var_password_pam_ocredit", + "operator": "equals", + "type": "number", + "title": { + "text": "ocredit", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "description": { + "text": "Minimum number of other (special characters) in\npassword", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "value": [ + -1, + { + "text": -2, + "selector": "2" + }, + { + "text": -1, + "selector": "1" + }, + { + "text": 0, + "selector": "0" + } + ] + }, + { + "id": "xccdf_mil.disa.stig_value_var_password_pam_minlen", + "operator": "equals", + "type": "number", + "title": { + "text": "minlen", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "description": { + "text": "Minimum number of characters in password", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "value": [ + 15, + { + "text": 6, + "selector": "6" + }, + { + "text": 7, + "selector": "7" + }, + { + "text": 8, + "selector": "8" + }, + { + "text": 10, + "selector": "10" + }, + { + "text": 12, + "selector": "12" + }, + { + "text": 14, + "selector": "14" + }, + { + "text": 15, + "selector": "15" + } + ] + }, + { + "id": "xccdf_mil.disa.stig_value_var_password_pam_minclass", + "operator": "equals", + "type": "number", + "title": { + "text": "minclass", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "description": { + "text": "Minimum number of categories of characters that must exist in a password", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "value": [ + 4, + { + "text": 1, + "selector": "1" + }, + { + "text": 2, + "selector": "2" + }, + { + "text": 3, + "selector": "3" + }, + { + "text": 4, + "selector": "4" + } + ] + }, + { + "id": "xccdf_mil.disa.stig_value_var_password_pam_maxrepeat", + "operator": "equals", + "type": "number", + "title": { + "text": "maxrepeat", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "description": { + "text": "Maximum Number of Consecutive Repeating Characters in a Password", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "value": [ + 3, + { + "text": 1, + "selector": "1" + }, + { + "text": 2, + "selector": "2" + }, + { + "text": 3, + "selector": "3" + } + ] + }, + { + "id": "xccdf_mil.disa.stig_value_var_password_pam_maxclassrepeat", + "operator": "equals", + "type": "number", + "title": { + "text": "maxclassrepeat", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "description": { + "text": "Maximum Number of Consecutive Repeating Characters in a Password From the Same Character Class", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "value": [ + 4, + { + "text": 1, + "selector": "1" + }, + { + "text": 2, + "selector": "2" + }, + { + "text": 3, + "selector": "3" + }, + { + "text": 4, + "selector": "4" + } + ] + }, + { + "id": "xccdf_mil.disa.stig_value_var_password_pam_lcredit", + "operator": "equals", + "type": "number", + "title": { + "text": "lcredit", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "description": { + "text": "Minimum number of lower case in password", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "value": [ + -1, + { + "text": -2, + "selector": "2" + }, + { + "text": -1, + "selector": "1" + }, + { + "text": 0, + "selector": "0" + } + ] + }, + { + "id": "xccdf_mil.disa.stig_value_var_password_pam_difok", + "operator": "equals", + "type": "number", + "title": { + "text": "difok", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "description": { + "text": "Minimum number of characters not present in old\npassword", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "warning": { + "text": "Keep this high for short passwords", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US", + "category": "general" + }, + "value": [ + 8, + { + "text": 2, + "selector": "2" + }, + { + "text": 3, + "selector": "3" + }, + { + "text": 4, + "selector": "4" + }, + { + "text": 5, + "selector": "5" + }, + { + "text": 6, + "selector": "6" + }, + { + "text": 7, + "selector": "7" + }, + { + "text": 8, + "selector": "8" + }, + { + "text": 15, + "selector": "15" + } + ] + }, + { + "id": "xccdf_mil.disa.stig_value_var_password_pam_dcredit", + "operator": "equals", + "type": "number", + "title": { + "text": "dcredit", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "description": { + "text": "Minimum number of digits in password", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "value": [ + -1, + { + "text": -2, + "selector": "2" + }, + { + "text": -1, + "selector": "1" + }, + { + "text": 0, + "selector": "0" + } + ] + }, + { + "id": "xccdf_mil.disa.stig_value_var_auditd_action_mail_acct", + "type": "string", + "title": { + "text": "Account for auditd to send email when actions occurs", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "description": { + "text": "The setting for action_mail_acct in /etc/audit/auditd.conf", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "value": [ + "root", + { + "text": "root", + "selector": "root" + }, + { + "text": "admin", + "selector": "admin" + } + ] + }, + { + "id": "xccdf_mil.disa.stig_value_var_accounts_user_umask", + "operator": "equals", + "type": "string", + "title": { + "text": "Sensible umask", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "description": { + "text": "Enter default user umask", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "value": [ + 77, + { + "text": 7, + "selector": "007" + }, + { + "text": 22, + "selector": "022" + }, + { + "text": 27, + "selector": "027" + }, + { + "text": 77, + "selector": "077" + } + ] + }, + { + "id": "xccdf_mil.disa.stig_value_var_accounts_minimum_age_login_defs", + "type": "number", + "title": { + "text": "minimum password age", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "description": { + "text": "Minimum age of password in days", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "warning": { + "text": "This will only apply to newly created accounts", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US", + "category": "general" + }, + "value": [ + 1, + { + "text": 7, + "selector": "7" + }, + { + "text": 5, + "selector": "5" + }, + { + "text": 2, + "selector": "2" + }, + { + "text": 1, + "selector": "1" + }, + { + "text": 0, + "selector": "0" + } + ] + }, + { + "id": "xccdf_mil.disa.stig_value_var_accounts_maximum_age_login_defs", + "type": "number", + "title": { + "text": "maximum password age", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "description": { + "text": "Maximum age of password in days", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "warning": { + "text": "This will only apply to newly created accounts", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US", + "category": "general" + }, + "value": [ + 60, + { + "text": 60, + "selector": "60" + }, + { + "text": 90, + "selector": "90" + }, + { + "text": 120, + "selector": "120" + }, + { + "text": 180, + "selector": "180" + } + ] + }, + { + "id": "xccdf_mil.disa.stig_value_var_accounts_max_concurrent_login_sessions", + "operator": "equals", + "type": "number", + "title": { + "text": "Maximum concurrent login sessions", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "description": { + "text": "Maximum number of concurrent sessions by a user", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "value": [ + 10, + { + "text": 1, + "selector": "1" + }, + { + "text": 3, + "selector": "3" + }, + { + "text": 5, + "selector": "5" + }, + { + "text": 10, + "selector": "10" + }, + { + "text": 15, + "selector": "15" + }, + { + "text": 20, + "selector": "20" + } + ] + }, + { + "id": "xccdf_mil.disa.stig_value_var_accounts_fail_delay", + "operator": "equals", + "type": "number", + "title": { + "text": "Maximum login attempts delay", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "description": { + "text": "Maximum time in seconds between fail login attempts before re-prompting.", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "value": [ + 4, + { + "text": 1, + "selector": "1" + }, + { + "text": 2, + "selector": "2" + }, + { + "text": 3, + "selector": "3" + }, + { + "text": 4, + "selector": "4" + }, + { + "text": 5, + "selector": "5" + } + ] + }, + { + "id": "xccdf_mil.disa.stig_value_var_account_disable_post_pw_expiration", + "type": "number", + "title": { + "text": "number of days after a password expires until the account is permanently disabled", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "description": { + "text": "The number of days to wait after a password expires, until the account will be permanently disabled.", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "warning": { + "text": "This will only apply to newly created accounts", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US", + "category": "general" + }, + "value": [ + 0, + { + "text": 0, + "selector": "0" + }, + { + "text": 30, + "selector": "30" + }, + { + "text": 35, + "selector": "35" + }, + { + "text": 40, + "selector": "40" + }, + { + "text": 60, + "selector": "60" + }, + { + "text": 90, + "selector": "90" + }, + { + "text": 180, + "selector": "180" + } + ] + }, + { + "id": "xccdf_mil.disa.stig_value_sysctl_net_ipv6_conf_all_accept_source_route_value", + "operator": "equals", + "type": "number", + "title": { + "text": "net.ipv6.conf.all.accept_source_route", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "description": { + "text": "Trackers could be using source-routed packets to\ngenerate traffic that seems to be intra-net, but actually was\ncreated outside and has been redirected.", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "value": [ + 0, + { + "text": 1, + "selector": "enabled" + }, + { + "text": 0, + "selector": "disabled" + } + ] + }, + { + "id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_icmp_echo_ignore_broadcasts_value", + "operator": "equals", + "type": "number", + "title": { + "text": "net.ipv4.icmp_echo_ignore_broadcasts", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "description": { + "text": "Ignore all ICMP ECHO and TIMESTAMP requests sent to it via broadcast/multicast", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "value": [ + 1, + { + "text": 1, + "selector": "enabled" + }, + { + "text": 0, + "selector": "disabled" + } + ] + }, + { + "id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_default_accept_source_route_value", + "operator": "equals", + "type": "number", + "title": { + "text": "net.ipv4.conf.default.accept_source_route", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "description": { + "text": "Disable IP source routing?", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "value": [ + 0, + { + "text": 1, + "selector": "enabled" + }, + { + "text": 0, + "selector": "disabled" + } + ] + }, + { + "id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_default_accept_redirects_value", + "operator": "equals", + "type": "number", + "title": { + "text": "net.ipv4.conf.default.accept_redirects", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "description": { + "text": "Disable ICMP Redirect Acceptance?", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "value": [ + 0, + { + "text": 1, + "selector": "enabled" + }, + { + "text": 0, + "selector": "disabled" + } + ] + }, + { + "id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_all_accept_source_route_value", + "operator": "equals", + "type": "number", + "title": { + "text": "net.ipv4.conf.all.accept_source_route", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "description": { + "text": "Trackers could be using source-routed packets to\ngenerate traffic that seems to be intra-net, but actually was\ncreated outside and has been redirected.", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "value": [ + 0, + { + "text": 1, + "selector": "enabled" + }, + { + "text": 0, + "selector": "disabled" + } + ] + }, + { + "id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_all_accept_redirects_value", + "operator": "equals", + "type": "number", + "title": { + "text": "net.ipv4.conf.all.accept_redirects", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "description": { + "text": "Disable ICMP Redirect Acceptance", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "value": [ + 0, + { + "text": 1, + "selector": "enabled" + }, + { + "text": 0, + "selector": "disabled" + } + ] + }, + { + "id": "xccdf_mil.disa.stig_value_sshd_idle_timeout_value", + "operator": "equals", + "type": "number", + "title": { + "text": "SSH session Idle time", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "description": { + "text": "Specify duration of allowed idle time.", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "value": [ + 600, + { + "text": 300, + "selector": "5_minutes" + }, + { + "text": 600, + "selector": "10_minutes" + }, + { + "text": 900, + "selector": "15_minutes" + }, + { + "text": 3600, + "selector": "60_minutes" + }, + { + "text": 7200, + "selector": "120_minutes" + } + ] + }, + { + "id": "xccdf_mil.disa.stig_value_inactivity_timeout_value", + "operator": "equals", + "type": "number", + "title": { + "text": "Inactivity timeout", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "description": { + "text": "Choose allowed duration of inactive SSH connections, shells, and X sessions", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en-US" + }, + "value": [ + 900, + { + "text": 300, + "selector": "5_minutes" + }, + { + "text": 600, + "selector": "10_minutes" + }, + { + "text": 900, + "selector": "15_minutes" + } + ] + } + ] + } } + } ] + } } \ No newline at end of file diff --git a/test/sample_data/xccdf_results/xccdf-openscap-rhel8-hdf.json b/test/sample_data/xccdf_results/xccdf-openscap-rhel8-hdf.json index 1f79d5cb5..a3c46444f 100644 --- a/test/sample_data/xccdf_results/xccdf-openscap-rhel8-hdf.json +++ b/test/sample_data/xccdf_results/xccdf-openscap-rhel8-hdf.json @@ -1,37728 +1,46964 @@ { - "platform": { - "name": "Heimdall Tools", - "release": "2.6.17", - "target_id": "cpe:/o:redhat:enterprise_linux:8" - }, - "version": "2.6.17", - "statistics": { - "duration": 0 - }, - "profiles": [ + "platform": { + "name": "Heimdall Tools", + "release": "2.6.28", + "target_id": "cpe:/o:redhat:enterprise_linux:8" + }, + "version": "2.6.28", + "statistics": {}, + "profiles": [ + { + "name": "xccdf_mil.disa.stig_benchmark_RHEL_8_STIG", + "version": "SCAP_1.2", + "title": "Red Hat Enterprise Linux 8 Security Technical Implementation Guide", + "maintainer": "DISA", + "summary": "This Security Technical Implementation Guide is published as a tool to improve the security of Department of Defense (DoD) information systems. The requirements are derived from the National Institute of Standards and Technology (NIST) 800-53 and related documents. Comments or proposed revisions to this document should be sent via email to the following address: disa.stig_spt@mail.mil.", + "description": "{\n \"description\": {\n \"text\": \"This Security Technical Implementation Guide is published as a tool to improve the security of Department of Defense (DoD) information systems. The requirements are derived from the National Institute of Standards and Technology (NIST) 800-53 and related documents. Comments or proposed revisions to this document should be sent via email to the following address: disa.stig_spt@mail.mil.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"front-matter\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"metadata\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"dc:creator\": {\n \"text\": \"DISA\",\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\"\n },\n \"dc:publisher\": {\n \"text\": \"DISA\",\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\"\n },\n \"dc:contributor\": {\n \"text\": \"DISA\",\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\"\n },\n \"dc:source\": {\n \"text\": \"STIG.DOD.MIL\",\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\"\n }\n },\n \"model\": {\n \"system\": \"urn:xccdf:scoring:default\"\n },\n \"plain-text\": [\n {\n \"text\": \"Release: 1.3 Benchmark Date: 27 Oct 2021\",\n \"id\": \"release-info\"\n },\n {\n \"text\": \"3.2.2.36079\",\n \"id\": \"generator\"\n },\n {\n \"text\": \"1.10.0\",\n \"id\": \"conventionsVersion\"\n }\n ],\n \"rear-matter\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"href\": \"https://cyber.mil\",\n \"dc:publisher\": \"DISA\",\n \"dc:source\": \"STIG.DOD.MIL\"\n },\n \"status\": {\n \"text\": \"accepted\",\n \"date\": \"2021-08-18\"\n },\n \"version\": {\n \"text\": 1.003,\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"xml:lang\": \"en\",\n \"xmlns\": \"http://checklists.nist.gov/xccdf/1.2\",\n \"TestResult.benchmark\": {\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark.xml\",\n \"id\": \"xccdf_mil.disa.stig_benchmark_RHEL_8_STIG\"\n },\n \"TestResult.start-time\": \"2021-11-12T11:37:26-05:00\",\n \"TestResult.end-time\": \"2021-11-12T11:37:31-05:00\",\n \"TestResult.id\": \"xccdf_org.open-scap_testresult_default-profile\",\n \"TestResult.identity\": {\n \"text\": \"ccoffin\",\n \"authenticated\": \"false\",\n \"privileged\": \"false\"\n },\n \"TestResult.platform.idref\": \"cpe:/o:redhat:enterprise_linux:8\",\n \"TestResult.score\": {\n \"text\": 24.596775,\n \"system\": \"urn:xccdf:scoring:default\",\n \"maximum\": \"100.000000\"\n },\n \"TestResult.target\": \"localhost\",\n \"TestResult.target-address\": [\n \"127.0.0.1\",\n \"10.0.2.15\",\n \"192.168.122.1\",\n \"0:0:0:0:0:0:0:1\",\n \"fe80:0:0:0:a00:27ff:fe6d:f716\"\n ],\n \"TestResult.target-facts\": {\n \"fact\": [\n {\n \"text\": \"OpenSCAP\",\n \"name\": \"urn:xccdf:fact:scanner:name\",\n \"type\": \"string\"\n },\n {\n \"text\": \"1.3.5\",\n \"name\": \"urn:xccdf:fact:scanner:version\",\n \"type\": \"string\"\n },\n {\n \"text\": \"localhost\",\n \"name\": \"urn:xccdf:fact:asset:identifier:fqdn\",\n \"type\": \"string\"\n },\n {\n \"text\": \"localhost.localdomain\",\n \"name\": \"urn:xccdf:fact:asset:identifier:host_name\",\n \"type\": \"string\"\n },\n {\n \"text\": \"00:00:00:00:00:00\",\n \"name\": \"urn:xccdf:fact:ethernet:MAC\",\n \"type\": \"string\"\n },\n {\n \"text\": \"00:00:00:00:00:00\",\n \"name\": \"urn:xccdf:fact:asset:identifier:mac\",\n \"type\": \"string\"\n },\n {\n \"text\": \"08:00:27:6D:F7:16\",\n \"name\": \"urn:xccdf:fact:ethernet:MAC\",\n \"type\": \"string\"\n },\n {\n \"text\": \"08:00:27:6D:F7:16\",\n \"name\": \"urn:xccdf:fact:asset:identifier:mac\",\n \"type\": \"string\"\n },\n {\n \"text\": \"52:54:00:71:14:BD\",\n \"name\": \"urn:xccdf:fact:ethernet:MAC\",\n \"type\": \"string\"\n },\n {\n \"text\": \"52:54:00:71:14:BD\",\n \"name\": \"urn:xccdf:fact:asset:identifier:mac\",\n \"type\": \"string\"\n },\n {\n \"text\": \"127.0.0.1\",\n \"name\": \"urn:xccdf:fact:asset:identifier:ipv4\",\n \"type\": \"string\"\n },\n {\n \"text\": \"10.0.2.15\",\n \"name\": \"urn:xccdf:fact:asset:identifier:ipv4\",\n \"type\": \"string\"\n },\n {\n \"text\": \"192.168.122.1\",\n \"name\": \"urn:xccdf:fact:asset:identifier:ipv4\",\n \"type\": \"string\"\n },\n {\n \"text\": \"::1\",\n \"name\": \"urn:xccdf:fact:asset:identifier:ipv6\",\n \"type\": \"string\"\n },\n {\n \"text\": \"fe80::a00:27ff:fe6d:f716\",\n \"name\": \"urn:xccdf:fact:asset:identifier:ipv6\",\n \"type\": \"string\"\n }\n ]\n },\n \"TestResult.test-system\": \"cpe:/a:redhat:openscap:1.3.5\",\n \"TestResult.title\": \"OSCAP Scan Result\",\n \"TestResult.version\": \"001.003\"\n}", + "license": "terms-of-use", + "copyright": "DISA", + "copyright_email": "disa.stig_spt@mail.mil", + "supports": [], + "attributes": [], + "groups": [], + "status": "loaded", + "controls": [ { - "name": "xccdf_mil.disa.stig_benchmark_RHEL_8_STIG", - "version": "SCAP_1.2", - "title": "Red Hat Enterprise Linux 8 Security Technical Implementation Guide", - "maintainer": "DISA", - "summary": "This Security Technical Implementation Guide is published as a tool to improve the security of Department of Defense (DoD) information systems. The requirements are derived from the National Institute of Standards and Technology (NIST) 800-53 and related documents. Comments or proposed revisions to this document should be sent via email to the following address: disa.stig_spt@mail.mil.", - "description": "{\n \"description\": {\n \"text\": \"This Security Technical Implementation Guide is published as a tool to improve the security of Department of Defense (DoD) information systems. The requirements are derived from the National Institute of Standards and Technology (NIST) 800-53 and related documents. Comments or proposed revisions to this document should be sent via email to the following address: disa.stig_spt@mail.mil.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"front-matter\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"metadata\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"dc:creator\": {\n \"text\": \"DISA\",\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\"\n },\n \"dc:publisher\": {\n \"text\": \"DISA\",\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\"\n },\n \"dc:contributor\": {\n \"text\": \"DISA\",\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\"\n },\n \"dc:source\": {\n \"text\": \"STIG.DOD.MIL\",\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\"\n }\n },\n \"model\": {\n \"system\": \"urn:xccdf:scoring:default\"\n },\n \"plain-text\": [\n {\n \"text\": \"Release: 1.3 Benchmark Date: 27 Oct 2021\",\n \"id\": \"release-info\"\n },\n {\n \"text\": \"3.2.2.36079\",\n \"id\": \"generator\"\n },\n {\n \"text\": \"1.10.0\",\n \"id\": \"conventionsVersion\"\n }\n ],\n \"rear-matter\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"href\": \"https://cyber.mil\",\n \"dc:publisher\": \"DISA\",\n \"dc:source\": \"STIG.DOD.MIL\"\n },\n \"status\": {\n \"text\": \"accepted\",\n \"date\": \"2021-08-18\"\n },\n \"version\": {\n \"text\": 1.003,\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"xml:lang\": \"en\",\n \"xmlns\": \"http://checklists.nist.gov/xccdf/1.2\",\n \"TestResult.benchmark\": {\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark.xml\",\n \"id\": \"xccdf_mil.disa.stig_benchmark_RHEL_8_STIG\"\n },\n \"TestResult.start-time\": \"2021-11-12T11:37:26-05:00\",\n \"TestResult.end-time\": \"2021-11-12T11:37:31-05:00\",\n \"TestResult.id\": \"xccdf_org.open-scap_testresult_default-profile\",\n \"TestResult.identity\": {\n \"text\": \"ccoffin\",\n \"authenticated\": \"false\",\n \"privileged\": \"false\"\n },\n \"TestResult.platform.idref\": \"cpe:/o:redhat:enterprise_linux:8\",\n \"TestResult.score\": {\n \"text\": 24.596775,\n \"system\": \"urn:xccdf:scoring:default\",\n \"maximum\": \"100.000000\"\n },\n \"TestResult.target\": \"localhost\",\n \"TestResult.target-address\": [\n \"127.0.0.1\",\n \"10.0.2.15\",\n \"192.168.122.1\",\n \"0:0:0:0:0:0:0:1\",\n \"fe80:0:0:0:a00:27ff:fe6d:f716\"\n ],\n \"TestResult.target-facts\": {\n \"fact\": [\n {\n \"text\": \"OpenSCAP\",\n \"name\": \"urn:xccdf:fact:scanner:name\",\n \"type\": \"string\"\n },\n {\n \"text\": \"1.3.5\",\n \"name\": \"urn:xccdf:fact:scanner:version\",\n \"type\": \"string\"\n },\n {\n \"text\": \"localhost\",\n \"name\": \"urn:xccdf:fact:asset:identifier:fqdn\",\n \"type\": \"string\"\n },\n {\n \"text\": \"localhost.localdomain\",\n \"name\": \"urn:xccdf:fact:asset:identifier:host_name\",\n \"type\": \"string\"\n },\n {\n \"text\": \"00:00:00:00:00:00\",\n \"name\": \"urn:xccdf:fact:ethernet:MAC\",\n \"type\": \"string\"\n },\n {\n \"text\": \"00:00:00:00:00:00\",\n \"name\": \"urn:xccdf:fact:asset:identifier:mac\",\n \"type\": \"string\"\n },\n {\n \"text\": \"08:00:27:6D:F7:16\",\n \"name\": \"urn:xccdf:fact:ethernet:MAC\",\n \"type\": \"string\"\n },\n {\n \"text\": \"08:00:27:6D:F7:16\",\n \"name\": \"urn:xccdf:fact:asset:identifier:mac\",\n \"type\": \"string\"\n },\n {\n \"text\": \"52:54:00:71:14:BD\",\n \"name\": \"urn:xccdf:fact:ethernet:MAC\",\n \"type\": \"string\"\n },\n {\n \"text\": \"52:54:00:71:14:BD\",\n \"name\": \"urn:xccdf:fact:asset:identifier:mac\",\n \"type\": \"string\"\n },\n {\n \"text\": \"127.0.0.1\",\n \"name\": \"urn:xccdf:fact:asset:identifier:ipv4\",\n \"type\": \"string\"\n },\n {\n \"text\": \"10.0.2.15\",\n \"name\": \"urn:xccdf:fact:asset:identifier:ipv4\",\n \"type\": \"string\"\n },\n {\n \"text\": \"192.168.122.1\",\n \"name\": \"urn:xccdf:fact:asset:identifier:ipv4\",\n \"type\": \"string\"\n },\n {\n \"text\": \"::1\",\n \"name\": \"urn:xccdf:fact:asset:identifier:ipv6\",\n \"type\": \"string\"\n },\n {\n \"text\": \"fe80::a00:27ff:fe6d:f716\",\n \"name\": \"urn:xccdf:fact:asset:identifier:ipv6\",\n \"type\": \"string\"\n }\n ]\n },\n \"TestResult.test-system\": \"cpe:/a:redhat:openscap:1.3.5\",\n \"TestResult.title\": \"OSCAP Scan Result\",\n \"TestResult.version\": \"001.003\"\n}", - "license": "terms-of-use", - "copyright": "DISA", - "copyright_email": "disa.stig_spt@mail.mil", - "supports": [], - "attributes": [], - "depends": [], - "groups": [], - "status": "loaded", - "controls": [ - { - "id": "V-230221", - "title": "RHEL 8 must be a vendor-supported release.", - "desc": "An operating system release is considered \"supported\" if the vendor continues to provide security patches for the product. With an unsupported release, it will not be possible to resolve security issues discovered in the system software.\n\nRed Hat offers the Extended Update Support (EUS) ad-on to a Red Hat Enterprise Linux subscription, for a fee, for those customers who wish to standardize on a specific minor release for an extended period. The RHEL 8 minor releases eligible for EUS are 8.1, 8.2, 8.4, 8.6, and 8.8. Each RHEL 8 EUS stream is available for 24 months from the availability of the minor release. RHEL 8.10 will be the final minor release overall. For more details on the Red Hat Enterprise Linux Life Cycle visit https://access.redhat.com/support/policy/updates/errata.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:100", - "label": "check" - }, - { - "data": "Upgrade to a supported version of RHEL 8.", - "label": "fix" - } - ], - "impact": 0.7, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "high", - "description": "{\"VulnDiscussion\":\"An operating system release is considered \\\"supported\\\" if the vendor continues to provide security patches for the product. With an unsupported release, it will not be possible to resolve security issues discovered in the system software.\\n\\nRed Hat offers the Extended Update Support (EUS) ad-on to a Red Hat Enterprise Linux subscription, for a fee, for those customers who wish to standardize on a specific minor release for an extended period. The RHEL 8 minor releases eligible for EUS are 8.1, 8.2, 8.4, 8.6, and 8.8. Each RHEL 8 EUS stream is available for 24 months from the availability of the minor release. RHEL 8.10 will be the final minor release overall. For more details on the Red Hat Enterprise Linux Life Cycle visit https://access.redhat.com/support/policy/updates/errata.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230221", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230221r743913_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:100", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32865r567410_fix", - "fixtext_fixref": "F-32865r567410_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-010000", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230221r743913_rule", - "role": "full", - "time": "2021-11-12T11:37:26-05:00", - "severity": "high", - "version": "RHEL-08-010000", - "weight": "10.000000", - "result": "pass", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:100", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:26-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230223", - "title": "RHEL 8 must implement NIST FIPS-validated cryptography for the following: to provision digital signatures, to generate cryptographic hashes, and to protect data requiring data-at-rest protections in accordance with applicable federal laws, Executive Orders, directives, policies, regulations, and standards.", - "desc": "Use of weak or untested encryption algorithms undermines the purposes of using encryption to protect data. The operating system must implement cryptographic modules adhering to the higher standards approved by the Federal Government since this provides assurance they have been tested and validated.\n\nRHEL 8 utilizes GRUB 2 as the default bootloader. Note that GRUB 2 command-line parameters are defined in the \"kernelopts\" variable of the /boot/grub2/grubenv file for all kernel boot entries. The command \"fips-mode-setup\" modifies the \"kernelopts\" variable, which in turn updates all kernel boot entries. \n\nThe fips=1 kernel option needs to be added to the kernel command line during system installation so that key generation is done with FIPS-approved algorithms and continuous monitoring tests in place. Users must also ensure the system has plenty of entropy during the installation process by moving the mouse around, or if no mouse is available, ensuring that many keystrokes are typed. The recommended amount of keystrokes is 256 and more. Less than 256 keystrokes may generate a non-unique key.\n\nSatisfies: SRG-OS-000033-GPOS-00014, SRG-OS-000125-GPOS-00065, SRG-OS-000396-GPOS-00176, SRG-OS-000423-GPOS-00187, SRG-OS-000478-GPOS-00223", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:101", - "label": "check" - }, - { - "data": "Configure the operating system to implement DoD-approved encryption by following the steps below:\n\nTo enable strict FIPS compliance, the fips=1 kernel option needs to be added to the kernel boot parameters during system installation so key generation is done with FIPS-approved algorithms and continuous monitoring tests in place.\n\nEnable FIPS mode after installation (not strict FIPS compliant) with the following command:\n\n$ sudo fips-mode-setup --enable\n\nReboot the system for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.7, - "refs": [], - "tags": { - "cci": [ - "CCI-000068" - ], - "nist": [ - "AC-17 (2)" - ], - "severity": "high", - "description": "{\"VulnDiscussion\":\"Use of weak or untested encryption algorithms undermines the purposes of using encryption to protect data. The operating system must implement cryptographic modules adhering to the higher standards approved by the Federal Government since this provides assurance they have been tested and validated.\\n\\nRHEL 8 utilizes GRUB 2 as the default bootloader. Note that GRUB 2 command-line parameters are defined in the \\\"kernelopts\\\" variable of the /boot/grub2/grubenv file for all kernel boot entries. The command \\\"fips-mode-setup\\\" modifies the \\\"kernelopts\\\" variable, which in turn updates all kernel boot entries. \\n\\nThe fips=1 kernel option needs to be added to the kernel command line during system installation so that key generation is done with FIPS-approved algorithms and continuous monitoring tests in place. Users must also ensure the system has plenty of entropy during the installation process by moving the mouse around, or if no mouse is available, ensuring that many keystrokes are typed. The recommended amount of keystrokes is 256 and more. Less than 256 keystrokes may generate a non-unique key.\\n\\nSatisfies: SRG-OS-000033-GPOS-00014, SRG-OS-000125-GPOS-00065, SRG-OS-000396-GPOS-00176, SRG-OS-000423-GPOS-00187, SRG-OS-000478-GPOS-00223\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230223", - "group_title": "SRG-OS-000033-GPOS-00014", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230223r792855_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:101", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32867r567416_fix", - "fixtext_fixref": "F-32867r567416_fix", - "ident": { - "text": "CCI-000068", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-010020", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230223r792855_rule", - "role": "full", - "time": "2021-11-12T11:37:26-05:00", - "severity": "high", - "version": "RHEL-08-010020", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000068", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:101", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:26-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230231", - "title": "RHEL 8 must encrypt all stored passwords with a FIPS 140-2 approved cryptographic hashing algorithm.", - "desc": "Passwords need to be protected at all times, and encryption is the standard method for protecting passwords. If passwords are not encrypted, they can be plainly read (i.e., clear text) and easily compromised.\n\nUnapproved mechanisms that are used for authentication to the cryptographic module are not verified and therefore cannot be relied upon to provide confidentiality or integrity, and DoD data may be compromised.\n\nFIPS 140-2 is the current standard for validating that mechanisms used to access cryptographic modules utilize authentication that meets DoD requirements.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:103", - "label": "check" - }, - { - "data": "Configure RHEL 8 to encrypt all stored passwords. \n\nEdit/Modify the following line in the \"/etc/login.defs\" file and set \"[ENCRYPT_METHOD]\" to SHA512.\n\nENCRYPT_METHOD SHA512", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000196" - ], - "nist": [ - "IA-5 (1) (c)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Passwords need to be protected at all times, and encryption is the standard method for protecting passwords. If passwords are not encrypted, they can be plainly read (i.e., clear text) and easily compromised.\\n\\nUnapproved mechanisms that are used for authentication to the cryptographic module are not verified and therefore cannot be relied upon to provide confidentiality or integrity, and DoD data may be compromised.\\n\\nFIPS 140-2 is the current standard for validating that mechanisms used to access cryptographic modules utilize authentication that meets DoD requirements.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230231", - "group_title": "SRG-OS-000073-GPOS-00041", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230231r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:103", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32875r567440_fix", - "fixtext_fixref": "F-32875r567440_fix", - "ident": { - "text": "CCI-000196", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-010110", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230231r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:26-05:00", - "severity": "medium", - "version": "RHEL-08-010110", - "weight": "10.000000", - "result": "pass", - "ident": { - "text": "CCI-000196", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:103", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:26-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230232", - "title": "RHEL 8 must employ FIPS 140-2 approved cryptographic hashing algorithms for all stored passwords.", - "desc": "The system must use a strong hashing algorithm to store the password.\n\nPasswords need to be protected at all times, and encryption is the standard method for protecting passwords. If passwords are not encrypted, they can be plainly read (i.e., clear text) and easily compromised.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:104", - "label": "check" - }, - { - "data": "Lock all interactive user accounts not using SHA-512 hashing until the passwords can be regenerated with SHA-512.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000196" - ], - "nist": [ - "IA-5 (1) (c)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"The system must use a strong hashing algorithm to store the password.\\n\\nPasswords need to be protected at all times, and encryption is the standard method for protecting passwords. If passwords are not encrypted, they can be plainly read (i.e., clear text) and easily compromised.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230232", - "group_title": "SRG-OS-000073-GPOS-00041", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230232r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:104", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32876r567443_fix", - "fixtext_fixref": "F-32876r567443_fix", - "ident": { - "text": "CCI-000196", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-010120", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230232r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:26-05:00", - "severity": "medium", - "version": "RHEL-08-010120", - "weight": "10.000000", - "result": "error", - "ident": { - "text": "CCI-000196", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:104", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:26-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230233", - "title": "The RHEL 8 password-auth file must be configured to use a sufficient number of hashing rounds.", - "desc": "The system must use a strong hashing algorithm to store the password. The system must use a sufficient number of hashing rounds to ensure the required level of entropy.\n\nPasswords need to be protected at all times, and encryption is the standard method for protecting passwords. If passwords are not encrypted, they can be plainly read (i.e., clear text) and easily compromised.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:105", - "label": "check" - }, - { - "data": "Configure RHEL 8 to encrypt all stored passwords with a strong cryptographic hash.\n\nEdit/modify the following line in the \"/etc/pam.d/password-auth\" file and set \"rounds\" to a value no lower than \"5000\":\n\npassword sufficient pam_unix.so sha512 rounds=5000", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000196" - ], - "nist": [ - "IA-5 (1) (c)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"The system must use a strong hashing algorithm to store the password. The system must use a sufficient number of hashing rounds to ensure the required level of entropy.\\n\\nPasswords need to be protected at all times, and encryption is the standard method for protecting passwords. If passwords are not encrypted, they can be plainly read (i.e., clear text) and easily compromised.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230233", - "group_title": "SRG-OS-000073-GPOS-00041", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230233r743919_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:105", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32877r743918_fix", - "fixtext_fixref": "F-32877r743918_fix", - "ident": { - "text": "CCI-000196", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-010130", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230233r743919_rule", - "role": "full", - "time": "2021-11-12T11:37:26-05:00", - "severity": "medium", - "version": "RHEL-08-010130", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000196", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:105", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:26-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230234", - "title": "RHEL 8 operating systems booted with United Extensible Firmware Interface (UEFI) must require authentication upon booting into single-user mode and maintenance.", - "desc": "If the system does not require valid authentication before it boots into single-user or maintenance mode, anyone who invokes single-user or maintenance mode is granted privileged access to all files on the system. GRUB 2 is the default boot loader for RHEL 8 and is designed to require a password to boot into single-user mode or make modifications to the boot menu.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:106", - "label": "check" - }, - { - "data": "Configure the system to require a grub bootloader password for the grub superusers account with the grub2-setpassword command, which creates/overwrites the /boot/efi/EFI/redhat/user.cfg file.\n\nGenerate an encrypted grub2 password for the grub superusers account with the following command:\n\n$ sudo grub2-setpassword\nEnter password:\nConfirm password:", - "label": "fix" - } - ], - "impact": 0.7, - "refs": [], - "tags": { - "cci": [ - "CCI-000213" - ], - "nist": [ - "AC-3" - ], - "severity": "high", - "description": "{\"VulnDiscussion\":\"If the system does not require valid authentication before it boots into single-user or maintenance mode, anyone who invokes single-user or maintenance mode is granted privileged access to all files on the system. GRUB 2 is the default boot loader for RHEL 8 and is designed to require a password to boot into single-user mode or make modifications to the boot menu.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230234", - "group_title": "SRG-OS-000080-GPOS-00048", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230234r743922_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:106", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32878r743921_fix", - "fixtext_fixref": "F-32878r743921_fix", - "ident": { - "text": "CCI-000213", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-010140", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230234r743922_rule", - "role": "full", - "time": "2021-11-12T11:37:26-05:00", - "severity": "high", - "version": "RHEL-08-010140", - "weight": "10.000000", - "result": "pass", - "ident": { - "text": "CCI-000213", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:106", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:26-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230235", - "title": "RHEL 8 operating systems booted with a BIOS must require authentication upon booting into single-user and maintenance modes.", - "desc": "If the system does not require valid authentication before it boots into single-user or maintenance mode, anyone who invokes single-user or maintenance mode is granted privileged access to all files on the system. GRUB 2 is the default boot loader for RHEL 8 and is designed to require a password to boot into single-user mode or make modifications to the boot menu.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:107", - "label": "check" - }, - { - "data": "Configure the system to require a grub bootloader password for the grub superusers account with the grub2-setpassword command, which creates/overwrites the /boot/grub2/user.cfg file.\n\nGenerate an encrypted grub2 password for the grub superusers account with the following command:\n\n$ sudo grub2-setpassword\nEnter password:\nConfirm password:", - "label": "fix" - } - ], - "impact": 0.7, - "refs": [], - "tags": { - "cci": [ - "CCI-000213" - ], - "nist": [ - "AC-3" - ], - "severity": "high", - "description": "{\"VulnDiscussion\":\"If the system does not require valid authentication before it boots into single-user or maintenance mode, anyone who invokes single-user or maintenance mode is granted privileged access to all files on the system. GRUB 2 is the default boot loader for RHEL 8 and is designed to require a password to boot into single-user mode or make modifications to the boot menu.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230235", - "group_title": "SRG-OS-000080-GPOS-00048", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230235r743925_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:107", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32879r743924_fix", - "fixtext_fixref": "F-32879r743924_fix", - "ident": { - "text": "CCI-000213", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-010150", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230235r743925_rule", - "role": "full", - "time": "2021-11-12T11:37:26-05:00", - "severity": "high", - "version": "RHEL-08-010150", - "weight": "10.000000", - "result": "pass", - "ident": { - "text": "CCI-000213", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:107", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:26-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230236", - "title": "RHEL 8 operating systems must require authentication upon booting into rescue mode.", - "desc": "If the system does not require valid root authentication before it boots into emergency or rescue mode, anyone who invokes emergency or rescue mode is granted privileged access to all files on the system.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:108", - "label": "check" - }, - { - "data": "Configure the system to require authentication upon booting into rescue mode by adding the following line to the \"/usr/lib/systemd/system/rescue.service\" file.\n\nExecStart=-/usr/lib/systemd/systemd-sulogin-shell rescue", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000213" - ], - "nist": [ - "AC-3" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"If the system does not require valid root authentication before it boots into emergency or rescue mode, anyone who invokes emergency or rescue mode is granted privileged access to all files on the system.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230236", - "group_title": "SRG-OS-000080-GPOS-00048", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230236r743928_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:108", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32880r743927_fix", - "fixtext_fixref": "F-32880r743927_fix", - "ident": { - "text": "CCI-000213", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-010151", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230236r743928_rule", - "role": "full", - "time": "2021-11-12T11:37:26-05:00", - "severity": "medium", - "version": "RHEL-08-010151", - "weight": "10.000000", - "result": "pass", - "ident": { - "text": "CCI-000213", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:108", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:26-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230237", - "title": "The RHEL 8 pam_unix.so module must be configured in the password-auth file to use a FIPS 140-2 approved cryptographic hashing algorithm for system authentication.", - "desc": "Unapproved mechanisms that are used for authentication to the cryptographic module are not verified and therefore cannot be relied upon to provide confidentiality or integrity, and DoD data may be compromised.\n\nRHEL 8 systems utilizing encryption are required to use FIPS-compliant mechanisms for authenticating to cryptographic modules. \n\nFIPS 140-2 is the current standard for validating that mechanisms used to access cryptographic modules utilize authentication that meets DoD requirements. This allows for Security Levels 1, 2, 3, or 4 for use on a general-purpose computing system.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:109", - "label": "check" - }, - { - "data": "Configure RHEL 8 to use a FIPS 140-2 approved cryptographic hashing algorithm for system authentication.\n\nEdit/modify the following line in the \"/etc/pam.d/password-auth\" file to include the sha512 option for pam_unix.so:\n\npassword sufficient pam_unix.so sha512 rounds=5000", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000803" - ], - "nist": [ - "IA-7" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Unapproved mechanisms that are used for authentication to the cryptographic module are not verified and therefore cannot be relied upon to provide confidentiality or integrity, and DoD data may be compromised.\\n\\nRHEL 8 systems utilizing encryption are required to use FIPS-compliant mechanisms for authenticating to cryptographic modules. \\n\\nFIPS 140-2 is the current standard for validating that mechanisms used to access cryptographic modules utilize authentication that meets DoD requirements. This allows for Security Levels 1, 2, 3, or 4 for use on a general-purpose computing system.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230237", - "group_title": "SRG-OS-000120-GPOS-00061", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230237r743931_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:109", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32881r743930_fix", - "fixtext_fixref": "F-32881r743930_fix", - "ident": { - "text": "CCI-000803", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-010160", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230237r743931_rule", - "role": "full", - "time": "2021-11-12T11:37:26-05:00", - "severity": "medium", - "version": "RHEL-08-010160", - "weight": "10.000000", - "result": "pass", - "ident": { - "text": "CCI-000803", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:109", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:26-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230238", - "title": "RHEL 8 must prevent system daemons from using Kerberos for authentication.", - "desc": "Unapproved mechanisms that are used for authentication to the cryptographic module are not verified and therefore cannot be relied upon to provide confidentiality or integrity, and DoD data may be compromised.\n\nRHEL 8 systems utilizing encryption are required to use FIPS-compliant mechanisms for authenticating to cryptographic modules.\n\nThe key derivation function (KDF) in Kerberos is not FIPS compatible. Ensuring the system does not have any keytab files present prevents system daemons from using Kerberos for authentication. A keytab is a file containing pairs of Kerberos principals and encrypted keys.\n\nFIPS 140-2 is the current standard for validating that mechanisms used to access cryptographic modules utilize authentication that meets DoD requirements. This allows for Security Levels 1, 2, 3, or 4 for use on a general-purpose computing system.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:110", - "label": "check" - }, - { - "data": "Configure RHEL 8 to prevent system daemons from using Kerberos for authentication.\n\nRemove any files with the .keytab extension from the operating system.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000803" - ], - "nist": [ - "IA-7" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Unapproved mechanisms that are used for authentication to the cryptographic module are not verified and therefore cannot be relied upon to provide confidentiality or integrity, and DoD data may be compromised.\\n\\nRHEL 8 systems utilizing encryption are required to use FIPS-compliant mechanisms for authenticating to cryptographic modules.\\n\\nThe key derivation function (KDF) in Kerberos is not FIPS compatible. Ensuring the system does not have any keytab files present prevents system daemons from using Kerberos for authentication. A keytab is a file containing pairs of Kerberos principals and encrypted keys.\\n\\nFIPS 140-2 is the current standard for validating that mechanisms used to access cryptographic modules utilize authentication that meets DoD requirements. This allows for Security Levels 1, 2, 3, or 4 for use on a general-purpose computing system.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230238", - "group_title": "SRG-OS-000120-GPOS-00061", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230238r646862_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:110", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32882r567461_fix", - "fixtext_fixref": "F-32882r567461_fix", - "ident": { - "text": "CCI-000803", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-010161", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230238r646862_rule", - "role": "full", - "time": "2021-11-12T11:37:26-05:00", - "severity": "medium", - "version": "RHEL-08-010161", - "weight": "10.000000", - "result": "pass", - "ident": { - "text": "CCI-000803", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:110", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:26-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230239", - "title": "The krb5-workstation package must not be installed on RHEL 8.", - "desc": "Unapproved mechanisms that are used for authentication to the cryptographic module are not verified and therefore cannot be relied upon to provide confidentiality or integrity, and DoD data may be compromised.\n\nRHEL 8 systems utilizing encryption are required to use FIPS-compliant mechanisms for authenticating to cryptographic modules.\n\nCurrently, Kerberos does not utilize FIPS 140-2 cryptography.\n\nFIPS 140-2 is the current standard for validating that mechanisms used to access cryptographic modules utilize authentication that meets DoD requirements. This allows for Security Levels 1, 2, 3, or 4 for use on a general-purpose computing system.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:111", - "label": "check" - }, - { - "data": "Document the krb5-workstation package with the ISSO as an operational requirement or remove it from the system with the following command:\n\n$ sudo yum remove krb5-workstation", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000803" - ], - "nist": [ - "IA-7" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Unapproved mechanisms that are used for authentication to the cryptographic module are not verified and therefore cannot be relied upon to provide confidentiality or integrity, and DoD data may be compromised.\\n\\nRHEL 8 systems utilizing encryption are required to use FIPS-compliant mechanisms for authenticating to cryptographic modules.\\n\\nCurrently, Kerberos does not utilize FIPS 140-2 cryptography.\\n\\nFIPS 140-2 is the current standard for validating that mechanisms used to access cryptographic modules utilize authentication that meets DoD requirements. This allows for Security Levels 1, 2, 3, or 4 for use on a general-purpose computing system.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230239", - "group_title": "SRG-OS-000120-GPOS-00061", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230239r646864_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:111", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32883r567464_fix", - "fixtext_fixref": "F-32883r567464_fix", - "ident": { - "text": "CCI-000803", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-010162", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230239r646864_rule", - "role": "full", - "time": "2021-11-12T11:37:26-05:00", - "severity": "medium", - "version": "RHEL-08-010162", - "weight": "10.000000", - "result": "pass", - "ident": { - "text": "CCI-000803", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:111", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:26-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230241", - "title": "RHEL 8 must have policycoreutils package installed.", - "desc": "Without verification of the security functions, security functions may not operate correctly and the failure may go unnoticed. Security function is defined as the hardware, software, and/or firmware of the information system responsible for enforcing the system security policy and supporting the isolation of code and data on which the protection is based. Security functionality includes, but is not limited to, establishing system accounts, configuring access authorizations (i.e., permissions, privileges), setting events to be audited, and setting intrusion detection parameters.\n\nPolicycoreutils contains the policy core utilities that are required for basic operation of an SELinux-enabled system. These utilities include load_policy to load SELinux policies, setfile to label filesystems, newrole to switch roles, and run_init to run /etc/init.d scripts in the proper context.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:112", - "label": "check" - }, - { - "data": "Configure the operating system to have the policycoreutils package installed with the following command:\n\n$ sudo yum install policycoreutils", - "label": "fix" - } - ], - "impact": 0.3, - "refs": [], - "tags": { - "cci": [ - "CCI-001084" - ], - "nist": [ - "SC-3" - ], - "severity": "low", - "description": "{\"VulnDiscussion\":\"Without verification of the security functions, security functions may not operate correctly and the failure may go unnoticed. Security function is defined as the hardware, software, and/or firmware of the information system responsible for enforcing the system security policy and supporting the isolation of code and data on which the protection is based. Security functionality includes, but is not limited to, establishing system accounts, configuring access authorizations (i.e., permissions, privileges), setting events to be audited, and setting intrusion detection parameters.\\n\\nPolicycoreutils contains the policy core utilities that are required for basic operation of an SELinux-enabled system. These utilities include load_policy to load SELinux policies, setfile to label filesystems, newrole to switch roles, and run_init to run /etc/init.d scripts in the proper context.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230241", - "group_title": "SRG-OS-000134-GPOS-00068", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230241r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:112", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32885r567470_fix", - "fixtext_fixref": "F-32885r567470_fix", - "ident": { - "text": "CCI-001084", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-010171", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230241r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:26-05:00", - "severity": "low", - "version": "RHEL-08-010171", - "weight": "10.000000", - "result": "pass", - "ident": { - "text": "CCI-001084", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:112", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:26-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230244", - "title": "RHEL 8 must be configured so that all network connections associated with SSH traffic are terminated at the end of the session or after 10 minutes of inactivity, except to fulfill documented and validated mission requirements.", - "desc": "Terminating an idle SSH session within a short time period reduces the window of opportunity for unauthorized personnel to take control of a management session enabled on the console or console port that has been left unattended. In addition, quickly terminating an idle SSH session will also free up resources committed by the managed network element.\n\nTerminating network connections associated with communications sessions includes, for example, de-allocating associated TCP/IP address/port pairs at the operating system level and de-allocating networking assignments at the application level if multiple application sessions are using a single operating system-level network connection. This does not mean that the operating system terminates all sessions or network access; it only ends the inactive session and releases the resources associated with that session.\n\nRHEL 8 utilizes /etc/ssh/sshd_config for configurations of OpenSSH. Within the sshd_config the product of the values of \"ClientAliveInterval\" and \"ClientAliveCountMax\" are used to establish the inactivity threshold. The \"ClientAliveInterval\" is a timeout interval in seconds after which if no data has been received from the client, sshd will send a message through the encrypted channel to request a response from the client. The \"ClientAliveCountMax\" is the number of client alive messages that may be sent without sshd receiving any messages back from the client. If this threshold is met, sshd will disconnect the client. For more information on these settings and others, refer to the sshd_config man pages.\n\nSatisfies: SRG-OS-000163-GPOS-00072, SRG-OS-000126-GPOS-00066, SRG-OS-000279-GPOS-00109", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:115", - "label": "check" - }, - { - "data": "Configure RHEL 8 to automatically terminate all network connections associated with SSH traffic at the end of a session or after 10 minutes of inactivity.\n\nModify or append the following lines in the \"/etc/ssh/sshd_config\" file:\n\nClientAliveCountMax 0\n\nIn order for the changes to take effect, the SSH daemon must be restarted.\n\n$ sudo systemctl restart sshd.service", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001133" - ], - "nist": [ - "SC-10" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Terminating an idle SSH session within a short time period reduces the window of opportunity for unauthorized personnel to take control of a management session enabled on the console or console port that has been left unattended. In addition, quickly terminating an idle SSH session will also free up resources committed by the managed network element.\\n\\nTerminating network connections associated with communications sessions includes, for example, de-allocating associated TCP/IP address/port pairs at the operating system level and de-allocating networking assignments at the application level if multiple application sessions are using a single operating system-level network connection. This does not mean that the operating system terminates all sessions or network access; it only ends the inactive session and releases the resources associated with that session.\\n\\nRHEL 8 utilizes /etc/ssh/sshd_config for configurations of OpenSSH. Within the sshd_config the product of the values of \\\"ClientAliveInterval\\\" and \\\"ClientAliveCountMax\\\" are used to establish the inactivity threshold. The \\\"ClientAliveInterval\\\" is a timeout interval in seconds after which if no data has been received from the client, sshd will send a message through the encrypted channel to request a response from the client. The \\\"ClientAliveCountMax\\\" is the number of client alive messages that may be sent without sshd receiving any messages back from the client. If this threshold is met, sshd will disconnect the client. For more information on these settings and others, refer to the sshd_config man pages.\\n\\nSatisfies: SRG-OS-000163-GPOS-00072, SRG-OS-000126-GPOS-00066, SRG-OS-000279-GPOS-00109\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230244", - "group_title": "SRG-OS-000163-GPOS-00072", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230244r743934_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:115", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32888r743933_fix", - "fixtext_fixref": "F-32888r743933_fix", - "ident": { - "text": "CCI-001133", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-010200", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230244r743934_rule", - "role": "full", - "time": "2021-11-12T11:37:26-05:00", - "severity": "medium", - "version": "RHEL-08-010200", - "weight": "10.000000", - "result": "error", - "ident": { - "text": "CCI-001133", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:115", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:26-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230245", - "title": "The RHEL 8 /var/log/messages file must have mode 0640 or less permissive.", - "desc": "Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\n\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:116", - "label": "check" - }, - { - "data": "Change the permissions of the file \"/var/log/messages\" to \"0640\" by running the following command:\n\n$ sudo chmod 0640 /var/log/messages", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001314" - ], - "nist": [ - "SI-11 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\\n\\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230245", - "group_title": "SRG-OS-000206-GPOS-00084", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230245r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:116", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32889r567482_fix", - "fixtext_fixref": "F-32889r567482_fix", - "ident": { - "text": "CCI-001314", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-010210", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230245r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:26-05:00", - "severity": "medium", - "version": "RHEL-08-010210", - "weight": "10.000000", - "result": "pass", - "ident": { - "text": "CCI-001314", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:116", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:26-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230246", - "title": "The RHEL 8 /var/log/messages file must be owned by root.", - "desc": "Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\n\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:117", - "label": "check" - }, - { - "data": "Change the owner of the file /var/log/messages to root by running the following command:\n\n$ sudo chown root /var/log/messages", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001314" - ], - "nist": [ - "SI-11 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\\n\\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230246", - "group_title": "SRG-OS-000206-GPOS-00084", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230246r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:117", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32890r567485_fix", - "fixtext_fixref": "F-32890r567485_fix", - "ident": { - "text": "CCI-001314", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-010220", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230246r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:26-05:00", - "severity": "medium", - "version": "RHEL-08-010220", - "weight": "10.000000", - "result": "pass", - "ident": { - "text": "CCI-001314", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:117", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:26-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230247", - "title": "The RHEL 8 /var/log/messages file must be group-owned by root.", - "desc": "Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\n\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:118", - "label": "check" - }, - { - "data": "Change the group of the file \"/var/log/messages\" to \"root\" by running the following command:\n\n$ sudo chgrp root /var/log/messages", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001314" - ], - "nist": [ - "SI-11 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\\n\\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230247", - "group_title": "SRG-OS-000206-GPOS-00084", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230247r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:118", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32891r567488_fix", - "fixtext_fixref": "F-32891r567488_fix", - "ident": { - "text": "CCI-001314", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-010230", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230247r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:26-05:00", - "severity": "medium", - "version": "RHEL-08-010230", - "weight": "10.000000", - "result": "pass", - "ident": { - "text": "CCI-001314", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:118", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:26-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230248", - "title": "The RHEL 8 /var/log directory must have mode 0755 or less permissive.", - "desc": "Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\n\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:119", - "label": "check" - }, - { - "data": "Change the permissions of the directory \"/var/log\" to \"0755\" by running the following command:\n\n$ sudo chmod 0755 /var/log", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001314" - ], - "nist": [ - "SI-11 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\\n\\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230248", - "group_title": "SRG-OS-000206-GPOS-00084", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230248r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:119", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32892r567491_fix", - "fixtext_fixref": "F-32892r567491_fix", - "ident": { - "text": "CCI-001314", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-010240", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230248r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:26-05:00", - "severity": "medium", - "version": "RHEL-08-010240", - "weight": "10.000000", - "result": "pass", - "ident": { - "text": "CCI-001314", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:119", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:26-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230249", - "title": "The RHEL 8 /var/log directory must be owned by root.", - "desc": "Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\n\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:120", - "label": "check" - }, - { - "data": "Change the owner of the directory /var/log to root by running the following command:\n\n$ sudo chown root /var/log", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001314" - ], - "nist": [ - "SI-11 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\\n\\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230249", - "group_title": "SRG-OS-000206-GPOS-00084", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230249r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:120", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32893r567494_fix", - "fixtext_fixref": "F-32893r567494_fix", - "ident": { - "text": "CCI-001314", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-010250", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230249r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:26-05:00", - "severity": "medium", - "version": "RHEL-08-010250", - "weight": "10.000000", - "result": "pass", - "ident": { - "text": "CCI-001314", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:120", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:26-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230250", - "title": "The RHEL 8 /var/log directory must be group-owned by root.", - "desc": "Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\n\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:121", - "label": "check" - }, - { - "data": "Change the group of the directory \"/var/log\" to \"root\" by running the following command:\n\n$ sudo chgrp root /var/log", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001314" - ], - "nist": [ - "SI-11 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\\n\\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230250", - "group_title": "SRG-OS-000206-GPOS-00084", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230250r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:121", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32894r567497_fix", - "fixtext_fixref": "F-32894r567497_fix", - "ident": { - "text": "CCI-001314", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-010260", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230250r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:26-05:00", - "severity": "medium", - "version": "RHEL-08-010260", - "weight": "10.000000", - "result": "pass", - "ident": { - "text": "CCI-001314", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:121", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:26-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230253", - "title": "RHEL 8 must ensure the SSH server uses strong entropy.", - "desc": "The most important characteristic of a random number generator is its randomness, namely its ability to deliver random numbers that are impossible to predict. Entropy in computer security is associated with the unpredictability of a source of randomness. The random source with high entropy tends to achieve a uniform distribution of random values. Random number generators are one of the most important building blocks of cryptosystems.\n\nThe SSH implementation in RHEL8 uses the OPENSSL library, which does not use high-entropy sources by default. By using the SSH_USE_STRONG_RNG environment variable the OPENSSL random generator is reseeded from /dev/random. This setting is not recommended on computers without the hardware random generator because insufficient entropy causes the connection to be blocked until enough entropy is available.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:122", - "label": "check" - }, - { - "data": "Configure the operating system SSH server to use strong entropy.\n\nAdd or modify the following line in the \"/etc/sysconfig/sshd\" file.\n\nSSH_USE_STRONG_RNG=32\n\nThe SSH service must be restarted for changes to take effect.", - "label": "fix" - } - ], - "impact": 0.3, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "low", - "description": "{\"VulnDiscussion\":\"The most important characteristic of a random number generator is its randomness, namely its ability to deliver random numbers that are impossible to predict. Entropy in computer security is associated with the unpredictability of a source of randomness. The random source with high entropy tends to achieve a uniform distribution of random values. Random number generators are one of the most important building blocks of cryptosystems.\\n\\nThe SSH implementation in RHEL8 uses the OPENSSL library, which does not use high-entropy sources by default. By using the SSH_USE_STRONG_RNG environment variable the OPENSSL random generator is reseeded from /dev/random. This setting is not recommended on computers without the hardware random generator because insufficient entropy causes the connection to be blocked until enough entropy is available.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230253", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230253r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:122", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32897r567506_fix", - "fixtext_fixref": "F-32897r567506_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-010292", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230253r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:26-05:00", - "severity": "low", - "version": "RHEL-08-010292", - "weight": "10.000000", - "result": "error", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:122", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:26-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230255", - "title": "The RHEL 8 operating system must implement DoD-approved TLS encryption in the OpenSSL package.", - "desc": "Without cryptographic integrity protections, information can be altered by unauthorized users without detection.\n\nRemote access (e.g., RDP) is access to DoD nonpublic information systems by an authorized user (or an information system) communicating through an external, non-organization-controlled network. Remote access methods include, for example, dial-up, broadband, and wireless.\n\nCryptographic mechanisms used for protecting the integrity of information include, for example, signed hash functions using asymmetric cryptography enabling distribution of the public key to verify the hash information while maintaining the confidentiality of the secret key used to generate the hash.\n\nRHEL 8 incorporates system-wide crypto policies by default. The employed algorithms can be viewed in the /etc/crypto-policies/back-ends/openssl.config file.\n\nSatisfies: SRG-OS-000250-GPOS-00093, SRG-OS-000393-GPOS-00173, SRG-OS-000394-GPOS-00174, SRG-OS-000125-GPOS-00065", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:123", - "label": "check" - }, - { - "data": "Configure the RHEL 8 OpenSSL library to use only DoD-approved TLS encryption by editing the following line in the \"/etc/crypto-policies/back-ends/opensslcnf.config\" file:\n\nMinProtocol = TLSv1.2\n\nA reboot is required for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001453" - ], - "nist": [ - "AC-17 (2)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without cryptographic integrity protections, information can be altered by unauthorized users without detection.\\n\\nRemote access (e.g., RDP) is access to DoD nonpublic information systems by an authorized user (or an information system) communicating through an external, non-organization-controlled network. Remote access methods include, for example, dial-up, broadband, and wireless.\\n\\nCryptographic mechanisms used for protecting the integrity of information include, for example, signed hash functions using asymmetric cryptography enabling distribution of the public key to verify the hash information while maintaining the confidentiality of the secret key used to generate the hash.\\n\\nRHEL 8 incorporates system-wide crypto policies by default. The employed algorithms can be viewed in the /etc/crypto-policies/back-ends/openssl.config file.\\n\\nSatisfies: SRG-OS-000250-GPOS-00093, SRG-OS-000393-GPOS-00173, SRG-OS-000394-GPOS-00174, SRG-OS-000125-GPOS-00065\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230255", - "group_title": "SRG-OS-000250-GPOS-00093", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230255r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:123", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32899r567512_fix", - "fixtext_fixref": "F-32899r567512_fix", - "ident": { - "text": "CCI-001453", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-010294", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230255r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:26-05:00", - "severity": "medium", - "version": "RHEL-08-010294", - "weight": "10.000000", - "result": "pass", - "ident": { - "text": "CCI-001453", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:123", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:26-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230257", - "title": "RHEL 8 system commands must have mode 755 or less permissive.", - "desc": "If RHEL 8 were to allow any user to make changes to software libraries, then those changes might be implemented without undergoing the appropriate testing and approvals that are part of a robust change management process.\n\nThis requirement applies to RHEL 8 with software libraries that are accessible and configurable, as in the case of interpreted languages. Software libraries also include privileged programs that execute with escalated privileges. Only qualified and authorized individuals will be allowed to obtain access to information system components for purposes of initiating changes, including upgrades and modifications.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:124", - "label": "check" - }, - { - "data": "Configure the system commands to be protected from unauthorized access.\n\nRun the following command, replacing \"[FILE]\" with any system command with a mode more permissive than \"755\".\n\n$ sudo chmod 755 [FILE]", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001499" - ], - "nist": [ - "CM-5 (6)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"If RHEL 8 were to allow any user to make changes to software libraries, then those changes might be implemented without undergoing the appropriate testing and approvals that are part of a robust change management process.\\n\\nThis requirement applies to RHEL 8 with software libraries that are accessible and configurable, as in the case of interpreted languages. Software libraries also include privileged programs that execute with escalated privileges. Only qualified and authorized individuals will be allowed to obtain access to information system components for purposes of initiating changes, including upgrades and modifications.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230257", - "group_title": "SRG-OS-000259-GPOS-00100", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230257r792862_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:124", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32901r792861_fix", - "fixtext_fixref": "F-32901r792861_fix", - "ident": { - "text": "CCI-001499", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-010300", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230257r792862_rule", - "role": "full", - "time": "2021-11-12T11:37:26-05:00", - "severity": "medium", - "version": "RHEL-08-010300", - "weight": "10.000000", - "result": "pass", - "ident": { - "text": "CCI-001499", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:124", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:26-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230258", - "title": "RHEL 8 system commands must be owned by root.", - "desc": "If RHEL 8 were to allow any user to make changes to software libraries, then those changes might be implemented without undergoing the appropriate testing and approvals that are part of a robust change management process.\n\nThis requirement applies to RHEL 8 with software libraries that are accessible and configurable, as in the case of interpreted languages. Software libraries also include privileged programs that execute with escalated privileges. Only qualified and authorized individuals will be allowed to obtain access to information system components for purposes of initiating changes, including upgrades and modifications.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:125", - "label": "check" - }, - { - "data": "Configure the system commands to be protected from unauthorized access.\n\nRun the following command, replacing \"[FILE]\" with any system command file not owned by \"root\".\n\n$ sudo chown root [FILE]", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001499" - ], - "nist": [ - "CM-5 (6)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"If RHEL 8 were to allow any user to make changes to software libraries, then those changes might be implemented without undergoing the appropriate testing and approvals that are part of a robust change management process.\\n\\nThis requirement applies to RHEL 8 with software libraries that are accessible and configurable, as in the case of interpreted languages. Software libraries also include privileged programs that execute with escalated privileges. Only qualified and authorized individuals will be allowed to obtain access to information system components for purposes of initiating changes, including upgrades and modifications.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230258", - "group_title": "SRG-OS-000259-GPOS-00100", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230258r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:125", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32902r567521_fix", - "fixtext_fixref": "F-32902r567521_fix", - "ident": { - "text": "CCI-001499", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-010310", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230258r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:26-05:00", - "severity": "medium", - "version": "RHEL-08-010310", - "weight": "10.000000", - "result": "pass", - "ident": { - "text": "CCI-001499", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:125", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:26-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230259", - "title": "RHEL 8 system commands must be group-owned by root or a system account.", - "desc": "If RHEL 8 were to allow any user to make changes to software libraries, then those changes might be implemented without undergoing the appropriate testing and approvals that are part of a robust change management process.\n\nThis requirement applies to RHEL 8 with software libraries that are accessible and configurable, as in the case of interpreted languages. Software libraries also include privileged programs that execute with escalated privileges. Only qualified and authorized individuals will be allowed to obtain access to information system components for purposes of initiating changes, including upgrades and modifications.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:126", - "label": "check" - }, - { - "data": "Configure the system commands to be protected from unauthorized access.\n\nRun the following command, replacing \"[FILE]\" with any system command file not group-owned by \"root\" or a required system account.\n\n$ sudo chgrp root [FILE]", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001499" - ], - "nist": [ - "CM-5 (6)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"If RHEL 8 were to allow any user to make changes to software libraries, then those changes might be implemented without undergoing the appropriate testing and approvals that are part of a robust change management process.\\n\\nThis requirement applies to RHEL 8 with software libraries that are accessible and configurable, as in the case of interpreted languages. Software libraries also include privileged programs that execute with escalated privileges. Only qualified and authorized individuals will be allowed to obtain access to information system components for purposes of initiating changes, including upgrades and modifications.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230259", - "group_title": "SRG-OS-000259-GPOS-00100", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230259r792864_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:126", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32903r567524_fix", - "fixtext_fixref": "F-32903r567524_fix", - "ident": { - "text": "CCI-001499", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-010320", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230259r792864_rule", - "role": "full", - "time": "2021-11-12T11:37:26-05:00", - "severity": "medium", - "version": "RHEL-08-010320", - "weight": "10.000000", - "result": "pass", - "ident": { - "text": "CCI-001499", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:126", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:26-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230264", - "title": "RHEL 8 must prevent the installation of software, patches, service packs, device drivers, or operating system components from a repository without verification they have been digitally signed using a certificate that is issued by a Certificate Authority (CA) that is recognized and approved by the organization.", - "desc": "Changes to any software components can have significant effects on the overall security of the operating system. This requirement ensures the software has not been tampered with and that it has been provided by a trusted vendor.\n\nAccordingly, patches, service packs, device drivers, or operating system components must be signed with a certificate recognized and approved by the organization.\n\nVerifying the authenticity of the software prior to installation validates the integrity of the patch or upgrade received from a vendor. This verifies the software has not been tampered with and that it has been provided by a trusted vendor. Self-signed certificates are disallowed by this requirement. The operating system should not have to verify the software again. This requirement does not mandate DoD certificates for this purpose; however, the certificate used to verify the software must be from an approved CA.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:130", - "label": "check" - }, - { - "data": "Configure the operating system to verify the signature of packages from a repository prior to install by setting the following option in the \"/etc/yum.repos.d/[your_repo_name].repo\" file:\n\ngpgcheck=1", - "label": "fix" - } - ], - "impact": 0.7, - "refs": [], - "tags": { - "cci": [ - "CCI-001749" - ], - "nist": [ - "CM-5 (3)" - ], - "severity": "high", - "description": "{\"VulnDiscussion\":\"Changes to any software components can have significant effects on the overall security of the operating system. This requirement ensures the software has not been tampered with and that it has been provided by a trusted vendor.\\n\\nAccordingly, patches, service packs, device drivers, or operating system components must be signed with a certificate recognized and approved by the organization.\\n\\nVerifying the authenticity of the software prior to installation validates the integrity of the patch or upgrade received from a vendor. This verifies the software has not been tampered with and that it has been provided by a trusted vendor. Self-signed certificates are disallowed by this requirement. The operating system should not have to verify the software again. This requirement does not mandate DoD certificates for this purpose; however, the certificate used to verify the software must be from an approved CA.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230264", - "group_title": "SRG-OS-000366-GPOS-00153", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230264r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:130", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32908r567539_fix", - "fixtext_fixref": "F-32908r567539_fix", - "ident": { - "text": "CCI-001749", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-010370", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230264r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:26-05:00", - "severity": "high", - "version": "RHEL-08-010370", - "weight": "10.000000", - "result": "pass", - "ident": { - "text": "CCI-001749", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:130", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:26-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230265", - "title": "RHEL 8 must prevent the installation of software, patches, service packs, device drivers, or operating system components of local packages without verification they have been digitally signed using a certificate that is issued by a Certificate Authority (CA) that is recognized and approved by the organization.", - "desc": "Changes to any software components can have significant effects on the overall security of the operating system. This requirement ensures the software has not been tampered with and that it has been provided by a trusted vendor.\n\nAccordingly, patches, service packs, device drivers, or operating system components must be signed with a certificate recognized and approved by the organization.\n\nVerifying the authenticity of the software prior to installation validates the integrity of the patch or upgrade received from a vendor. This verifies the software has not been tampered with and that it has been provided by a trusted vendor. Self-signed certificates are disallowed by this requirement. The operating system should not have to verify the software again. This requirement does not mandate DoD certificates for this purpose; however, the certificate used to verify the software must be from an approved CA.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:131", - "label": "check" - }, - { - "data": "Configure the operating system to remove all software components after updated versions have been installed.\n\nSet the \"localpkg_gpgcheck\" option to \"True\" in the \"/etc/dnf/dnf.conf\" file:\n\nlocalpkg_gpgcheck=True", - "label": "fix" - } - ], - "impact": 0.7, - "refs": [], - "tags": { - "cci": [ - "CCI-001749" - ], - "nist": [ - "CM-5 (3)" - ], - "severity": "high", - "description": "{\"VulnDiscussion\":\"Changes to any software components can have significant effects on the overall security of the operating system. This requirement ensures the software has not been tampered with and that it has been provided by a trusted vendor.\\n\\nAccordingly, patches, service packs, device drivers, or operating system components must be signed with a certificate recognized and approved by the organization.\\n\\nVerifying the authenticity of the software prior to installation validates the integrity of the patch or upgrade received from a vendor. This verifies the software has not been tampered with and that it has been provided by a trusted vendor. Self-signed certificates are disallowed by this requirement. The operating system should not have to verify the software again. This requirement does not mandate DoD certificates for this purpose; however, the certificate used to verify the software must be from an approved CA.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230265", - "group_title": "SRG-OS-000366-GPOS-00153", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230265r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:131", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32909r567542_fix", - "fixtext_fixref": "F-32909r567542_fix", - "ident": { - "text": "CCI-001749", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-010371", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230265r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:26-05:00", - "severity": "high", - "version": "RHEL-08-010371", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-001749", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:131", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:26-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230266", - "title": "RHEL 8 must prevent the loading of a new kernel for later execution.", - "desc": "Changes to any software components can have significant effects on the overall security of the operating system. This requirement ensures the software has not been tampered with and that it has been provided by a trusted vendor.\n\nDisabling kexec_load prevents an unsigned kernel image (that could be a windows kernel or modified vulnerable kernel) from being loaded. Kexec can be used subvert the entire secureboot process and should be avoided at all costs especially since it can load unsigned kernel images.\n\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\n/etc/sysctl.d/*.conf\n/run/sysctl.d/*.conf\n/usr/local/lib/sysctl.d/*.conf\n/usr/lib/sysctl.d/*.conf\n/lib/sysctl.d/*.conf\n/etc/sysctl.conf\nBased on the information above, if a configuration file that begins with \"99-\" is created in the \"/etc/sysctl.d/\" directory, it will take precedence over any other configuration file on the system.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:132", - "label": "check" - }, - { - "data": "Configure the operating system to disable kernel image loading.\n\nAdd or edit the following line in a system configuration file, which begins with \"99-\", in the \"/etc/sysctl.d/\" directory:\n\nkernel.kexec_load_disabled = 1\n\nLoad settings from all system configuration files with the following command:\n\n$ sudo sysctl --system", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001749" - ], - "nist": [ - "CM-5 (3)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Changes to any software components can have significant effects on the overall security of the operating system. This requirement ensures the software has not been tampered with and that it has been provided by a trusted vendor.\\n\\nDisabling kexec_load prevents an unsigned kernel image (that could be a windows kernel or modified vulnerable kernel) from being loaded. Kexec can be used subvert the entire secureboot process and should be avoided at all costs especially since it can load unsigned kernel images.\\n\\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\\n/etc/sysctl.d/*.conf\\n/run/sysctl.d/*.conf\\n/usr/local/lib/sysctl.d/*.conf\\n/usr/lib/sysctl.d/*.conf\\n/lib/sysctl.d/*.conf\\n/etc/sysctl.conf\\nBased on the information above, if a configuration file that begins with \\\"99-\\\" is created in the \\\"/etc/sysctl.d/\\\" directory, it will take precedence over any other configuration file on the system.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230266", - "group_title": "SRG-OS-000366-GPOS-00153", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230266r792870_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:132", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32910r792869_fix", - "fixtext_fixref": "F-32910r792869_fix", - "ident": { - "text": "CCI-001749", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-010372", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230266r792870_rule", - "role": "full", - "time": "2021-11-12T11:37:26-05:00", - "severity": "medium", - "version": "RHEL-08-010372", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-001749", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:132", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:26-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230267", - "title": "RHEL 8 must enable kernel parameters to enforce discretionary access control on symlinks.", - "desc": "Discretionary Access Control (DAC) is based on the notion that individual users are \"owners\" of objects and therefore have discretion over who should be authorized to access the object and in which mode (e.g., read or write). Ownership is usually acquired as a consequence of creating the object or via specified ownership assignment. DAC allows the owner to determine who will have access to objects they control. An example of DAC includes user-controlled file permissions.\n\nWhen discretionary access control policies are implemented, subjects are not constrained with regard to what actions they can take with information for which they have already been granted access. Thus, subjects that have been granted access to information are not prevented from passing (i.e., the subjects have the discretion to pass) the information to other subjects or objects. A subject that is constrained in its operation by Mandatory Access Control policies is still able to operate under the less rigorous constraints of this requirement. Thus, while Mandatory Access Control imposes constraints preventing a subject from passing information to another subject operating at a different sensitivity level, this requirement permits the subject to pass the information to any subject at the same sensitivity level. The policy is bounded by the information system boundary. Once the information is passed outside the control of the information system, additional means may be required to ensure the constraints remain in effect. While the older, more traditional definitions of discretionary access control require identity-based access control, that limitation is not required for this use of discretionary access control.\n\nBy enabling the fs.protected_symlinks kernel parameter, symbolic links are permitted to be followed only when outside a sticky world-writable directory, or when the UID of the link and follower match, or when the directory owner matches the symlink's owner. Disallowing such symlinks helps mitigate vulnerabilities based on insecure file system accessed by privileged programs, avoiding an exploitation vector exploiting unsafe use of open() or creat().\n\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\n/etc/sysctl.d/*.conf\n/run/sysctl.d/*.conf\n/usr/local/lib/sysctl.d/*.conf\n/usr/lib/sysctl.d/*.conf\n/lib/sysctl.d/*.conf\n/etc/sysctl.conf\n\nBased on the information above, if a configuration file that begins with \"99-\" is created in the \"/etc/sysctl.d/\" directory, it will take precedence over any other configuration file on the system.\n\nSatisfies: SRG-OS-000312-GPOS-00122, SRG-OS-000312-GPOS-00123, SRG-OS-000312-GPOS-00124, SRG-OS-000324-GPOS-00125", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:133", - "label": "check" - }, - { - "data": "Configure the operating system to enable DAC on symlinks.\n\nAdd or edit the following line in a system configuration file, which begins with \"99-\", in the \"/etc/sysctl.d/\" directory:\n\nfs.protected_symlinks = 1\n\nLoad settings from all system configuration files with the following command:\n\n$ sudo sysctl --system", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-002165" - ], - "nist": [ - "AC-3 (4)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Discretionary Access Control (DAC) is based on the notion that individual users are \\\"owners\\\" of objects and therefore have discretion over who should be authorized to access the object and in which mode (e.g., read or write). Ownership is usually acquired as a consequence of creating the object or via specified ownership assignment. DAC allows the owner to determine who will have access to objects they control. An example of DAC includes user-controlled file permissions.\\n\\nWhen discretionary access control policies are implemented, subjects are not constrained with regard to what actions they can take with information for which they have already been granted access. Thus, subjects that have been granted access to information are not prevented from passing (i.e., the subjects have the discretion to pass) the information to other subjects or objects. A subject that is constrained in its operation by Mandatory Access Control policies is still able to operate under the less rigorous constraints of this requirement. Thus, while Mandatory Access Control imposes constraints preventing a subject from passing information to another subject operating at a different sensitivity level, this requirement permits the subject to pass the information to any subject at the same sensitivity level. The policy is bounded by the information system boundary. Once the information is passed outside the control of the information system, additional means may be required to ensure the constraints remain in effect. While the older, more traditional definitions of discretionary access control require identity-based access control, that limitation is not required for this use of discretionary access control.\\n\\nBy enabling the fs.protected_symlinks kernel parameter, symbolic links are permitted to be followed only when outside a sticky world-writable directory, or when the UID of the link and follower match, or when the directory owner matches the symlink's owner. Disallowing such symlinks helps mitigate vulnerabilities based on insecure file system accessed by privileged programs, avoiding an exploitation vector exploiting unsafe use of open() or creat().\\n\\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\\n/etc/sysctl.d/*.conf\\n/run/sysctl.d/*.conf\\n/usr/local/lib/sysctl.d/*.conf\\n/usr/lib/sysctl.d/*.conf\\n/lib/sysctl.d/*.conf\\n/etc/sysctl.conf\\n\\nBased on the information above, if a configuration file that begins with \\\"99-\\\" is created in the \\\"/etc/sysctl.d/\\\" directory, it will take precedence over any other configuration file on the system.\\n\\nSatisfies: SRG-OS-000312-GPOS-00122, SRG-OS-000312-GPOS-00123, SRG-OS-000312-GPOS-00124, SRG-OS-000324-GPOS-00125\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230267", - "group_title": "SRG-OS-000312-GPOS-00122", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230267r792873_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:133", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32911r792872_fix", - "fixtext_fixref": "F-32911r792872_fix", - "ident": { - "text": "CCI-002165", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-010373", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230267r792873_rule", - "role": "full", - "time": "2021-11-12T11:37:26-05:00", - "severity": "medium", - "version": "RHEL-08-010373", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-002165", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:133", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:26-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230268", - "title": "RHEL 8 must enable kernel parameters to enforce discretionary access control on hardlinks.", - "desc": "Discretionary Access Control (DAC) is based on the notion that individual users are \"owners\" of objects and therefore have discretion over who should be authorized to access the object and in which mode (e.g., read or write). Ownership is usually acquired as a consequence of creating the object or via specified ownership assignment. DAC allows the owner to determine who will have access to objects they control. An example of DAC includes user-controlled file permissions.\n\nWhen discretionary access control policies are implemented, subjects are not constrained with regard to what actions they can take with information for which they have already been granted access. Thus, subjects that have been granted access to information are not prevented from passing (i.e., the subjects have the discretion to pass) the information to other subjects or objects. A subject that is constrained in its operation by Mandatory Access Control policies is still able to operate under the less rigorous constraints of this requirement. Thus, while Mandatory Access Control imposes constraints preventing a subject from passing information to another subject operating at a different sensitivity level, this requirement permits the subject to pass the information to any subject at the same sensitivity level. The policy is bounded by the information system boundary. Once the information is passed outside the control of the information system, additional means may be required to ensure the constraints remain in effect. While the older, more traditional definitions of discretionary access control require identity-based access control, that limitation is not required for this use of discretionary access control.\n\nBy enabling the fs.protected_hardlinks kernel parameter, users can no longer create soft or hard links to files they do not own. Disallowing such hardlinks mitigate vulnerabilities based on insecure file system accessed by privileged programs, avoiding an exploitation vector exploiting unsafe use of open() or creat().\n\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\n/etc/sysctl.d/*.conf\n/run/sysctl.d/*.conf\n/usr/local/lib/sysctl.d/*.conf\n/usr/lib/sysctl.d/*.conf\n/lib/sysctl.d/*.conf\n/etc/sysctl.conf\n\nBased on the information above, if a configuration file that begins with \"99-\" is created in the \"/etc/sysctl.d/\" directory, it will take precedence over any other configuration file on the system.\n\nSatisfies: SRG-OS-000312-GPOS-00122, SRG-OS-000312-GPOS-00123, SRG-OS-000312-GPOS-00124, SRG-OS-000324-GPOS-00125", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:134", - "label": "check" - }, - { - "data": "Configure the operating system to enable DAC on hardlinks.\n\nAdd or edit the following line in a system configuration file, which begins with \"99-\", in the \"/etc/sysctl.d/\" directory:\n\nfs.protected_hardlinks = 1\n\nLoad settings from all system configuration files with the following command:\n\n$ sudo sysctl --system", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-002165" - ], - "nist": [ - "AC-3 (4)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Discretionary Access Control (DAC) is based on the notion that individual users are \\\"owners\\\" of objects and therefore have discretion over who should be authorized to access the object and in which mode (e.g., read or write). Ownership is usually acquired as a consequence of creating the object or via specified ownership assignment. DAC allows the owner to determine who will have access to objects they control. An example of DAC includes user-controlled file permissions.\\n\\nWhen discretionary access control policies are implemented, subjects are not constrained with regard to what actions they can take with information for which they have already been granted access. Thus, subjects that have been granted access to information are not prevented from passing (i.e., the subjects have the discretion to pass) the information to other subjects or objects. A subject that is constrained in its operation by Mandatory Access Control policies is still able to operate under the less rigorous constraints of this requirement. Thus, while Mandatory Access Control imposes constraints preventing a subject from passing information to another subject operating at a different sensitivity level, this requirement permits the subject to pass the information to any subject at the same sensitivity level. The policy is bounded by the information system boundary. Once the information is passed outside the control of the information system, additional means may be required to ensure the constraints remain in effect. While the older, more traditional definitions of discretionary access control require identity-based access control, that limitation is not required for this use of discretionary access control.\\n\\nBy enabling the fs.protected_hardlinks kernel parameter, users can no longer create soft or hard links to files they do not own. Disallowing such hardlinks mitigate vulnerabilities based on insecure file system accessed by privileged programs, avoiding an exploitation vector exploiting unsafe use of open() or creat().\\n\\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\\n/etc/sysctl.d/*.conf\\n/run/sysctl.d/*.conf\\n/usr/local/lib/sysctl.d/*.conf\\n/usr/lib/sysctl.d/*.conf\\n/lib/sysctl.d/*.conf\\n/etc/sysctl.conf\\n\\nBased on the information above, if a configuration file that begins with \\\"99-\\\" is created in the \\\"/etc/sysctl.d/\\\" directory, it will take precedence over any other configuration file on the system.\\n\\nSatisfies: SRG-OS-000312-GPOS-00122, SRG-OS-000312-GPOS-00123, SRG-OS-000312-GPOS-00124, SRG-OS-000324-GPOS-00125\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230268", - "group_title": "SRG-OS-000312-GPOS-00122", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230268r792876_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:134", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32912r792875_fix", - "fixtext_fixref": "F-32912r792875_fix", - "ident": { - "text": "CCI-002165", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-010374", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230268r792876_rule", - "role": "full", - "time": "2021-11-12T11:37:26-05:00", - "severity": "medium", - "version": "RHEL-08-010374", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-002165", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:134", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:26-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230269", - "title": "RHEL 8 must restrict access to the kernel message buffer.", - "desc": "Preventing unauthorized information transfers mitigates the risk of information, including encrypted representations of information, produced by the actions of prior users/roles (or the actions of processes acting on behalf of prior users/roles) from being available to any current users/roles (or current processes) that obtain access to shared system resources (e.g., registers, main memory, hard disks) after those resources have been released back to information systems. The control of information in shared resources is also commonly referred to as object reuse and residual information protection.\n\nThis requirement generally applies to the design of an information technology product, but it can also apply to the configuration of particular information system components that are, or use, such products. This can be verified by acceptance/validation processes in DoD or other government agencies.\n\nThere may be shared resources with configurable protections (e.g., files in storage) that may be assessed on specific information system components.\n\nRestricting access to the kernel message buffer limits access to only root. This prevents attackers from gaining additional system information as a non-privileged user.\n\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\n/etc/sysctl.d/*.conf\n/run/sysctl.d/*.conf\n/usr/local/lib/sysctl.d/*.conf\n/usr/lib/sysctl.d/*.conf\n/lib/sysctl.d/*.conf\n/etc/sysctl.conf\n\nBased on the information above, if a configuration file that begins with \"99-\" is created in the \"/etc/sysctl.d/\" directory, it will take precedence over any other configuration file on the system.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:135", - "label": "check" - }, - { - "data": "Configure the operating system to restrict access to the kernel message buffer.\n\nAdd or edit the following line in a system configuration file, which begins with \"99-\", in the \"/etc/sysctl.d/\" directory:\n\nkernel.dmesg_restrict = 1\n\nLoad settings from all system configuration files with the following command:\n\n$ sudo sysctl --system", - "label": "fix" - } - ], - "impact": 0.3, - "refs": [], - "tags": { - "cci": [ - "CCI-001090" - ], - "nist": [ - "SC-4" - ], - "severity": "low", - "description": "{\"VulnDiscussion\":\"Preventing unauthorized information transfers mitigates the risk of information, including encrypted representations of information, produced by the actions of prior users/roles (or the actions of processes acting on behalf of prior users/roles) from being available to any current users/roles (or current processes) that obtain access to shared system resources (e.g., registers, main memory, hard disks) after those resources have been released back to information systems. The control of information in shared resources is also commonly referred to as object reuse and residual information protection.\\n\\nThis requirement generally applies to the design of an information technology product, but it can also apply to the configuration of particular information system components that are, or use, such products. This can be verified by acceptance/validation processes in DoD or other government agencies.\\n\\nThere may be shared resources with configurable protections (e.g., files in storage) that may be assessed on specific information system components.\\n\\nRestricting access to the kernel message buffer limits access to only root. This prevents attackers from gaining additional system information as a non-privileged user.\\n\\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\\n/etc/sysctl.d/*.conf\\n/run/sysctl.d/*.conf\\n/usr/local/lib/sysctl.d/*.conf\\n/usr/lib/sysctl.d/*.conf\\n/lib/sysctl.d/*.conf\\n/etc/sysctl.conf\\n\\nBased on the information above, if a configuration file that begins with \\\"99-\\\" is created in the \\\"/etc/sysctl.d/\\\" directory, it will take precedence over any other configuration file on the system.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230269", - "group_title": "SRG-OS-000138-GPOS-00069", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230269r792879_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:135", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32913r792878_fix", - "fixtext_fixref": "F-32913r792878_fix", - "ident": { - "text": "CCI-001090", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-010375", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230269r792879_rule", - "role": "full", - "time": "2021-11-12T11:37:26-05:00", - "severity": "low", - "version": "RHEL-08-010375", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-001090", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:135", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:26-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230270", - "title": "RHEL 8 must prevent kernel profiling by unprivileged users.", - "desc": "Preventing unauthorized information transfers mitigates the risk of information, including encrypted representations of information, produced by the actions of prior users/roles (or the actions of processes acting on behalf of prior users/roles) from being available to any current users/roles (or current processes) that obtain access to shared system resources (e.g., registers, main memory, hard disks) after those resources have been released back to information systems. The control of information in shared resources is also commonly referred to as object reuse and residual information protection.\n\nThis requirement generally applies to the design of an information technology product, but it can also apply to the configuration of particular information system components that are, or use, such products. This can be verified by acceptance/validation processes in DoD or other government agencies.\n\nThere may be shared resources with configurable protections (e.g., files in storage) that may be assessed on specific information system components.\n\nSetting the kernel.perf_event_paranoid kernel parameter to \"2\" prevents attackers from gaining additional system information as a non-privileged user.\n\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\n/etc/sysctl.d/*.conf\n/run/sysctl.d/*.conf\n/usr/local/lib/sysctl.d/*.conf\n/usr/lib/sysctl.d/*.conf\n/lib/sysctl.d/*.conf\n/etc/sysctl.conf\n\nBased on the information above, if a configuration file that begins with \"99-\" is created in the \"/etc/sysctl.d/\" directory, it will take precedence over any other configuration file on the system.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:136", - "label": "check" - }, - { - "data": "Configure the operating system to prevent kernel profiling by unprivileged users.\n\nAdd or edit the following line in a system configuration file, which begins with \"99-\", in the \"/etc/sysctl.d/\" directory:\n\nkernel.perf_event_paranoid = 2\n\nLoad settings from all system configuration files with the following command:\n\n$ sudo sysctl --system", - "label": "fix" - } - ], - "impact": 0.3, - "refs": [], - "tags": { - "cci": [ - "CCI-001090" - ], - "nist": [ - "SC-4" - ], - "severity": "low", - "description": "{\"VulnDiscussion\":\"Preventing unauthorized information transfers mitigates the risk of information, including encrypted representations of information, produced by the actions of prior users/roles (or the actions of processes acting on behalf of prior users/roles) from being available to any current users/roles (or current processes) that obtain access to shared system resources (e.g., registers, main memory, hard disks) after those resources have been released back to information systems. The control of information in shared resources is also commonly referred to as object reuse and residual information protection.\\n\\nThis requirement generally applies to the design of an information technology product, but it can also apply to the configuration of particular information system components that are, or use, such products. This can be verified by acceptance/validation processes in DoD or other government agencies.\\n\\nThere may be shared resources with configurable protections (e.g., files in storage) that may be assessed on specific information system components.\\n\\nSetting the kernel.perf_event_paranoid kernel parameter to \\\"2\\\" prevents attackers from gaining additional system information as a non-privileged user.\\n\\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\\n/etc/sysctl.d/*.conf\\n/run/sysctl.d/*.conf\\n/usr/local/lib/sysctl.d/*.conf\\n/usr/lib/sysctl.d/*.conf\\n/lib/sysctl.d/*.conf\\n/etc/sysctl.conf\\n\\nBased on the information above, if a configuration file that begins with \\\"99-\\\" is created in the \\\"/etc/sysctl.d/\\\" directory, it will take precedence over any other configuration file on the system.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230270", - "group_title": "SRG-OS-000138-GPOS-00069", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230270r792882_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:136", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32914r792881_fix", - "fixtext_fixref": "F-32914r792881_fix", - "ident": { - "text": "CCI-001090", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-010376", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230270r792882_rule", - "role": "full", - "time": "2021-11-12T11:37:26-05:00", - "severity": "low", - "version": "RHEL-08-010376", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-001090", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:136", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:26-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230271", - "title": "RHEL 8 must require users to provide a password for privilege escalation.", - "desc": "Without reauthentication, users may access resources or perform tasks for which they do not have authorization.\n\nWhen operating systems provide the capability to escalate a functional capability, it is critical the user reauthenticate.\n\nSatisfies: SRG-OS-000373-GPOS-00156, SRG-OS-000373-GPOS-00157, SRG-OS-000373-GPOS-00158", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:137", - "label": "check" - }, - { - "data": "Remove any occurrence of \"NOPASSWD\" found in \"/etc/sudoers\" file or files in the \"/etc/sudoers.d\" directory.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-002038" - ], - "nist": [ - "IA-11" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without reauthentication, users may access resources or perform tasks for which they do not have authorization.\\n\\nWhen operating systems provide the capability to escalate a functional capability, it is critical the user reauthenticate.\\n\\nSatisfies: SRG-OS-000373-GPOS-00156, SRG-OS-000373-GPOS-00157, SRG-OS-000373-GPOS-00158\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230271", - "group_title": "SRG-OS-000373-GPOS-00156", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230271r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:137", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32915r567560_fix", - "fixtext_fixref": "F-32915r567560_fix", - "ident": { - "text": "CCI-002038", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-010380", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230271r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:26-05:00", - "severity": "medium", - "version": "RHEL-08-010380", - "weight": "10.000000", - "result": "error", - "ident": { - "text": "CCI-002038", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:137", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:26-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230272", - "title": "RHEL 8 must require users to reauthenticate for privilege escalation.", - "desc": "Without reauthentication, users may access resources or perform tasks for which they do not have authorization.\n\nWhen operating systems provide the capability to escalate a functional capability, it is critical the user reauthenticate.\n\nSatisfies: SRG-OS-000373-GPOS-00156, SRG-OS-000373-GPOS-00157, SRG-OS-000373-GPOS-00158", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:138", - "label": "check" - }, - { - "data": "Remove any occurrence of \"!authenticate\" found in \"/etc/sudoers\" file or files in the \"/etc/sudoers.d\" directory.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-002038" - ], - "nist": [ - "IA-11" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without reauthentication, users may access resources or perform tasks for which they do not have authorization.\\n\\nWhen operating systems provide the capability to escalate a functional capability, it is critical the user reauthenticate.\\n\\nSatisfies: SRG-OS-000373-GPOS-00156, SRG-OS-000373-GPOS-00157, SRG-OS-000373-GPOS-00158\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230272", - "group_title": "SRG-OS-000373-GPOS-00156", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230272r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:138", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32916r567563_fix", - "fixtext_fixref": "F-32916r567563_fix", - "ident": { - "text": "CCI-002038", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-010381", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230272r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:26-05:00", - "severity": "medium", - "version": "RHEL-08-010381", - "weight": "10.000000", - "result": "error", - "ident": { - "text": "CCI-002038", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:138", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:26-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230273", - "title": "RHEL 8 must have the packages required for multifactor authentication installed.", - "desc": "Using an authentication device, such as a DoD Common Access Card (CAC) or token that is separate from the information system, ensures that even if the information system is compromised, credentials stored on the authentication device will not be affected.\n\nMultifactor solutions that require devices separate from information systems gaining access include, for example, hardware tokens providing time-based or challenge-response authenticators and smart cards such as the U.S. Government Personal Identity Verification (PIV) card and the DoD CAC.\n\nA privileged account is defined as an information system account with authorizations of a privileged user.\n\nRemote access is access to DoD nonpublic information systems by an authorized user (or an information system) communicating through an external, non-organization-controlled network. Remote access methods include, for example, dial-up, broadband, and wireless.\n\nThis requirement only applies to components where this is specific to the function of the device or has the concept of an organizational user (e.g., VPN, proxy capability). This does not apply to authentication for the purpose of configuring the device itself (management).", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:139", - "label": "check" - }, - { - "data": "Configure the operating system to implement multifactor authentication by installing the required package with the following command:\n\n$ sudo yum install openssl-pkcs11", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001948" - ], - "nist": [ - "IA-2 (11)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Using an authentication device, such as a DoD Common Access Card (CAC) or token that is separate from the information system, ensures that even if the information system is compromised, credentials stored on the authentication device will not be affected.\\n\\nMultifactor solutions that require devices separate from information systems gaining access include, for example, hardware tokens providing time-based or challenge-response authenticators and smart cards such as the U.S. Government Personal Identity Verification (PIV) card and the DoD CAC.\\n\\nA privileged account is defined as an information system account with authorizations of a privileged user.\\n\\nRemote access is access to DoD nonpublic information systems by an authorized user (or an information system) communicating through an external, non-organization-controlled network. Remote access methods include, for example, dial-up, broadband, and wireless.\\n\\nThis requirement only applies to components where this is specific to the function of the device or has the concept of an organizational user (e.g., VPN, proxy capability). This does not apply to authentication for the purpose of configuring the device itself (management).\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230273", - "group_title": "SRG-OS-000375-GPOS-00160", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230273r743943_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:139", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32917r743942_fix", - "fixtext_fixref": "F-32917r743942_fix", - "ident": { - "text": "CCI-001948", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-010390", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230273r743943_rule", - "role": "full", - "time": "2021-11-12T11:37:26-05:00", - "severity": "medium", - "version": "RHEL-08-010390", - "weight": "10.000000", - "result": "pass", - "ident": { - "text": "CCI-001948", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:139", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:26-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230281", - "title": "YUM must remove all software components after updated versions have been installed on RHEL 8.", - "desc": "Previous versions of software components that are not removed from the information system after updates have been installed may be exploited by adversaries. Some information technology products may remove older versions of software automatically from the information system.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:145", - "label": "check" - }, - { - "data": "Configure the operating system to remove all software components after updated versions have been installed.\n\nSet the \"clean_requirements_on_remove\" option to \"True\" in the \"/etc/dnf/dnf.conf\" file:\n\nclean_requirements_on_remove=True", - "label": "fix" - } - ], - "impact": 0.3, - "refs": [], - "tags": { - "cci": [ - "CCI-002617" - ], - "nist": [ - "SI-2 (6)" - ], - "severity": "low", - "description": "{\"VulnDiscussion\":\"Previous versions of software components that are not removed from the information system after updates have been installed may be exploited by adversaries. Some information technology products may remove older versions of software automatically from the information system.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230281", - "group_title": "SRG-OS-000437-GPOS-00194", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230281r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:145", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32925r567590_fix", - "fixtext_fixref": "F-32925r567590_fix", - "ident": { - "text": "CCI-002617", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-010440", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230281r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:26-05:00", - "severity": "low", - "version": "RHEL-08-010440", - "weight": "10.000000", - "result": "pass", - "ident": { - "text": "CCI-002617", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:145", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:26-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230282", - "title": "RHEL 8 must enable the SELinux targeted policy.", - "desc": "Without verification of the security functions, security functions may not operate correctly and the failure may go unnoticed. Security function is defined as the hardware, software, and/or firmware of the information system responsible for enforcing the system security policy and supporting the isolation of code and data on which the protection is based. Security functionality includes, but is not limited to, establishing system accounts, configuring access authorizations (i.e., permissions, privileges), setting events to be audited, and setting intrusion detection parameters.\n\nThis requirement applies to operating systems performing security function verification/testing and/or systems and environments that require this functionality.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:146", - "label": "check" - }, - { - "data": "Configure the operating system to verify correct operation of all security functions.\n\nSet the \"SELinuxtype\" to the \"targeted\" policy by modifying the \"/etc/selinux/config\" file to have the following line:\n\nSELINUXTYPE=targeted\n\nA reboot is required for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-002696" - ], - "nist": [ - "SI-6 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without verification of the security functions, security functions may not operate correctly and the failure may go unnoticed. Security function is defined as the hardware, software, and/or firmware of the information system responsible for enforcing the system security policy and supporting the isolation of code and data on which the protection is based. Security functionality includes, but is not limited to, establishing system accounts, configuring access authorizations (i.e., permissions, privileges), setting events to be audited, and setting intrusion detection parameters.\\n\\nThis requirement applies to operating systems performing security function verification/testing and/or systems and environments that require this functionality.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230282", - "group_title": "SRG-OS-000445-GPOS-00199", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230282r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:146", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32926r567593_fix", - "fixtext_fixref": "F-32926r567593_fix", - "ident": { - "text": "CCI-002696", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-010450", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230282r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:26-05:00", - "severity": "medium", - "version": "RHEL-08-010450", - "weight": "10.000000", - "result": "pass", - "ident": { - "text": "CCI-002696", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:146", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:26-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230283", - "title": "There must be no shosts.equiv files on the RHEL 8 operating system.", - "desc": "The \"shosts.equiv\" files are used to configure host-based authentication for the system via SSH. Host-based authentication is not sufficient for preventing unauthorized access to the system, as it does not require interactive identification and authentication of a connection request, or for the use of two-factor authentication.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:147", - "label": "check" - }, - { - "data": "Remove any found \"shosts.equiv\" files from the system.\n\n$ sudo rm /etc/ssh/shosts.equiv", - "label": "fix" - } - ], - "impact": 0.7, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "high", - "description": "{\"VulnDiscussion\":\"The \\\"shosts.equiv\\\" files are used to configure host-based authentication for the system via SSH. Host-based authentication is not sufficient for preventing unauthorized access to the system, as it does not require interactive identification and authentication of a connection request, or for the use of two-factor authentication.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230283", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230283r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:147", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32927r567596_fix", - "fixtext_fixref": "F-32927r567596_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-010460", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230283r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:28-05:00", - "severity": "high", - "version": "RHEL-08-010460", - "weight": "10.000000", - "result": "pass", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:147", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:28-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230284", - "title": "There must be no .shosts files on the RHEL 8 operating system.", - "desc": "The \".shosts\" files are used to configure host-based authentication for individual users or the system via SSH. Host-based authentication is not sufficient for preventing unauthorized access to the system, as it does not require interactive identification and authentication of a connection request, or for the use of two-factor authentication.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:148", - "label": "check" - }, - { - "data": "Remove any found \".shosts\" files from the system.\n\n$ sudo rm /[path]/[to]/[file]/.shosts", - "label": "fix" - } - ], - "impact": 0.7, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "high", - "description": "{\"VulnDiscussion\":\"The \\\".shosts\\\" files are used to configure host-based authentication for individual users or the system via SSH. Host-based authentication is not sufficient for preventing unauthorized access to the system, as it does not require interactive identification and authentication of a connection request, or for the use of two-factor authentication.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230284", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230284r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:148", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32928r567599_fix", - "fixtext_fixref": "F-32928r567599_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-010470", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230284r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "high", - "version": "RHEL-08-010470", - "weight": "10.000000", - "result": "pass", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:148", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230286", - "title": "The RHEL 8 SSH public host key files must have mode 0644 or less permissive.", - "desc": "If a public host key file is modified by an unauthorized user, the SSH service may be compromised.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:149", - "label": "check" - }, - { - "data": "Change the mode of public host key files under \"/etc/ssh\" to \"0644\" with the following command:\n\n$ sudo chmod 0644 /etc/ssh/*key.pub\n\nThe SSH daemon must be restarted for the changes to take effect. To restart the SSH daemon, run the following command:\n\n$ sudo systemctl restart sshd.service", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"If a public host key file is modified by an unauthorized user, the SSH service may be compromised.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230286", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230286r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:149", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32930r567605_fix", - "fixtext_fixref": "F-32930r567605_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-010480", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230286r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-010480", - "weight": "10.000000", - "result": "pass", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:149", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230287", - "title": "The RHEL 8 SSH private host key files must have mode 0600 or less permissive.", - "desc": "If an unauthorized user obtains the private SSH host key file, the host could be impersonated.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:150", - "label": "check" - }, - { - "data": "Configure the mode of SSH private host key files under \"/etc/ssh\" to \"0600\" with the following command:\n\n$ sudo chmod 0600 /etc/ssh/ssh_host*key\n\nThe SSH daemon must be restarted for the changes to take effect. To restart the SSH daemon, run the following command:\n\n$ sudo systemctl restart sshd.service", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"If an unauthorized user obtains the private SSH host key file, the host could be impersonated.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230287", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230287r743951_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:150", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32931r743950_fix", - "fixtext_fixref": "F-32931r743950_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-010490", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230287r743951_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-010490", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:150", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230288", - "title": "The RHEL 8 SSH daemon must perform strict mode checking of home directory configuration files.", - "desc": "If other users have access to modify user-specific SSH configuration files, they may be able to log on to the system as another user.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:151", - "label": "check" - }, - { - "data": "Configure SSH to perform strict mode checking of home directory configuration files. Uncomment the \"StrictModes\" keyword in \"/etc/ssh/sshd_config\" and set the value to \"yes\":\n\nStrictModes yes\n\nThe SSH daemon must be restarted for the changes to take effect. To restart the SSH daemon, run the following command:\n\n$ sudo systemctl restart sshd.service", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"If other users have access to modify user-specific SSH configuration files, they may be able to log on to the system as another user.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230288", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230288r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:151", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32932r567611_fix", - "fixtext_fixref": "F-32932r567611_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-010500", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230288r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-010500", - "weight": "10.000000", - "result": "error", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:151", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230289", - "title": "The RHEL 8 SSH daemon must not allow compression or must only allow compression after successful authentication.", - "desc": "If compression is allowed in an SSH connection prior to authentication, vulnerabilities in the compression software could result in compromise of the system from an unauthenticated connection, potentially with root privileges.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:152", - "label": "check" - }, - { - "data": "Uncomment the \"Compression\" keyword in \"/etc/ssh/sshd_config\" (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor) on the system and set the value to \"delayed\" or \"no\":\n\nCompression no\n\nThe SSH service must be restarted for changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"If compression is allowed in an SSH connection prior to authentication, vulnerabilities in the compression software could result in compromise of the system from an unauthenticated connection, potentially with root privileges.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230289", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230289r743954_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:152", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32933r743953_fix", - "fixtext_fixref": "F-32933r743953_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-010510", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230289r743954_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-010510", - "weight": "10.000000", - "result": "error", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:152", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230290", - "title": "The RHEL 8 SSH daemon must not allow authentication using known host’s authentication.", - "desc": "Configuring this setting for the SSH daemon provides additional assurance that remote logon via SSH will require a password, even in the event of misconfiguration elsewhere.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:153", - "label": "check" - }, - { - "data": "Configure the SSH daemon to not allow authentication using known host’s authentication.\n\nAdd the following line in \"/etc/ssh/sshd_config\", or uncomment the line and set the value to \"yes\":\n\nIgnoreUserKnownHosts yes\n\nThe SSH daemon must be restarted for the changes to take effect. To restart the SSH daemon, run the following command:\n\n$ sudo systemctl restart sshd.service", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Configuring this setting for the SSH daemon provides additional assurance that remote logon via SSH will require a password, even in the event of misconfiguration elsewhere.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230290", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230290r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:153", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32934r567617_fix", - "fixtext_fixref": "F-32934r567617_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-010520", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230290r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-010520", - "weight": "10.000000", - "result": "error", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:153", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230291", - "title": "The RHEL 8 SSH daemon must not allow Kerberos authentication, except to fulfill documented and validated mission requirements.", - "desc": "Configuring these settings for the SSH daemon provides additional assurance that remote logon via SSH will not use unused methods of authentication, even in the event of misconfiguration elsewhere.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:154", - "label": "check" - }, - { - "data": "Configure the SSH daemon to not allow Kerberos authentication.\n\nAdd the following line in \"/etc/ssh/sshd_config\", or uncomment the line and set the value to \"no\":\n\nKerberosAuthentication no\n\nThe SSH daemon must be restarted for the changes to take effect. To restart the SSH daemon, run the following command:\n\n$ sudo systemctl restart sshd.service", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Configuring these settings for the SSH daemon provides additional assurance that remote logon via SSH will not use unused methods of authentication, even in the event of misconfiguration elsewhere.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230291", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230291r743957_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:154", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32935r743956_fix", - "fixtext_fixref": "F-32935r743956_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-010521", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230291r743957_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-010521", - "weight": "10.000000", - "result": "error", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:154", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230292", - "title": "RHEL 8 must use a separate file system for /var.", - "desc": "The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:155", - "label": "check" - }, - { - "data": "Migrate the \"/var\" path onto a separate file system.", - "label": "fix" - } - ], - "impact": 0.3, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "low", - "description": "{\"VulnDiscussion\":\"The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230292", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230292r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:155", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32936r567623_fix", - "fixtext_fixref": "F-32936r567623_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-010540", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230292r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "low", - "version": "RHEL-08-010540", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:155", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230293", - "title": "RHEL 8 must use a separate file system for /var/log.", - "desc": "The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:156", - "label": "check" - }, - { - "data": "Migrate the \"/var/log\" path onto a separate file system.", - "label": "fix" - } - ], - "impact": 0.3, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "low", - "description": "{\"VulnDiscussion\":\"The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230293", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230293r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:156", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32937r567626_fix", - "fixtext_fixref": "F-32937r567626_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-010541", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230293r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "low", - "version": "RHEL-08-010541", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:156", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230294", - "title": "RHEL 8 must use a separate file system for the system audit data path.", - "desc": "The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:157", - "label": "check" - }, - { - "data": "Migrate the system audit data path onto a separate file system.", - "label": "fix" - } - ], - "impact": 0.3, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "low", - "description": "{\"VulnDiscussion\":\"The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230294", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230294r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:157", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32938r567629_fix", - "fixtext_fixref": "F-32938r567629_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-010542", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230294r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "low", - "version": "RHEL-08-010542", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:157", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230295", - "title": "A separate RHEL 8 filesystem must be used for the /tmp directory.", - "desc": "The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:158", - "label": "check" - }, - { - "data": "Migrate the \"/tmp\" directory onto a separate file system/partition.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230295", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230295r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:158", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32939r567632_fix", - "fixtext_fixref": "F-32939r567632_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-010543", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230295r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-010543", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:158", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230296", - "title": "RHEL 8 must not permit direct logons to the root account using remote access via SSH.", - "desc": "Even though the communications channel may be encrypted, an additional layer of security is gained by extending the policy of not logging on directly as root. In addition, logging on with a user-specific account provides individual accountability of actions performed on the system.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:159", - "label": "check" - }, - { - "data": "Configure RHEL 8 to stop users from logging on remotely as the \"root\" user via SSH.\n\nEdit the appropriate \"/etc/ssh/sshd_config\" file to uncomment or add the line for the \"PermitRootLogin\" keyword and set its value to \"no\":\n\nPermitRootLogin no\n\nThe SSH daemon must be restarted for the changes to take effect. To restart the SSH daemon, run the following command:\n\n$ sudo systemctl restart sshd.service", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000770" - ], - "nist": [ - "IA-2 (5)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Even though the communications channel may be encrypted, an additional layer of security is gained by extending the policy of not logging on directly as root. In addition, logging on with a user-specific account provides individual accountability of actions performed on the system.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230296", - "group_title": "SRG-OS-000109-GPOS-00056", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230296r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:159", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32940r567635_fix", - "fixtext_fixref": "F-32940r567635_fix", - "ident": { - "text": "CCI-000770", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-010550", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230296r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-010550", - "weight": "10.000000", - "result": "error", - "ident": { - "text": "CCI-000770", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:159", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230297", - "title": "The auditd service must be running in RHEL 8.", - "desc": "Configuring RHEL 8 to implement organization-wide security implementation guides and security checklists ensures compliance with federal standards and establishes a common security baseline across the DoD that reflects the most restrictive security posture consistent with operational requirements.\n\nConfiguration settings are the set of parameters that can be changed in hardware, software, or firmware components of the system that affect the security posture and/or functionality of the system. Security-related parameters are those parameters impacting the security state of the system, including the parameters required to satisfy other security control requirements. Security-related parameters include, for example: registry settings; account, file, directory permission settings; and settings for functions, ports, protocols, services, and remote connections.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:160", - "label": "check" - }, - { - "data": "Start the auditd service, and enable the auditd service with the following commands:\n\n$ sudo systemctl start auditd.service\n\n$ sudo systemctl enable auditd.service", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Configuring RHEL 8 to implement organization-wide security implementation guides and security checklists ensures compliance with federal standards and establishes a common security baseline across the DoD that reflects the most restrictive security posture consistent with operational requirements.\\n\\nConfiguration settings are the set of parameters that can be changed in hardware, software, or firmware components of the system that affect the security posture and/or functionality of the system. Security-related parameters are those parameters impacting the security state of the system, including the parameters required to satisfy other security control requirements. Security-related parameters include, for example: registry settings; account, file, directory permission settings; and settings for functions, ports, protocols, services, and remote connections.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230297", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230297r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:160", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32941r567638_fix", - "fixtext_fixref": "F-32941r567638_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-010560", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230297r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-010560", - "weight": "10.000000", - "result": "pass", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:160", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230298", - "title": "The rsyslog service must be running in RHEL 8.", - "desc": "Configuring RHEL 8 to implement organization-wide security implementation guides and security checklists ensures compliance with federal standards and establishes a common security baseline across the DoD that reflects the most restrictive security posture consistent with operational requirements.\n\nConfiguration settings are the set of parameters that can be changed in hardware, software, or firmware components of the system that affect the security posture and/or functionality of the system. Security-related parameters are those parameters impacting the security state of the system, including the parameters required to satisfy other security control requirements. Security-related parameters include, for example: registry settings; account, file, directory permission settings; and settings for functions, ports, protocols, services, and remote connections.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:161", - "label": "check" - }, - { - "data": "Start the auditd service, and enable the rsyslog service with the following commands:\n\n$ sudo systemctl start rsyslog.service\n\n$ sudo systemctl enable rsyslog.service", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Configuring RHEL 8 to implement organization-wide security implementation guides and security checklists ensures compliance with federal standards and establishes a common security baseline across the DoD that reflects the most restrictive security posture consistent with operational requirements.\\n\\nConfiguration settings are the set of parameters that can be changed in hardware, software, or firmware components of the system that affect the security posture and/or functionality of the system. Security-related parameters are those parameters impacting the security state of the system, including the parameters required to satisfy other security control requirements. Security-related parameters include, for example: registry settings; account, file, directory permission settings; and settings for functions, ports, protocols, services, and remote connections.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230298", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230298r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:161", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32942r567641_fix", - "fixtext_fixref": "F-32942r567641_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-010561", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230298r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-010561", - "weight": "10.000000", - "result": "pass", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:161", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230300", - "title": "RHEL 8 must prevent files with the setuid and setgid bit set from being executed on the /boot directory.", - "desc": "The \"nosuid\" mount option causes the system not to execute \"setuid\" and \"setgid\" files with owner privileges. This option must be used for mounting any file system not containing approved \"setuid\" and \"setguid\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:162", - "label": "check" - }, - { - "data": "Configure the \"/etc/fstab\" to use the \"nosuid\" option on the /boot directory.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"The \\\"nosuid\\\" mount option causes the system not to execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230300", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230300r743959_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:162", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32944r567647_fix", - "fixtext_fixref": "F-32944r567647_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-010571", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230300r743959_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-010571", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:162", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230301", - "title": "RHEL 8 must prevent special devices on non-root local partitions.", - "desc": "The \"nodev\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access. The only legitimate location for device files is the /dev directory located on the root partition.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:163", - "label": "check" - }, - { - "data": "Configure the \"/etc/fstab\" to use the \"nodev\" option on all non-root local partitions.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"The \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access. The only legitimate location for device files is the /dev directory located on the root partition.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230301", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230301r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:163", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32945r567650_fix", - "fixtext_fixref": "F-32945r567650_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-010580", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230301r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-010580", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:163", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230306", - "title": "RHEL 8 must prevent code from being executed on file systems that are imported via Network File System (NFS).", - "desc": "The \"noexec\" mount option causes the system not to execute binary files. This option must be used for mounting any file system not containing approved binary as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:165", - "label": "check" - }, - { - "data": "Configure the \"/etc/fstab\" to use the \"noexec\" option on file systems that are being imported via NFS.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"The \\\"noexec\\\" mount option causes the system not to execute binary files. This option must be used for mounting any file system not containing approved binary as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230306", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230306r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:165", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32950r567665_fix", - "fixtext_fixref": "F-32950r567665_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-010630", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230306r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-010630", - "weight": "10.000000", - "result": "pass", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:165", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230307", - "title": "RHEL 8 must prevent special devices on file systems that are imported via Network File System (NFS).", - "desc": "The \"nodev\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:166", - "label": "check" - }, - { - "data": "Configure the \"/etc/fstab\" to use the \"nodev\" option on file systems that are being imported via NFS.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"The \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230307", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230307r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:166", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32951r567668_fix", - "fixtext_fixref": "F-32951r567668_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-010640", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230307r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-010640", - "weight": "10.000000", - "result": "pass", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:166", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230308", - "title": "RHEL 8 must prevent files with the setuid and setgid bit set from being executed on file systems that are imported via Network File System (NFS).", - "desc": "The \"nosuid\" mount option causes the system not to execute \"setuid\" and \"setgid\" files with owner privileges. This option must be used for mounting any file system not containing approved \"setuid\" and \"setguid\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:167", - "label": "check" - }, - { - "data": "Configure the \"/etc/fstab\" to use the \"nosuid\" option on file systems that are being imported via NFS.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"The \\\"nosuid\\\" mount option causes the system not to execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230308", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230308r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:167", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32952r567671_fix", - "fixtext_fixref": "F-32952r567671_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-010650", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230308r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-010650", - "weight": "10.000000", - "result": "pass", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:167", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230311", - "title": "RHEL 8 must disable the kernel.core_pattern.", - "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\n/etc/sysctl.d/*.conf\n/run/sysctl.d/*.conf\n/usr/local/lib/sysctl.d/*.conf\n/usr/lib/sysctl.d/*.conf\n/lib/sysctl.d/*.conf\n/etc/sysctl.conf\n\nBased on the information above, if a configuration file that begins with \"99-\" is created in the \"/etc/sysctl.d/\" directory, it will take precedence over any other configuration file on the system.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:168", - "label": "check" - }, - { - "data": "Configure RHEL 8 to disable storing core dumps.\n\nAdd or edit the following line in a system configuration file, which begins with \"99-\", in the \"/etc/sysctl.d/\" directory:\n\nkernel.core_pattern = |/bin/false\n\nThe system configuration files need to be reloaded for the changes to take effect. To reload the contents of the files, run the following command:\n\n$ sudo sysctl --system", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\\n/etc/sysctl.d/*.conf\\n/run/sysctl.d/*.conf\\n/usr/local/lib/sysctl.d/*.conf\\n/usr/lib/sysctl.d/*.conf\\n/lib/sysctl.d/*.conf\\n/etc/sysctl.conf\\n\\nBased on the information above, if a configuration file that begins with \\\"99-\\\" is created in the \\\"/etc/sysctl.d/\\\" directory, it will take precedence over any other configuration file on the system.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230311", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230311r792894_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:168", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32955r792893_fix", - "fixtext_fixref": "F-32955r792893_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-010671", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230311r792894_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-010671", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:168", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230313", - "title": "RHEL 8 must disable core dumps for all users.", - "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nA core dump includes a memory image taken at the time the operating system terminates an application. The memory image could contain sensitive data and is generally useful only for developers trying to debug problems.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:169", - "label": "check" - }, - { - "data": "Configure the operating system to disable core dumps for all users.\n\nAdd the following line to the top of the /etc/security/limits.conf or in a \".conf\" file defined in /etc/security/limits.d/:\n\n* hard core 0", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nA core dump includes a memory image taken at the time the operating system terminates an application. The memory image could contain sensitive data and is generally useful only for developers trying to debug problems.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230313", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230313r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:169", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32957r619861_fix", - "fixtext_fixref": "F-32957r619861_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-010673", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230313r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-010673", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:169", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230314", - "title": "RHEL 8 must disable storing core dumps.", - "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nA core dump includes a memory image taken at the time the operating system terminates an application. The memory image could contain sensitive data and is generally useful only for developers trying to debug problems.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:170", - "label": "check" - }, - { - "data": "Configure the operating system to disable storing core dumps for all users.\n\nAdd or modify the following line in /etc/systemd/coredump.conf:\n\nStorage=none", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nA core dump includes a memory image taken at the time the operating system terminates an application. The memory image could contain sensitive data and is generally useful only for developers trying to debug problems.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230314", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230314r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:170", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32958r567689_fix", - "fixtext_fixref": "F-32958r567689_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-010674", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230314r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-010674", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:170", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230315", - "title": "RHEL 8 must disable core dump backtraces.", - "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nA core dump includes a memory image taken at the time the operating system terminates an application. The memory image could contain sensitive data and is generally useful only for developers trying to debug problems.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:171", - "label": "check" - }, - { - "data": "Configure the operating system to disable core dump backtraces.\n\nAdd or modify the following line in /etc/systemd/coredump.conf:\n\nProcessSizeMax=0", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nA core dump includes a memory image taken at the time the operating system terminates an application. The memory image could contain sensitive data and is generally useful only for developers trying to debug problems.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230315", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230315r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:171", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32959r567692_fix", - "fixtext_fixref": "F-32959r567692_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-010675", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230315r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-010675", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:171", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230324", - "title": "All RHEL 8 local interactive user accounts must be assigned a home directory upon creation.", - "desc": "If local interactive users are not assigned a valid home directory, there is no place for the storage and control of files they should own.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:177", - "label": "check" - }, - { - "data": "Configure RHEL 8 to assign home directories to all new local interactive users by setting the \"CREATE_HOME\" parameter in \"/etc/login.defs\" to \"yes\" as follows.\n\nCREATE_HOME yes", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"If local interactive users are not assigned a valid home directory, there is no place for the storage and control of files they should own.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230324", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230324r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:177", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32968r567719_fix", - "fixtext_fixref": "F-32968r567719_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-010760", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230324r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-010760", - "weight": "10.000000", - "result": "pass", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:177", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230330", - "title": "RHEL 8 must not allow users to override SSH environment variables.", - "desc": "SSH environment options potentially allow users to bypass access restriction in some configurations.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:179", - "label": "check" - }, - { - "data": "Configure RHEL 8 to allow the SSH daemon to not allow unattended or automatic logon to the system.\n\nAdd or edit the following line in the \"/etc/ssh/sshd_config\" file:\n\nPermitUserEnvironment no\n\nThe SSH daemon must be restarted for the changes to take effect. To restart the SSH daemon, run the following command:\n\n$ sudo systemctl restart sshd.service", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"SSH environment options potentially allow users to bypass access restriction in some configurations.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230330", - "group_title": "SRG-OS-000480-GPOS-00229", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230330r646870_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:179", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32974r567737_fix", - "fixtext_fixref": "F-32974r567737_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-010830", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230330r646870_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-010830", - "weight": "10.000000", - "result": "error", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:179", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230332", - "title": "RHEL 8 must automatically lock an account when three unsuccessful logon attempts occur.", - "desc": "By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\n\nRHEL 8 can utilize the \"pam_faillock.so\" for this purpose. Note that manual changes to the listed files may be overwritten by the \"authselect\" program.\n\nFrom \"Pam_Faillock\" man pages: Note that the default directory that \"pam_faillock\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \"dir\" option.\n\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:180", - "label": "check" - }, - { - "data": "Configure the operating system to lock an account when three unsuccessful logon attempts occur.\n\nAdd/Modify the appropriate sections of the \"/etc/pam.d/system-auth\" and \"/etc/pam.d/password-auth\" files to match the following lines:\n\nauth required pam_faillock.so preauth dir=/var/log/faillock silent audit deny=3 even_deny_root fail_interval=900 unlock_time=0\nauth required pam_faillock.so authfail dir=/var/log/faillock unlock_time=0\naccount required pam_faillock.so\n\nThe \"sssd\" service must be restarted for the changes to take effect. To restart the \"sssd\" service, run the following command:\n\n$ sudo systemctl restart sssd.service", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000044" - ], - "nist": [ - "AC-7 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\\n\\nRHEL 8 can utilize the \\\"pam_faillock.so\\\" for this purpose. Note that manual changes to the listed files may be overwritten by the \\\"authselect\\\" program.\\n\\nFrom \\\"Pam_Faillock\\\" man pages: Note that the default directory that \\\"pam_faillock\\\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \\\"dir\\\" option.\\n\\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230332", - "group_title": "SRG-OS-000021-GPOS-00005", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230332r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:180", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32976r567743_fix", - "fixtext_fixref": "F-32976r567743_fix", - "ident": { - "text": "CCI-000044", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-020010", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230332r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-020010", - "weight": "10.000000", - "result": "pass", - "ident": { - "text": "CCI-000044", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:180", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230333", - "title": "RHEL 8 must automatically lock an account when three unsuccessful logon attempts occur.", - "desc": "By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\n\nIn RHEL 8.2 the \"/etc/security/faillock.conf\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \"local_users_only\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\n\nFrom \"faillock.conf\" man pages: Note that the default directory that \"pam_faillock\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \"dir\" option.\n\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:181", - "label": "check" - }, - { - "data": "Configure the operating system to lock an account when three unsuccessful logon attempts occur.\n\nAdd/Modify the \"/etc/security/faillock.conf\" file to match the following line:\n\ndeny = 3", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000044" - ], - "nist": [ - "AC-7 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\\n\\nIn RHEL 8.2 the \\\"/etc/security/faillock.conf\\\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \\\"local_users_only\\\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\\n\\nFrom \\\"faillock.conf\\\" man pages: Note that the default directory that \\\"pam_faillock\\\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \\\"dir\\\" option.\\n\\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230333", - "group_title": "SRG-OS-000021-GPOS-00005", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230333r743966_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:181", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32977r743965_fix", - "fixtext_fixref": "F-32977r743965_fix", - "ident": { - "text": "CCI-000044", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-020011", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230333r743966_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-020011", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000044", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:181", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230334", - "title": "RHEL 8 must automatically lock an account when three unsuccessful logon attempts occur during a 15-minute time period.", - "desc": "By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\n\nRHEL 8 can utilize the \"pam_faillock.so\" for this purpose. Note that manual changes to the listed files may be overwritten by the \"authselect\" program.\n\nFrom \"Pam_Faillock\" man pages: Note that the default directory that \"pam_faillock\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \"dir\" option.\n\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:182", - "label": "check" - }, - { - "data": "Configure the operating system to lock an account when three unsuccessful logon attempts occur in 15 minutes.\n\nAdd/Modify the appropriate sections of the \"/etc/pam.d/system-auth\" and \"/etc/pam.d/password-auth\" files to match the following lines:\n\nauth required pam_faillock.so preauth dir=/var/log/faillock silent audit deny=3 even_deny_root fail_interval=900 unlock_time=0\nauth required pam_faillock.so authfail dir=/var/log/faillock unlock_time=0\naccount required pam_faillock.so\n\nThe \"sssd\" service must be restarted for the changes to take effect. To restart the \"sssd\" service, run the following command:\n\n$ sudo systemctl restart sssd.service", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000044" - ], - "nist": [ - "AC-7 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\\n\\nRHEL 8 can utilize the \\\"pam_faillock.so\\\" for this purpose. Note that manual changes to the listed files may be overwritten by the \\\"authselect\\\" program.\\n\\nFrom \\\"Pam_Faillock\\\" man pages: Note that the default directory that \\\"pam_faillock\\\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \\\"dir\\\" option.\\n\\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230334", - "group_title": "SRG-OS-000021-GPOS-00005", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230334r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:182", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32978r567749_fix", - "fixtext_fixref": "F-32978r567749_fix", - "ident": { - "text": "CCI-000044", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-020012", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230334r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-020012", - "weight": "10.000000", - "result": "pass", - "ident": { - "text": "CCI-000044", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:182", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230335", - "title": "RHEL 8 must automatically lock an account when three unsuccessful logon attempts occur during a 15-minute time period.", - "desc": "By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\n\nIn RHEL 8.2 the \"/etc/security/faillock.conf\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \"local_users_only\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\n\nFrom \"faillock.conf\" man pages: Note that the default directory that \"pam_faillock\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \"dir\" option.\n\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:183", - "label": "check" - }, - { - "data": "Configure the operating system to lock an account when three unsuccessful logon attempts occur in 15 minutes.\n\nAdd/Modify the \"/etc/security/faillock.conf\" file to match the following line:\n\nfail_interval = 900", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000044" - ], - "nist": [ - "AC-7 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\\n\\nIn RHEL 8.2 the \\\"/etc/security/faillock.conf\\\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \\\"local_users_only\\\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\\n\\nFrom \\\"faillock.conf\\\" man pages: Note that the default directory that \\\"pam_faillock\\\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \\\"dir\\\" option.\\n\\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230335", - "group_title": "SRG-OS-000021-GPOS-00005", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230335r743969_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:183", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32979r743968_fix", - "fixtext_fixref": "F-32979r743968_fix", - "ident": { - "text": "CCI-000044", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-020013", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230335r743969_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-020013", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000044", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:183", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230336", - "title": "RHEL 8 must automatically lock an account until the locked account is released by an administrator when three unsuccessful logon attempts occur during a 15-minute time period.", - "desc": "By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\n\nRHEL 8 can utilize the \"pam_faillock.so\" for this purpose. Note that manual changes to the listed files may be overwritten by the \"authselect\" program.\n\nFrom \"Pam_Faillock\" man pages: Note that the default directory that \"pam_faillock\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \"dir\" option.\n\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:184", - "label": "check" - }, - { - "data": "Configure the operating system to lock an account until released by an administrator when three unsuccessful logon attempts occur in 15 minutes.\n\nAdd/Modify the appropriate sections of the \"/etc/pam.d/system-auth\" and \"/etc/pam.d/password-auth\" files to match the following lines:\n\nauth required pam_faillock.so preauth dir=/var/log/faillock silent audit deny=3 even_deny_root fail_interval=900 unlock_time=0\nauth required pam_faillock.so authfail dir=/var/log/faillock unlock_time=0\naccount required pam_faillock.so\n\nThe \"sssd\" service must be restarted for the changes to take effect. To restart the \"sssd\" service, run the following command:\n\n$ sudo systemctl restart sssd.service", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000044" - ], - "nist": [ - "AC-7 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\\n\\nRHEL 8 can utilize the \\\"pam_faillock.so\\\" for this purpose. Note that manual changes to the listed files may be overwritten by the \\\"authselect\\\" program.\\n\\nFrom \\\"Pam_Faillock\\\" man pages: Note that the default directory that \\\"pam_faillock\\\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \\\"dir\\\" option.\\n\\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230336", - "group_title": "SRG-OS-000021-GPOS-00005", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230336r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:184", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32980r567755_fix", - "fixtext_fixref": "F-32980r567755_fix", - "ident": { - "text": "CCI-000044", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-020014", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230336r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-020014", - "weight": "10.000000", - "result": "pass", - "ident": { - "text": "CCI-000044", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:184", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230337", - "title": "RHEL 8 must automatically lock an account until the locked account is released by an administrator when three unsuccessful logon attempts occur during a 15-minute time period.", - "desc": "By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\n\nIn RHEL 8.2 the \"/etc/security/faillock.conf\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \"local_users_only\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\n\nFrom \"faillock.conf\" man pages: Note that the default directory that \"pam_faillock\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \"dir\" option.\n\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:185", - "label": "check" - }, - { - "data": "Configure the operating system to lock an account until released by an administrator when three unsuccessful logon attempts occur in 15 minutes.\n\nAdd/Modify the \"/etc/security/faillock.conf\" file to match the following line:\n\nunlock_time = 0", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000044" - ], - "nist": [ - "AC-7 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\\n\\nIn RHEL 8.2 the \\\"/etc/security/faillock.conf\\\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \\\"local_users_only\\\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\\n\\nFrom \\\"faillock.conf\\\" man pages: Note that the default directory that \\\"pam_faillock\\\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \\\"dir\\\" option.\\n\\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230337", - "group_title": "SRG-OS-000021-GPOS-00005", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230337r743972_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:185", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32981r743971_fix", - "fixtext_fixref": "F-32981r743971_fix", - "ident": { - "text": "CCI-000044", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-020015", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230337r743972_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-020015", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000044", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:185", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230340", - "title": "RHEL 8 must prevent system messages from being presented when three unsuccessful logon attempts occur.", - "desc": "By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\n\nRHEL 8 can utilize the \"pam_faillock.so\" for this purpose. Note that manual changes to the listed files may be overwritten by the \"authselect\" program.\n\nFrom \"Pam_Faillock\" man pages: Note that the default directory that \"pam_faillock\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \"dir\" option.\n\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:186", - "label": "check" - }, - { - "data": "Configure the operating system to prevent informative messages from being presented at logon attempts.\n\nAdd/Modify the appropriate sections of the \"/etc/pam.d/system-auth\" and \"/etc/pam.d/password-auth\" files to match the following lines:\n\nauth required pam_faillock.so preauth dir=/var/log/faillock silent audit deny=3 even_deny_root fail_interval=900 unlock_time=0\nauth required pam_faillock.so authfail dir=/var/log/faillock unlock_time=0\naccount required pam_faillock.so\n\nThe \"sssd\" service must be restarted for the changes to take effect. To restart the \"sssd\" service, run the following command:\n\n$ sudo systemctl restart sssd.service", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000044" - ], - "nist": [ - "AC-7 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\\n\\nRHEL 8 can utilize the \\\"pam_faillock.so\\\" for this purpose. Note that manual changes to the listed files may be overwritten by the \\\"authselect\\\" program.\\n\\nFrom \\\"Pam_Faillock\\\" man pages: Note that the default directory that \\\"pam_faillock\\\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \\\"dir\\\" option.\\n\\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230340", - "group_title": "SRG-OS-000021-GPOS-00005", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230340r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:186", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32984r567767_fix", - "fixtext_fixref": "F-32984r567767_fix", - "ident": { - "text": "CCI-000044", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-020018", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230340r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-020018", - "weight": "10.000000", - "result": "pass", - "ident": { - "text": "CCI-000044", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:186", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230341", - "title": "RHEL 8 must prevent system messages from being presented when three unsuccessful logon attempts occur.", - "desc": "By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\n\nIn RHEL 8.2 the \"/etc/security/faillock.conf\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \"local_users_only\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\n\nFrom \"faillock.conf\" man pages: Note that the default directory that \"pam_faillock\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \"dir\" option.\n\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:187", - "label": "check" - }, - { - "data": "Configure the operating system to prevent informative messages from being presented at logon attempts.\n\nAdd/Modify the \"/etc/security/faillock.conf\" file to match the following line:\n\nsilent", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000044" - ], - "nist": [ - "AC-7 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\\n\\nIn RHEL 8.2 the \\\"/etc/security/faillock.conf\\\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \\\"local_users_only\\\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\\n\\nFrom \\\"faillock.conf\\\" man pages: Note that the default directory that \\\"pam_faillock\\\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \\\"dir\\\" option.\\n\\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230341", - "group_title": "SRG-OS-000021-GPOS-00005", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230341r743978_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:187", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32985r743977_fix", - "fixtext_fixref": "F-32985r743977_fix", - "ident": { - "text": "CCI-000044", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-020019", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230341r743978_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-020019", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000044", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:187", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230342", - "title": "RHEL 8 must log user name information when unsuccessful logon attempts occur.", - "desc": "By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\n\nRHEL 8 can utilize the \"pam_faillock.so\" for this purpose. Note that manual changes to the listed files may be overwritten by the \"authselect\" program.\n\nFrom \"Pam_Faillock\" man pages: Note that the default directory that \"pam_faillock\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \"dir\" option.\n\nIn RHEL 8.2 the \"/etc/security/faillock.conf\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \"local_users_only\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\n\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:188", - "label": "check" - }, - { - "data": "Configure the operating system to log user name information when unsuccessful logon attempts occur.\n\nAdd/Modify the appropriate sections of the \"/etc/pam.d/system-auth\" and \"/etc/pam.d/password-auth\" files to match the following lines:\n\nauth required pam_faillock.so preauth dir=/var/log/faillock silent audit deny=3 even_deny_root fail_interval=900 unlock_time=0\nauth required pam_faillock.so authfail dir=/var/log/faillock unlock_time=0\naccount required pam_faillock.so\n\nThe \"sssd\" service must be restarted for the changes to take effect. To restart the \"sssd\" service, run the following command:\n\n$ sudo systemctl restart sssd.service", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000044" - ], - "nist": [ - "AC-7 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\\n\\nRHEL 8 can utilize the \\\"pam_faillock.so\\\" for this purpose. Note that manual changes to the listed files may be overwritten by the \\\"authselect\\\" program.\\n\\nFrom \\\"Pam_Faillock\\\" man pages: Note that the default directory that \\\"pam_faillock\\\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \\\"dir\\\" option.\\n\\nIn RHEL 8.2 the \\\"/etc/security/faillock.conf\\\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \\\"local_users_only\\\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\\n\\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230342", - "group_title": "SRG-OS-000021-GPOS-00005", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230342r646872_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:188", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32986r567773_fix", - "fixtext_fixref": "F-32986r567773_fix", - "ident": { - "text": "CCI-000044", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-020020", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230342r646872_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-020020", - "weight": "10.000000", - "result": "pass", - "ident": { - "text": "CCI-000044", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:188", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230343", - "title": "RHEL 8 must log user name information when unsuccessful logon attempts occur.", - "desc": "By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\n\nIn RHEL 8.2 the \"/etc/security/faillock.conf\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \"local_users_only\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\n\nFrom \"faillock.conf\" man pages: Note that the default directory that \"pam_faillock\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \"dir\" option.\n\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:189", - "label": "check" - }, - { - "data": "Configure the operating system to log user name information when unsuccessful logon attempts occur.\n\nAdd/Modify the \"/etc/security/faillock.conf\" file to match the following line:\n\naudit", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000044" - ], - "nist": [ - "AC-7 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\\n\\nIn RHEL 8.2 the \\\"/etc/security/faillock.conf\\\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \\\"local_users_only\\\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\\n\\nFrom \\\"faillock.conf\\\" man pages: Note that the default directory that \\\"pam_faillock\\\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \\\"dir\\\" option.\\n\\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230343", - "group_title": "SRG-OS-000021-GPOS-00005", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230343r743981_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:189", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32987r743980_fix", - "fixtext_fixref": "F-32987r743980_fix", - "ident": { - "text": "CCI-000044", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-020021", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230343r743981_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-020021", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000044", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:189", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230344", - "title": "RHEL 8 must include root when automatically locking an account until the locked account is released by an administrator when three unsuccessful logon attempts occur during a 15-minute time period.", - "desc": "By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\n\nRHEL 8 can utilize the \"pam_faillock.so\" for this purpose. Note that manual changes to the listed files may be overwritten by the \"authselect\" program.\n\nFrom \"Pam_Faillock\" man pages: Note that the default directory that \"pam_faillock\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \"dir\" option.\n\nIn RHEL 8.2 the \"/etc/security/faillock.conf\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \"local_users_only\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\n\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:190", - "label": "check" - }, - { - "data": "Configure the operating system to include root when locking an account after three unsuccessful logon attempts occur in 15 minutes.\n\nAdd/Modify the appropriate sections of the \"/etc/pam.d/system-auth\" and \"/etc/pam.d/password-auth\" files to match the following lines:\n\nauth required pam_faillock.so preauth dir=/var/log/faillock silent audit deny=3 even_deny_root fail_interval=900 unlock_time=0\nauth required pam_faillock.so authfail dir=/var/log/faillock unlock_time=0\naccount required pam_faillock.so\n\nThe \"sssd\" service must be restarted for the changes to take effect. To restart the \"sssd\" service, run the following command:\n\n$ sudo systemctl restart sssd.service", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000044" - ], - "nist": [ - "AC-7 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\\n\\nRHEL 8 can utilize the \\\"pam_faillock.so\\\" for this purpose. Note that manual changes to the listed files may be overwritten by the \\\"authselect\\\" program.\\n\\nFrom \\\"Pam_Faillock\\\" man pages: Note that the default directory that \\\"pam_faillock\\\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \\\"dir\\\" option.\\n\\nIn RHEL 8.2 the \\\"/etc/security/faillock.conf\\\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \\\"local_users_only\\\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\\n\\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230344", - "group_title": "SRG-OS-000021-GPOS-00005", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230344r646874_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:190", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32988r567779_fix", - "fixtext_fixref": "F-32988r567779_fix", - "ident": { - "text": "CCI-000044", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-020022", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230344r646874_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-020022", - "weight": "10.000000", - "result": "pass", - "ident": { - "text": "CCI-000044", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:190", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230345", - "title": "RHEL 8 must include root when automatically locking an account until the locked account is released by an administrator when three unsuccessful logon attempts occur during a 15-minute time period.", - "desc": "By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\n\nIn RHEL 8.2 the \"/etc/security/faillock.conf\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \"local_users_only\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\n\nFrom \"faillock.conf\" man pages: Note that the default directory that \"pam_faillock\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \"dir\" option.\n\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:191", - "label": "check" - }, - { - "data": "Configure the operating system to include root when locking an account after three unsuccessful logon attempts occur in 15 minutes.\n\nAdd/Modify the \"/etc/security/faillock.conf\" file to match the following line:\n\neven_deny_root", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000044" - ], - "nist": [ - "AC-7 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\\n\\nIn RHEL 8.2 the \\\"/etc/security/faillock.conf\\\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \\\"local_users_only\\\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\\n\\nFrom \\\"faillock.conf\\\" man pages: Note that the default directory that \\\"pam_faillock\\\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \\\"dir\\\" option.\\n\\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230345", - "group_title": "SRG-OS-000021-GPOS-00005", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230345r743984_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:191", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32989r743983_fix", - "fixtext_fixref": "F-32989r743983_fix", - "ident": { - "text": "CCI-000044", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-020023", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230345r743984_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-020023", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000044", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:191", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230346", - "title": "RHEL 8 must limit the number of concurrent sessions to ten for all accounts and/or account types.", - "desc": "Operating system management includes the ability to control the number of users and user sessions that utilize an operating system. Limiting the number of allowed users and sessions per user is helpful in reducing the risks related to DoS attacks.\n\nThis requirement addresses concurrent sessions for information system accounts and does not address concurrent sessions by single users via multiple system accounts. The maximum number of concurrent sessions should be defined based on mission needs and the operational environment for each system.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:192", - "label": "check" - }, - { - "data": "Configure the operating system to limit the number of concurrent sessions to \"10\" for all accounts and/or account types.\n\nAdd the following line to the top of the /etc/security/limits.conf or in a \".conf\" file defined in /etc/security/limits.d/:\n\n* hard maxlogins 10", - "label": "fix" - } - ], - "impact": 0.3, - "refs": [], - "tags": { - "cci": [ - "CCI-000054" - ], - "nist": [ - "AC-10" - ], - "severity": "low", - "description": "{\"VulnDiscussion\":\"Operating system management includes the ability to control the number of users and user sessions that utilize an operating system. Limiting the number of allowed users and sessions per user is helpful in reducing the risks related to DoS attacks.\\n\\nThis requirement addresses concurrent sessions for information system accounts and does not address concurrent sessions by single users via multiple system accounts. The maximum number of concurrent sessions should be defined based on mission needs and the operational environment for each system.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230346", - "group_title": "SRG-OS-000027-GPOS-00008", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230346r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:192", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32990r619863_fix", - "fixtext_fixref": "F-32990r619863_fix", - "ident": { - "text": "CCI-000054", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-020024", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230346r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "low", - "version": "RHEL-08-020024", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000054", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:192", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230348", - "title": "RHEL 8 must enable a user session lock until that user re-establishes access using established identification and authentication procedures for command line sessions.", - "desc": "A session lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not want to log out because of the temporary nature of the absence.\n\nThe session lock is implemented at the point where session activity can be determined. Rather than be forced to wait for a period of time to expire before the user session can be locked, RHEL 8 needs to provide users with the ability to manually invoke a session lock so users can secure their session if it is necessary to temporarily vacate the immediate physical vicinity.\n\nTmux is a terminal multiplexer that enables a number of terminals to be created, accessed, and controlled from a single screen. Red Hat endorses tmux as the recommended session controlling package.\n\nSatisfies: SRG-OS-000028-GPOS-00009, SRG-OS-000030-GPOS-00011", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:193", - "label": "check" - }, - { - "data": "Configure the operating system to enable a user to initiate a session lock via tmux.\n\nCreate a global configuration file \"/etc/tmux.conf\" and add the following line:\n\nset -g lock-command vlock", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000056" - ], - "nist": [ - "AC-11 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"A session lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not want to log out because of the temporary nature of the absence.\\n\\nThe session lock is implemented at the point where session activity can be determined. Rather than be forced to wait for a period of time to expire before the user session can be locked, RHEL 8 needs to provide users with the ability to manually invoke a session lock so users can secure their session if it is necessary to temporarily vacate the immediate physical vicinity.\\n\\nTmux is a terminal multiplexer that enables a number of terminals to be created, accessed, and controlled from a single screen. Red Hat endorses tmux as the recommended session controlling package.\\n\\nSatisfies: SRG-OS-000028-GPOS-00009, SRG-OS-000030-GPOS-00011\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230348", - "group_title": "SRG-OS-000028-GPOS-00009", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230348r743987_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:193", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32992r743986_fix", - "fixtext_fixref": "F-32992r743986_fix", - "ident": { - "text": "CCI-000056", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-020040", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230348r743987_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-020040", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000056", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:193", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230349", - "title": "RHEL 8 must ensure session control is automatically started at shell initialization.", - "desc": "A session lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not want to log out because of the temporary nature of the absence.\n\nThe session lock is implemented at the point where session activity can be determined. Rather than be forced to wait for a period of time to expire before the user session can be locked, RHEL 8 needs to provide users with the ability to manually invoke a session lock so users can secure their session if it is necessary to temporarily vacate the immediate physical vicinity.\n\nTmux is a terminal multiplexer that enables a number of terminals to be created, accessed, and controlled from a single screen. Red Hat endorses tmux as the recommended session controlling package.\n\nSatisfies: SRG-OS-000028-GPOS-00009, SRG-OS-000030-GPOS-00011", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:194", - "label": "check" - }, - { - "data": "Configure the operating system to initialize the tmux terminal multiplexer as each shell is called by adding the following line to the end of the \"/etc/bashrc\" configuration file:\n\n[ -n \"$PS1\" -a -z \"$TMUX\" ] && exec tmux\n\nThis setting will take effect at next logon.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000056" - ], - "nist": [ - "AC-11 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"A session lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not want to log out because of the temporary nature of the absence.\\n\\nThe session lock is implemented at the point where session activity can be determined. Rather than be forced to wait for a period of time to expire before the user session can be locked, RHEL 8 needs to provide users with the ability to manually invoke a session lock so users can secure their session if it is necessary to temporarily vacate the immediate physical vicinity.\\n\\nTmux is a terminal multiplexer that enables a number of terminals to be created, accessed, and controlled from a single screen. Red Hat endorses tmux as the recommended session controlling package.\\n\\nSatisfies: SRG-OS-000028-GPOS-00009, SRG-OS-000030-GPOS-00011\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230349", - "group_title": "SRG-OS-000028-GPOS-00009", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230349r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:194", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32993r567794_fix", - "fixtext_fixref": "F-32993r567794_fix", - "ident": { - "text": "CCI-000056", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-020041", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230349r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-020041", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000056", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:194", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230350", - "title": "RHEL 8 must prevent users from disabling session control mechanisms.", - "desc": "A session lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not want to log out because of the temporary nature of the absence.\n\nThe session lock is implemented at the point where session activity can be determined. Rather than be forced to wait for a period of time to expire before the user session can be locked, RHEL 8 needs to provide users with the ability to manually invoke a session lock so users can secure their session if it is necessary to temporarily vacate the immediate physical vicinity.\n\nTmux is a terminal multiplexer that enables a number of terminals to be created, accessed, and controlled from a single screen. Red Hat endorses tmux as the recommended session controlling package.\n\nSatisfies: SRG-OS-000028-GPOS-00009, SRG-OS-000030-GPOS-00011", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:195", - "label": "check" - }, - { - "data": "Configure the operating system to prevent users from disabling the tmux terminal multiplexer by editing the \"/etc/shells\" configuration file to remove any instances of tmux.", - "label": "fix" - } - ], - "impact": 0.3, - "refs": [], - "tags": { - "cci": [ - "CCI-000056" - ], - "nist": [ - "AC-11 b" - ], - "severity": "low", - "description": "{\"VulnDiscussion\":\"A session lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not want to log out because of the temporary nature of the absence.\\n\\nThe session lock is implemented at the point where session activity can be determined. Rather than be forced to wait for a period of time to expire before the user session can be locked, RHEL 8 needs to provide users with the ability to manually invoke a session lock so users can secure their session if it is necessary to temporarily vacate the immediate physical vicinity.\\n\\nTmux is a terminal multiplexer that enables a number of terminals to be created, accessed, and controlled from a single screen. Red Hat endorses tmux as the recommended session controlling package.\\n\\nSatisfies: SRG-OS-000028-GPOS-00009, SRG-OS-000030-GPOS-00011\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230350", - "group_title": "SRG-OS-000028-GPOS-00009", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230350r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:195", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32994r567797_fix", - "fixtext_fixref": "F-32994r567797_fix", - "ident": { - "text": "CCI-000056", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-020042", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230350r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "low", - "version": "RHEL-08-020042", - "weight": "10.000000", - "result": "pass", - "ident": { - "text": "CCI-000056", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:195", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230356", - "title": "RHEL 8 must ensure a password complexity module is enabled.", - "desc": "Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. \"pwquality\" enforces complex password construction configuration and has the ability to limit brute-force attacks on the system.\n\nRHEL 8 utilizes \"pwquality\" as a mechanism to enforce password complexity. This is set in both:\n/etc/pam.d/password-auth\n/etc/pam.d/system-auth\n\nNote the value of \"retry\" set in these configuration files should be between \"1\" and \"3\". Manual changes to the listed files may be overwritten by the \"authselect\" program.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:196", - "label": "check" - }, - { - "data": "Configure the operating system to use \"pwquality\" to enforce password complexity rules.\n\nAdd the following line to both \"/etc/pam.d/password-auth\" and \"/etc/pam.d/system-auth\" (or modify the line to have the required value):\n\npassword required pam_pwquality.so retry=3", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000192" - ], - "nist": [ - "IA-5 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. \\\"pwquality\\\" enforces complex password construction configuration and has the ability to limit brute-force attacks on the system.\\n\\nRHEL 8 utilizes \\\"pwquality\\\" as a mechanism to enforce password complexity. This is set in both:\\n/etc/pam.d/password-auth\\n/etc/pam.d/system-auth\\n\\nNote the value of \\\"retry\\\" set in these configuration files should be between \\\"1\\\" and \\\"3\\\". Manual changes to the listed files may be overwritten by the \\\"authselect\\\" program.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230356", - "group_title": "SRG-OS-000069-GPOS-00037", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230356r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:196", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33000r567815_fix", - "fixtext_fixref": "F-33000r567815_fix", - "ident": { - "text": "CCI-000192", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-020100", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230356r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-020100", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000192", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:196", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230357", - "title": "RHEL 8 must enforce password complexity by requiring that at least one uppercase character be used.", - "desc": "Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\n\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\n\nRHEL 8 utilizes pwquality as a mechanism to enforce password complexity. Note that in order to require uppercase characters, without degrading the \"minlen\" value, the credit value must be expressed as a negative number in \"/etc/security/pwquality.conf\".", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:197", - "label": "check" - }, - { - "data": "Configure the operating system to enforce password complexity by requiring that at least one uppercase character be used by setting the \"ucredit\" option.\n\nAdd the following line to /etc/security/pwquality.conf (or modify the line to have the required value):\n\nucredit = -1", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000192" - ], - "nist": [ - "IA-5 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\\n\\nRHEL 8 utilizes pwquality as a mechanism to enforce password complexity. Note that in order to require uppercase characters, without degrading the \\\"minlen\\\" value, the credit value must be expressed as a negative number in \\\"/etc/security/pwquality.conf\\\".\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230357", - "group_title": "SRG-OS-000069-GPOS-00037", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230357r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:197", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33001r567818_fix", - "fixtext_fixref": "F-33001r567818_fix", - "ident": { - "text": "CCI-000192", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-020110", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230357r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-020110", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000192", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:197", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230358", - "title": "RHEL 8 must enforce password complexity by requiring that at least one lower-case character be used.", - "desc": "Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\n\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\n\nRHEL 8 utilizes pwquality as a mechanism to enforce password complexity. Note that in order to require lower-case characters without degrading the \"minlen\" value, the credit value must be expressed as a negative number in \"/etc/security/pwquality.conf\".", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:198", - "label": "check" - }, - { - "data": "Configure the operating system to enforce password complexity by requiring that at least one lower-case character be used by setting the \"lcredit\" option.\n\nAdd the following line to /etc/security/pwquality.conf (or modify the line to have the required value):\n\nlcredit = -1", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000193" - ], - "nist": [ - "IA-5 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\\n\\nRHEL 8 utilizes pwquality as a mechanism to enforce password complexity. Note that in order to require lower-case characters without degrading the \\\"minlen\\\" value, the credit value must be expressed as a negative number in \\\"/etc/security/pwquality.conf\\\".\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230358", - "group_title": "SRG-OS-000070-GPOS-00038", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230358r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:198", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33002r567821_fix", - "fixtext_fixref": "F-33002r567821_fix", - "ident": { - "text": "CCI-000193", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-020120", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230358r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-020120", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000193", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:198", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230359", - "title": "RHEL 8 must enforce password complexity by requiring that at least one numeric character be used.", - "desc": "Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\n\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\n\nRHEL 8 utilizes \"pwquality\" as a mechanism to enforce password complexity. Note that in order to require numeric characters, without degrading the minlen value, the credit value must be expressed as a negative number in \"/etc/security/pwquality.conf\".", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:199", - "label": "check" - }, - { - "data": "Configure the operating system to enforce password complexity by requiring that at least one numeric character be used by setting the \"dcredit\" option.\n\nAdd the following line to /etc/security/pwquality.conf (or modify the line to have the required value):\n\ndcredit = -1", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000194" - ], - "nist": [ - "IA-5 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\\n\\nRHEL 8 utilizes \\\"pwquality\\\" as a mechanism to enforce password complexity. Note that in order to require numeric characters, without degrading the minlen value, the credit value must be expressed as a negative number in \\\"/etc/security/pwquality.conf\\\".\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230359", - "group_title": "SRG-OS-000071-GPOS-00039", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230359r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:199", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33003r567824_fix", - "fixtext_fixref": "F-33003r567824_fix", - "ident": { - "text": "CCI-000194", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-020130", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230359r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-020130", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000194", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:199", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230360", - "title": "RHEL 8 must require the maximum number of repeating characters of the same character class be limited to four when passwords are changed.", - "desc": "Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\n\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\n\nRHEL 8 utilizes \"pwquality\" as a mechanism to enforce password complexity. The \"maxclassrepeat\" option sets the maximum number of allowed same consecutive characters in the same class in the new password.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:200", - "label": "check" - }, - { - "data": "Configure the operating system to require the change of the number of repeating characters of the same character class when passwords are changed by setting the \"maxclassrepeat\" option.\n\nAdd the following line to \"/etc/security/pwquality.conf\" conf (or modify the line to have the required value):\n\nmaxclassrepeat = 4", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000195" - ], - "nist": [ - "IA-5 (1) (b)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\\n\\nRHEL 8 utilizes \\\"pwquality\\\" as a mechanism to enforce password complexity. The \\\"maxclassrepeat\\\" option sets the maximum number of allowed same consecutive characters in the same class in the new password.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230360", - "group_title": "SRG-OS-000072-GPOS-00040", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230360r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:200", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33004r567827_fix", - "fixtext_fixref": "F-33004r567827_fix", - "ident": { - "text": "CCI-000195", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-020140", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230360r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-020140", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000195", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:200", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230361", - "title": "RHEL 8 must require the maximum number of repeating characters be limited to three when passwords are changed.", - "desc": "Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\n\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\n\nRHEL 8 utilizes \"pwquality\" as a mechanism to enforce password complexity. The \"maxrepeat\" option sets the maximum number of allowed same consecutive characters in a new password.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:201", - "label": "check" - }, - { - "data": "Configure the operating system to require the change of the number of repeating consecutive characters when passwords are changed by setting the \"maxrepeat\" option.\n\nAdd the following line to \"/etc/security/pwquality.conf conf\" (or modify the line to have the required value):\n\nmaxrepeat = 3", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000195" - ], - "nist": [ - "IA-5 (1) (b)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\\n\\nRHEL 8 utilizes \\\"pwquality\\\" as a mechanism to enforce password complexity. The \\\"maxrepeat\\\" option sets the maximum number of allowed same consecutive characters in a new password.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230361", - "group_title": "SRG-OS-000072-GPOS-00040", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230361r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:201", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33005r567830_fix", - "fixtext_fixref": "F-33005r567830_fix", - "ident": { - "text": "CCI-000195", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-020150", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230361r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-020150", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000195", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:201", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230362", - "title": "RHEL 8 must require the change of at least four character classes when passwords are changed.", - "desc": "Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\n\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\n\nRHEL 8 utilizes \"pwquality\" as a mechanism to enforce password complexity. The \"minclass\" option sets the minimum number of required classes of characters for the new password (digits, uppercase, lowercase, others).", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:202", - "label": "check" - }, - { - "data": "Configure the operating system to require the change of at least four character classes when passwords are changed by setting the \"minclass\" option.\n\nAdd the following line to \"/etc/security/pwquality.conf conf\" (or modify the line to have the required value):\n\nminclass = 4", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000195" - ], - "nist": [ - "IA-5 (1) (b)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\\n\\nRHEL 8 utilizes \\\"pwquality\\\" as a mechanism to enforce password complexity. The \\\"minclass\\\" option sets the minimum number of required classes of characters for the new password (digits, uppercase, lowercase, others).\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230362", - "group_title": "SRG-OS-000072-GPOS-00040", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230362r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:202", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33006r567833_fix", - "fixtext_fixref": "F-33006r567833_fix", - "ident": { - "text": "CCI-000195", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-020160", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230362r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-020160", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000195", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:202", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230363", - "title": "RHEL 8 must require the change of at least 8 characters when passwords are changed.", - "desc": "Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\n\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\n\nRHEL 8 utilizes \"pwquality\" as a mechanism to enforce password complexity. The \"difok\" option sets the number of characters in a password that must not be present in the old password.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:203", - "label": "check" - }, - { - "data": "Configure the operating system to require the change of at least eight of the total number of characters when passwords are changed by setting the \"difok\" option.\n\nAdd the following line to \"/etc/security/pwquality.conf\" (or modify the line to have the required value):\n\ndifok = 8", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000195" - ], - "nist": [ - "IA-5 (1) (b)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\\n\\nRHEL 8 utilizes \\\"pwquality\\\" as a mechanism to enforce password complexity. The \\\"difok\\\" option sets the number of characters in a password that must not be present in the old password.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230363", - "group_title": "SRG-OS-000072-GPOS-00040", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230363r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:203", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33007r567836_fix", - "fixtext_fixref": "F-33007r567836_fix", - "ident": { - "text": "CCI-000195", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-020170", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230363r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-020170", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000195", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:203", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230364", - "title": "RHEL 8 passwords must have a 24 hours/1 day minimum password lifetime restriction in /etc/shadow.", - "desc": "Enforcing a minimum password lifetime helps to prevent repeated password changes to defeat the password reuse or history enforcement requirement. If users are allowed to immediately and continually change their password, the password could be repeatedly changed in a short period of time to defeat the organization's policy regarding password reuse.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:204", - "label": "check" - }, - { - "data": "Configure non-compliant accounts to enforce a 24 hours/1 day minimum password lifetime:\n\n$ sudo chage -m 1 [user]", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000198" - ], - "nist": [ - "IA-5 (1) (d)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Enforcing a minimum password lifetime helps to prevent repeated password changes to defeat the password reuse or history enforcement requirement. If users are allowed to immediately and continually change their password, the password could be repeatedly changed in a short period of time to defeat the organization's policy regarding password reuse.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230364", - "group_title": "SRG-OS-000075-GPOS-00043", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230364r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:204", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33008r567839_fix", - "fixtext_fixref": "F-33008r567839_fix", - "ident": { - "text": "CCI-000198", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-020180", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230364r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-020180", - "weight": "10.000000", - "result": "error", - "ident": { - "text": "CCI-000198", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:204", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230365", - "title": "RHEL 8 passwords for new users or password changes must have a 24 hours/1 day minimum password lifetime restriction in /etc/logins.def.", - "desc": "Enforcing a minimum password lifetime helps to prevent repeated password changes to defeat the password reuse or history enforcement requirement. If users are allowed to immediately and continually change their password, the password could be repeatedly changed in a short period of time to defeat the organization's policy regarding password reuse.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:205", - "label": "check" - }, - { - "data": "Configure the operating system to enforce 24 hours/1 day as the minimum password lifetime.\n\nAdd the following line in \"/etc/login.defs\" (or modify the line to have the required value):\n\nPASS_MIN_DAYS 1", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000198" - ], - "nist": [ - "IA-5 (1) (d)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Enforcing a minimum password lifetime helps to prevent repeated password changes to defeat the password reuse or history enforcement requirement. If users are allowed to immediately and continually change their password, the password could be repeatedly changed in a short period of time to defeat the organization's policy regarding password reuse.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230365", - "group_title": "SRG-OS-000075-GPOS-00043", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230365r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:205", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33009r567842_fix", - "fixtext_fixref": "F-33009r567842_fix", - "ident": { - "text": "CCI-000198", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-020190", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230365r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-020190", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000198", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:205", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230366", - "title": "RHEL 8 user account passwords must have a 60-day maximum password lifetime restriction.", - "desc": "Any password, no matter how complex, can eventually be cracked. Therefore, passwords need to be changed periodically. If RHEL 8 does not limit the lifetime of passwords and force users to change their passwords, there is the risk that RHEL 8 passwords could be compromised.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:206", - "label": "check" - }, - { - "data": "Configure RHEL 8 to enforce a 60-day maximum password lifetime.\n\nAdd, or modify the following line in the \"/etc/login.defs\" file:\n\nPASS_MAX_DAYS 60", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000199" - ], - "nist": [ - "IA-5 (1) (d)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Any password, no matter how complex, can eventually be cracked. Therefore, passwords need to be changed periodically. If RHEL 8 does not limit the lifetime of passwords and force users to change their passwords, there is the risk that RHEL 8 passwords could be compromised.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230366", - "group_title": "SRG-OS-000076-GPOS-00044", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230366r646878_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:206", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33010r567845_fix", - "fixtext_fixref": "F-33010r567845_fix", - "ident": { - "text": "CCI-000199", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-020200", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230366r646878_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-020200", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000199", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:206", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230367", - "title": "RHEL 8 user account passwords must be configured so that existing passwords are restricted to a 60-day maximum lifetime.", - "desc": "Any password, no matter how complex, can eventually be cracked. Therefore, passwords need to be changed periodically. If RHEL 8 does not limit the lifetime of passwords and force users to change their passwords, there is the risk that RHEL 8 passwords could be compromised.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:207", - "label": "check" - }, - { - "data": "Configure non-compliant accounts to enforce a 60-day maximum password lifetime restriction.\n\n$ sudo chage -M 60 [user]", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000199" - ], - "nist": [ - "IA-5 (1) (d)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Any password, no matter how complex, can eventually be cracked. Therefore, passwords need to be changed periodically. If RHEL 8 does not limit the lifetime of passwords and force users to change their passwords, there is the risk that RHEL 8 passwords could be compromised.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230367", - "group_title": "SRG-OS-000076-GPOS-00044", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230367r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:207", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33011r567848_fix", - "fixtext_fixref": "F-33011r567848_fix", - "ident": { - "text": "CCI-000199", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-020210", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230367r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-020210", - "weight": "10.000000", - "result": "error", - "ident": { - "text": "CCI-000199", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:207", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230368", - "title": "RHEL 8 passwords must be prohibited from reuse for a minimum of five generations.", - "desc": "Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. If the information system or application allows the user to reuse their password consecutively when that password has exceeded its defined lifetime, the end result is a password that is not changed per policy requirements.\n\nRHEL 8 utilizes \"pwquality\" consecutively as a mechanism to enforce password complexity. This is set in both:\n/etc/pam.d/password-auth\n/etc/pam.d/system-auth.\n\nNote that manual changes to the listed files may be overwritten by the \"authselect\" program.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:208", - "label": "check" - }, - { - "data": "Configure the operating system to prohibit password reuse for a minimum of five generations.\n\nAdd the following line in \"/etc/pam.d/system-auth\" and \"/etc/pam.d/password-auth\" (or modify the line to have the required value):\n\npassword required pam_pwhistory.so use_authtok remember=5 retry=3", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000200" - ], - "nist": [ - "IA-5 (1) (e)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. If the information system or application allows the user to reuse their password consecutively when that password has exceeded its defined lifetime, the end result is a password that is not changed per policy requirements.\\n\\nRHEL 8 utilizes \\\"pwquality\\\" consecutively as a mechanism to enforce password complexity. This is set in both:\\n/etc/pam.d/password-auth\\n/etc/pam.d/system-auth.\\n\\nNote that manual changes to the listed files may be overwritten by the \\\"authselect\\\" program.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230368", - "group_title": "SRG-OS-000077-GPOS-00045", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230368r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:208", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33012r567851_fix", - "fixtext_fixref": "F-33012r567851_fix", - "ident": { - "text": "CCI-000200", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-020220", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230368r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-020220", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000200", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:208", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230369", - "title": "RHEL 8 passwords must have a minimum of 15 characters.", - "desc": "The shorter the password, the lower the number of possible combinations that need to be tested before the password is compromised.\n\nPassword complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. Password length is one factor of several that helps to determine strength and how long it takes to crack a password. Use of more characters in a password helps to increase exponentially the time and/or resources required to compromise the password.\n\nRHEL 8 utilizes \"pwquality\" as a mechanism to enforce password complexity. Configurations are set in the \"etc/security/pwquality.conf\" file.\n\nThe \"minlen\", sometimes noted as minimum length, acts as a \"score\" of complexity based on the credit components of the \"pwquality\" module. By setting the credit components to a negative value, not only will those components be required, they will not count towards the total \"score\" of \"minlen\". This will enable \"minlen\" to require a 15-character minimum.\n\nThe DoD minimum password requirement is 15 characters.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:209", - "label": "check" - }, - { - "data": "Configure operating system to enforce a minimum 15-character password length.\n\nAdd the following line to \"/etc/security/pwquality.conf\" (or modify the line to have the required value):\n\nminlen = 15", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000205" - ], - "nist": [ - "IA-5 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"The shorter the password, the lower the number of possible combinations that need to be tested before the password is compromised.\\n\\nPassword complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. Password length is one factor of several that helps to determine strength and how long it takes to crack a password. Use of more characters in a password helps to increase exponentially the time and/or resources required to compromise the password.\\n\\nRHEL 8 utilizes \\\"pwquality\\\" as a mechanism to enforce password complexity. Configurations are set in the \\\"etc/security/pwquality.conf\\\" file.\\n\\nThe \\\"minlen\\\", sometimes noted as minimum length, acts as a \\\"score\\\" of complexity based on the credit components of the \\\"pwquality\\\" module. By setting the credit components to a negative value, not only will those components be required, they will not count towards the total \\\"score\\\" of \\\"minlen\\\". This will enable \\\"minlen\\\" to require a 15-character minimum.\\n\\nThe DoD minimum password requirement is 15 characters.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230369", - "group_title": "SRG-OS-000078-GPOS-00046", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230369r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:209", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33013r567854_fix", - "fixtext_fixref": "F-33013r567854_fix", - "ident": { - "text": "CCI-000205", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-020230", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230369r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-020230", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000205", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:209", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230370", - "title": "RHEL 8 passwords for new users must have a minimum of 15 characters.", - "desc": "The shorter the password, the lower the number of possible combinations that need to be tested before the password is compromised.\n\nPassword complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. Password length is one factor of several that helps to determine strength and how long it takes to crack a password. Use of more characters in a password helps to increase exponentially the time and/or resources required to compromise the password.\n\nThe DoD minimum password requirement is 15 characters.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:210", - "label": "check" - }, - { - "data": "Configure operating system to enforce a minimum 15-character password length for new user accounts.\n\nAdd, or modify the following line in the \"/etc/login.defs\" file:\n\nPASS_MIN_LEN 15", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000205" - ], - "nist": [ - "IA-5 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"The shorter the password, the lower the number of possible combinations that need to be tested before the password is compromised.\\n\\nPassword complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. Password length is one factor of several that helps to determine strength and how long it takes to crack a password. Use of more characters in a password helps to increase exponentially the time and/or resources required to compromise the password.\\n\\nThe DoD minimum password requirement is 15 characters.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230370", - "group_title": "SRG-OS-000078-GPOS-00046", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230370r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:210", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33014r567857_fix", - "fixtext_fixref": "F-33014r567857_fix", - "ident": { - "text": "CCI-000205", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-020231", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230370r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-020231", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000205", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:210", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230373", - "title": "RHEL 8 account identifiers (individuals, groups, roles, and devices) must be disabled after 35 days of inactivity.", - "desc": "Inactive identifiers pose a risk to systems and applications because attackers may exploit an inactive identifier and potentially obtain undetected access to the system. Owners of inactive accounts will not notice if unauthorized access to their user account has been obtained.\n\nRHEL 8 needs to track periods of inactivity and disable application identifiers after 35 days of inactivity.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:211", - "label": "check" - }, - { - "data": "Configure RHEL 8 to disable account identifiers after 35 days of inactivity after the password expiration. \n\nRun the following command to change the configuration for useradd:\n\n$ sudo useradd -D -f 35\n\nDoD recommendation is 35 days, but a lower value is acceptable. The value \"-1\" will disable this feature, and \"0\" will disable the account immediately after the password expires.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000795" - ], - "nist": [ - "IA-4 e" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Inactive identifiers pose a risk to systems and applications because attackers may exploit an inactive identifier and potentially obtain undetected access to the system. Owners of inactive accounts will not notice if unauthorized access to their user account has been obtained.\\n\\nRHEL 8 needs to track periods of inactivity and disable application identifiers after 35 days of inactivity.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230373", - "group_title": "SRG-OS-000118-GPOS-00060", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230373r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:211", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33017r567866_fix", - "fixtext_fixref": "F-33017r567866_fix", - "ident": { - "text": "CCI-000795", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-020260", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230373r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-020260", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000795", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:211", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230375", - "title": "All RHEL 8 passwords must contain at least one special character.", - "desc": "Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\n\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\n\nRHEL 8 utilizes \"pwquality\" as a mechanism to enforce password complexity. Note that to require special characters without degrading the \"minlen\" value, the credit value must be expressed as a negative number in \"/etc/security/pwquality.conf\".", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:212", - "label": "check" - }, - { - "data": "Configure the operating system to enforce password complexity by requiring that at least one special character be used by setting the \"ocredit\" option.\n\nAdd the following line to /etc/security/pwquality.conf (or modify the line to have the required value):\n\nocredit = -1", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001619" - ], - "nist": [ - "IA-5 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\\n\\nRHEL 8 utilizes \\\"pwquality\\\" as a mechanism to enforce password complexity. Note that to require special characters without degrading the \\\"minlen\\\" value, the credit value must be expressed as a negative number in \\\"/etc/security/pwquality.conf\\\".\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230375", - "group_title": "SRG-OS-000266-GPOS-00101", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230375r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:212", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33019r567872_fix", - "fixtext_fixref": "F-33019r567872_fix", - "ident": { - "text": "CCI-001619", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-020280", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230375r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-020280", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-001619", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:212", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230377", - "title": "RHEL 8 must prevent the use of dictionary words for passwords.", - "desc": "If RHEL 8 allows the user to select passwords based on dictionary words, this increases the chances of password compromise by increasing the opportunity for successful guesses, and brute-force attacks.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:214", - "label": "check" - }, - { - "data": "Configure RHEL 8 to prevent the use of dictionary words for passwords.\n\nAdd or update the following line in the \"/etc/security/pwquality.conf\" file or a configuration file in the /etc/pwquality.conf.d/ directory to contain the \"dictcheck\" parameter:\n\ndictcheck=1", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"If RHEL 8 allows the user to select passwords based on dictionary words, this increases the chances of password compromise by increasing the opportunity for successful guesses, and brute-force attacks.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230377", - "group_title": "SRG-OS-000480-GPOS-00225", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230377r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:214", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33021r567878_fix", - "fixtext_fixref": "F-33021r567878_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-020300", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230377r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-020300", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:214", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230378", - "title": "RHEL 8 must enforce a delay of at least four seconds between logon prompts following a failed logon attempt.", - "desc": "Configuring the operating system to implement organization-wide security implementation guides and security checklists verifies compliance with federal standards and establishes a common security baseline across the DoD that reflects the most restrictive security posture consistent with operational requirements.\n\nConfiguration settings are the set of parameters that can be changed in hardware, software, or firmware components of the system that affect the security posture and/or functionality of the system. Security-related parameters are those parameters impacting the security state of the system, including the parameters required to satisfy other security control requirements. Security-related parameters include, for example, registry settings; account, file, and directory permission settings; and settings for functions, ports, protocols, services, and remote connections.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:215", - "label": "check" - }, - { - "data": "Configure the operating system to enforce a delay of at least four seconds between logon prompts following a failed console logon attempt.\n\nModify the \"/etc/login.defs\" file to set the \"FAIL_DELAY\" parameter to \"4\" or greater:\n\nFAIL_DELAY 4", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Configuring the operating system to implement organization-wide security implementation guides and security checklists verifies compliance with federal standards and establishes a common security baseline across the DoD that reflects the most restrictive security posture consistent with operational requirements.\\n\\nConfiguration settings are the set of parameters that can be changed in hardware, software, or firmware components of the system that affect the security posture and/or functionality of the system. Security-related parameters are those parameters impacting the security state of the system, including the parameters required to satisfy other security control requirements. Security-related parameters include, for example, registry settings; account, file, and directory permission settings; and settings for functions, ports, protocols, services, and remote connections.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230378", - "group_title": "SRG-OS-000480-GPOS-00226", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230378r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:215", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33022r567881_fix", - "fixtext_fixref": "F-33022r567881_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-020310", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230378r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-020310", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:215", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230380", - "title": "RHEL 8 must not allow accounts configured with blank or null passwords.", - "desc": "If an account has an empty password, anyone could log on and run commands with the privileges of that account. Accounts with empty passwords should never be used in operational environments.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:216", - "label": "check" - }, - { - "data": "Edit the following line in \"etc/ssh/sshd_config\" to prevent logons with empty passwords.\n\nPermitEmptyPasswords no\n\nThe SSH daemon must be restarted for the changes to take effect. To restart the SSH daemon, run the following command:\n\n$ sudo systemctl restart sshd.service", - "label": "fix" - } - ], - "impact": 0.7, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "high", - "description": "{\"VulnDiscussion\":\"If an account has an empty password, anyone could log on and run commands with the privileges of that account. Accounts with empty passwords should never be used in operational environments.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230380", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230380r743993_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:216", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33024r743992_fix", - "fixtext_fixref": "F-33024r743992_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-020330", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230380r743993_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "high", - "version": "RHEL-08-020330", - "weight": "10.000000", - "result": "error", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:216", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230382", - "title": "RHEL 8 must display the date and time of the last successful account logon upon an SSH logon.", - "desc": "Providing users with feedback on when account accesses via SSH last occurred facilitates user recognition and reporting of unauthorized account use.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:218", - "label": "check" - }, - { - "data": "Configure SSH to provide users with feedback on when account accesses last occurred by setting the required configuration options in \"/etc/pam.d/sshd\" or in the \"sshd_config\" file used by the system (\"/etc/ssh/sshd_config\" will be used in the example) (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor).\n\nModify the \"PrintLastLog\" line in \"/etc/ssh/sshd_config\" to match the following:\n\nPrintLastLog yes\n\nThe SSH service must be restarted for changes to \"sshd_config\" to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Providing users with feedback on when account accesses via SSH last occurred facilitates user recognition and reporting of unauthorized account use.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230382", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230382r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:218", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33026r567893_fix", - "fixtext_fixref": "F-33026r567893_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-020350", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230382r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-020350", - "weight": "10.000000", - "result": "error", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:218", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230383", - "title": "RHEL 8 must define default permissions for all authenticated users in such a way that the user can only read and modify their own files.", - "desc": "Setting the most restrictive default permissions ensures that when new accounts are created, they do not have unnecessary access.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:219", - "label": "check" - }, - { - "data": "Configure the operating system to define default permissions for all authenticated users in such a way that the user can only read and modify their own files.\n\nAdd or edit the line for the \"UMASK\" parameter in \"/etc/login.defs\" file to \"077\":\n\nUMASK 077", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Setting the most restrictive default permissions ensures that when new accounts are created, they do not have unnecessary access.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230383", - "group_title": "SRG-OS-000480-GPOS-00228", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230383r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:219", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33027r567896_fix", - "fixtext_fixref": "F-33027r567896_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-020351", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230383r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-020351", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:219", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230386", - "title": "The RHEL 8 audit system must be configured to audit the execution of privileged functions and prevent all software from executing at higher privilege levels than users executing the software.", - "desc": "Misuse of privileged functions, either intentionally or unintentionally by authorized users, or by unauthorized external entities that have compromised information system accounts, is a serious and ongoing concern and can have significant adverse impacts on organizations. Auditing the use of privileged functions is one way to detect such misuse and identify the risk from insider threats and the advanced persistent threat.\n\nSatisfies: SRG-OS-000326-GPOS-00126, SRG-OS-000327-GPOS-00127", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:220", - "label": "check" - }, - { - "data": "Configure RHEL 8 to audit the execution of the \"execve\" system call.\n\nAdd or update the following file system rules to \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S execve -C uid!=euid -F euid=0 -k execpriv \n-a always,exit -F arch=b64 -S execve -C uid!=euid -F euid=0 -k execpriv\n\n-a always,exit -F arch=b32 -S execve -C gid!=egid -F egid=0 -k execpriv \n-a always,exit -F arch=b64 -S execve -C gid!=egid -F egid=0 -k execpriv \n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-002233" - ], - "nist": [ - "AC-6 (8)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Misuse of privileged functions, either intentionally or unintentionally by authorized users, or by unauthorized external entities that have compromised information system accounts, is a serious and ongoing concern and can have significant adverse impacts on organizations. Auditing the use of privileged functions is one way to detect such misuse and identify the risk from insider threats and the advanced persistent threat.\\n\\nSatisfies: SRG-OS-000326-GPOS-00126, SRG-OS-000327-GPOS-00127\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230386", - "group_title": "SRG-OS-000326-GPOS-00126", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230386r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:220", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33030r567905_fix", - "fixtext_fixref": "F-33030r567905_fix", - "ident": { - "text": "CCI-002233", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030000", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230386r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030000", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-002233", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:220", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230388", - "title": "The RHEL 8 System Administrator (SA) and Information System Security Officer (ISSO) (at a minimum) must be alerted of an audit processing failure event.", - "desc": "It is critical for the appropriate personnel to be aware if a system is at risk of failing to process audit logs as required. Without this notification, the security personnel may be unaware of an impending failure of the audit capability, and system operation may be adversely affected.\n\nAudit processing failures include software/hardware errors, failures in the audit capturing mechanisms, and audit storage capacity being reached or exceeded.\n\nThis requirement applies to each audit data storage repository (i.e., distinct information system component where audit records are stored), the centralized audit storage capacity of organizations (i.e., all audit data storage repositories combined), or both.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:222", - "label": "check" - }, - { - "data": "Configure \"auditd\" service to notify the SA and ISSO in the event of an audit processing failure. \n\nEdit the following line in \"/etc/audit/auditd.conf\" to ensure that administrators are notified via email for those situations:\n\naction_mail_acct = root", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000139" - ], - "nist": [ - "AU-5 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"It is critical for the appropriate personnel to be aware if a system is at risk of failing to process audit logs as required. Without this notification, the security personnel may be unaware of an impending failure of the audit capability, and system operation may be adversely affected.\\n\\nAudit processing failures include software/hardware errors, failures in the audit capturing mechanisms, and audit storage capacity being reached or exceeded.\\n\\nThis requirement applies to each audit data storage repository (i.e., distinct information system component where audit records are stored), the centralized audit storage capacity of organizations (i.e., all audit data storage repositories combined), or both.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230388", - "group_title": "SRG-OS-000046-GPOS-00022", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230388r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:222", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33032r567911_fix", - "fixtext_fixref": "F-33032r567911_fix", - "ident": { - "text": "CCI-000139", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030020", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230388r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030020", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000139", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:222", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230390", - "title": "The RHEL 8 System must take appropriate action when an audit processing failure occurs.", - "desc": "It is critical for the appropriate personnel to be aware if a system is at risk of failing to process audit logs as required. Without this notification, the security personnel may be unaware of an impending failure of the audit capability, and system operation may be adversely affected.\n\nAudit processing failures include software/hardware errors, failures in the audit capturing mechanisms, and audit storage capacity being reached or exceeded.\n\nThis requirement applies to each audit data storage repository (i.e., distinct information system component where audit records are stored), the centralized audit storage capacity of organizations (i.e., all audit data storage repositories combined), or both.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:223", - "label": "check" - }, - { - "data": "Configure RHEL 8 to shut down by default upon audit failure (unless availability is an overriding concern).\n\nAdd or update the following line (depending on configuration \"disk_error_action\" can be set to \"SYSLOG\" or \"SINGLE\" depending on configuration) in \"/etc/audit/auditd.conf\" file:\n\ndisk_error_action = HALT\n\nIf availability has been determined to be more important, and this decision is documented with the ISSO, configure the operating system to notify system administration staff and ISSO staff in the event of an audit processing failure by setting the \"disk_error_action\" to \"SYSLOG\".", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000140" - ], - "nist": [ - "AU-5 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"It is critical for the appropriate personnel to be aware if a system is at risk of failing to process audit logs as required. Without this notification, the security personnel may be unaware of an impending failure of the audit capability, and system operation may be adversely affected.\\n\\nAudit processing failures include software/hardware errors, failures in the audit capturing mechanisms, and audit storage capacity being reached or exceeded.\\n\\nThis requirement applies to each audit data storage repository (i.e., distinct information system component where audit records are stored), the centralized audit storage capacity of organizations (i.e., all audit data storage repositories combined), or both.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230390", - "group_title": "SRG-OS-000047-GPOS-00023", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230390r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:223", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33034r567917_fix", - "fixtext_fixref": "F-33034r567917_fix", - "ident": { - "text": "CCI-000140", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030040", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230390r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030040", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000140", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:223", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230391", - "title": "The RHEL 8 System Administrator (SA) and Information System Security Officer (ISSO) (at a minimum) must be alerted when the audit storage volume is full.", - "desc": "It is critical that when RHEL 8 is at risk of failing to process audit logs as required, it takes action to mitigate the failure. Audit processing failures include software/hardware errors; failures in the audit capturing mechanisms; and audit storage capacity being reached or exceeded. Responses to audit failure depend upon the nature of the failure mode.\n\nWhen availability is an overriding concern, other approved actions in response to an audit failure are as follows:\n\n1) If the failure was caused by the lack of audit record storage capacity, RHEL 8 must continue generating audit records if possible (automatically restarting the audit service if necessary) and overwriting the oldest audit records in a first-in-first-out manner.\n\n2) If audit records are sent to a centralized collection server and communication with this server is lost or the server fails, RHEL 8 must queue audit records locally until communication is restored or until the audit records are retrieved manually. Upon restoration of the connection to the centralized collection server, action should be taken to synchronize the local audit data with the collection server.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:224", - "label": "check" - }, - { - "data": "Configure RHEL 8 to notify the System Administrator (SA) and Information System Security Officer (ISSO) when the audit storage volume is full by configuring the \"max_log_file_action\" parameter in the \"/etc/audit/auditd.conf\" file with the a value of \"syslog\" or \"keep_logs\":\n\nmax_log_file_action = syslog", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000140" - ], - "nist": [ - "AU-5 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"It is critical that when RHEL 8 is at risk of failing to process audit logs as required, it takes action to mitigate the failure. Audit processing failures include software/hardware errors; failures in the audit capturing mechanisms; and audit storage capacity being reached or exceeded. Responses to audit failure depend upon the nature of the failure mode.\\n\\nWhen availability is an overriding concern, other approved actions in response to an audit failure are as follows:\\n\\n1) If the failure was caused by the lack of audit record storage capacity, RHEL 8 must continue generating audit records if possible (automatically restarting the audit service if necessary) and overwriting the oldest audit records in a first-in-first-out manner.\\n\\n2) If audit records are sent to a centralized collection server and communication with this server is lost or the server fails, RHEL 8 must queue audit records locally until communication is restored or until the audit records are retrieved manually. Upon restoration of the connection to the centralized collection server, action should be taken to synchronize the local audit data with the collection server.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230391", - "group_title": "SRG-OS-000047-GPOS-00023", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230391r743998_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:224", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33035r743997_fix", - "fixtext_fixref": "F-33035r743997_fix", - "ident": { - "text": "CCI-000140", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030050", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230391r743998_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030050", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000140", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:224", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230392", - "title": "The RHEL 8 audit system must take appropriate action when the audit storage volume is full.", - "desc": "It is critical that when RHEL 8 is at risk of failing to process audit logs as required, it takes action to mitigate the failure. Audit processing failures include software/hardware errors; failures in the audit capturing mechanisms; and audit storage capacity being reached or exceeded. Responses to audit failure depend upon the nature of the failure mode.\n\nWhen availability is an overriding concern, other approved actions in response to an audit failure are as follows: \n\n1) If the failure was caused by the lack of audit record storage capacity, RHEL 8 must continue generating audit records if possible (automatically restarting the audit service if necessary) and overwriting the oldest audit records in a first-in-first-out manner.\n\n2) If audit records are sent to a centralized collection server and communication with this server is lost or the server fails, RHEL 8 must queue audit records locally until communication is restored or until the audit records are retrieved manually. Upon restoration of the connection to the centralized collection server, action should be taken to synchronize the local audit data with the collection server.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:225", - "label": "check" - }, - { - "data": "Configure RHEL 8 to shut down by default upon audit failure (unless availability is an overriding concern).\n\nAdd or update the following line (depending on configuration \"disk_full_action\" can be set to \"SYSLOG\" or \"SINGLE\" depending on configuration) in \"/etc/audit/auditd.conf\" file:\n\ndisk_full_action = HALT\n\nIf availability has been determined to be more important, and this decision is documented with the ISSO, configure the operating system to notify system administration staff and ISSO staff in the event of an audit processing failure by setting the \"disk_full_action\" to \"SYSLOG\".", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000140" - ], - "nist": [ - "AU-5 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"It is critical that when RHEL 8 is at risk of failing to process audit logs as required, it takes action to mitigate the failure. Audit processing failures include software/hardware errors; failures in the audit capturing mechanisms; and audit storage capacity being reached or exceeded. Responses to audit failure depend upon the nature of the failure mode.\\n\\nWhen availability is an overriding concern, other approved actions in response to an audit failure are as follows: \\n\\n1) If the failure was caused by the lack of audit record storage capacity, RHEL 8 must continue generating audit records if possible (automatically restarting the audit service if necessary) and overwriting the oldest audit records in a first-in-first-out manner.\\n\\n2) If audit records are sent to a centralized collection server and communication with this server is lost or the server fails, RHEL 8 must queue audit records locally until communication is restored or until the audit records are retrieved manually. Upon restoration of the connection to the centralized collection server, action should be taken to synchronize the local audit data with the collection server.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230392", - "group_title": "SRG-OS-000047-GPOS-00023", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230392r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:225", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33036r567923_fix", - "fixtext_fixref": "F-33036r567923_fix", - "ident": { - "text": "CCI-000140", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030060", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230392r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030060", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000140", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:225", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230393", - "title": "The RHEL 8 audit system must audit local events.", - "desc": "Without establishing what type of events occurred, the source of events, where events occurred, and the outcome of events, it would be difficult to establish, correlate, and investigate the events leading up to an outage or attack.\n\nAudit record content that may be necessary to satisfy this requirement includes, for example, time stamps, source and destination addresses, user/process identifiers, event descriptions, success/fail indications, filenames involved, and access control or flow control rules invoked.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:226", - "label": "check" - }, - { - "data": "Configure RHEL 8 to audit local events on the system.\n\nAdd or update the following line in \"/etc/audit/auditd.conf\" file:\n\nlocal_events = yes", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without establishing what type of events occurred, the source of events, where events occurred, and the outcome of events, it would be difficult to establish, correlate, and investigate the events leading up to an outage or attack.\\n\\nAudit record content that may be necessary to satisfy this requirement includes, for example, time stamps, source and destination addresses, user/process identifiers, event descriptions, success/fail indications, filenames involved, and access control or flow control rules invoked.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230393", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230393r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:226", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33037r567926_fix", - "fixtext_fixref": "F-33037r567926_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030061", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230393r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030061", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:226", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230394", - "title": "RHEL 8 must label all off-loaded audit logs before sending them to the central log server.", - "desc": "Without establishing what type of events occurred, the source of events, where events occurred, and the outcome of events, it would be difficult to establish, correlate, and investigate the events leading up to an outage or attack.\n\nAudit record content that may be necessary to satisfy this requirement includes, for example, time stamps, source and destination addresses, user/process identifiers, event descriptions, success/fail indications, filenames involved, and access control or flow control rules invoked.\n\nEnriched logging is needed to determine who, what, and when events occur on a system. Without this, determining root cause of an event will be much more difficult.\n\nWhen audit logs are not labeled before they are sent to a central log server, the audit data will not be able to be analyzed and tied back to the correct system.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:227", - "label": "check" - }, - { - "data": "Edit the /etc/audit/auditd.conf file and add or update the \"name_format\" option:\n\nname_format = hostname\n\nThe audit daemon must be restarted for changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001851" - ], - "nist": [ - "AU-4 (1)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without establishing what type of events occurred, the source of events, where events occurred, and the outcome of events, it would be difficult to establish, correlate, and investigate the events leading up to an outage or attack.\\n\\nAudit record content that may be necessary to satisfy this requirement includes, for example, time stamps, source and destination addresses, user/process identifiers, event descriptions, success/fail indications, filenames involved, and access control or flow control rules invoked.\\n\\nEnriched logging is needed to determine who, what, and when events occur on a system. Without this, determining root cause of an event will be much more difficult.\\n\\nWhen audit logs are not labeled before they are sent to a central log server, the audit data will not be able to be analyzed and tied back to the correct system.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230394", - "group_title": "SRG-OS-000342-GPOS-00133", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230394r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:227", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33038r567929_fix", - "fixtext_fixref": "F-33038r567929_fix", - "ident": { - "text": "CCI-001851", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030062", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230394r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030062", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-001851", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:227", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230395", - "title": "RHEL 8 must resolve audit information before writing to disk.", - "desc": "Without establishing what type of events occurred, the source of events, where events occurred, and the outcome of events, it would be difficult to establish, correlate, and investigate the events leading up to an outage or attack.\n\nAudit record content that may be necessary to satisfy this requirement includes, for example, time stamps, source and destination addresses, user/process identifiers, event descriptions, success/fail indications, filenames involved, and access control or flow control rules invoked.\n\nEnriched logging aids in making sense of who, what, and when events occur on a system. Without this, determining root cause of an event will be much more difficult.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:228", - "label": "check" - }, - { - "data": "Edit the /etc/audit/auditd.conf file and add or update the \"log_format\" option:\n\nlog_format = ENRICHED\n\nThe audit daemon must be restarted for changes to take effect.", - "label": "fix" - } - ], - "impact": 0.3, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "low", - "description": "{\"VulnDiscussion\":\"Without establishing what type of events occurred, the source of events, where events occurred, and the outcome of events, it would be difficult to establish, correlate, and investigate the events leading up to an outage or attack.\\n\\nAudit record content that may be necessary to satisfy this requirement includes, for example, time stamps, source and destination addresses, user/process identifiers, event descriptions, success/fail indications, filenames involved, and access control or flow control rules invoked.\\n\\nEnriched logging aids in making sense of who, what, and when events occur on a system. Without this, determining root cause of an event will be much more difficult.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230395", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230395r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:228", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33039r567932_fix", - "fixtext_fixref": "F-33039r567932_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030063", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230395r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "low", - "version": "RHEL-08-030063", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:228", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230396", - "title": "RHEL 8 audit logs must have a mode of 0600 or less permissive to prevent unauthorized read access.", - "desc": "Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\n\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.\n\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029, SRG-OS-000206-GPOS-00084", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:229", - "label": "check" - }, - { - "data": "Configure the audit log to be protected from unauthorized read access by configuring the log group in the /etc/audit/auditd.conf file:\n\nlog_group = root", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000162" - ], - "nist": [ - "AU-9 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\\n\\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.\\n\\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029, SRG-OS-000206-GPOS-00084\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230396", - "group_title": "SRG-OS-000057-GPOS-00027", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230396r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:229", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33040r567935_fix", - "fixtext_fixref": "F-33040r567935_fix", - "ident": { - "text": "CCI-000162", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030070", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230396r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030070", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000162", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:229", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230397", - "title": "RHEL 8 audit logs must be owned by root to prevent unauthorized read access.", - "desc": "Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\n\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.\n\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029, SRG-OS-000206-GPOS-00084", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:230", - "label": "check" - }, - { - "data": "Configure the audit log to be protected from unauthorized read access, by setting the correct owner as \"root\" with the following command:\n\n$ sudo chown root [audit_log_file]\n\nReplace \"[audit_log_file]\" to the correct audit log path, by default this location is \"/var/log/audit/audit.log\".", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000162" - ], - "nist": [ - "AU-9 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\\n\\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.\\n\\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029, SRG-OS-000206-GPOS-00084\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230397", - "group_title": "SRG-OS-000057-GPOS-00027", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230397r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:230", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33041r567938_fix", - "fixtext_fixref": "F-33041r567938_fix", - "ident": { - "text": "CCI-000162", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030080", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230397r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030080", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000162", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:230", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230398", - "title": "RHEL 8 audit logs must be group-owned by root to prevent unauthorized read access.", - "desc": "Unauthorized disclosure of audit records can reveal system and configuration data to attackers, thus compromising its confidentiality.\n\nAudit information includes all information (e.g., audit records, audit settings, audit reports) needed to successfully audit RHEL 8 activity.\n\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:231", - "label": "check" - }, - { - "data": "Configure the audit log to be owned by root by configuring the log group in the /etc/audit/auditd.conf file:\n\nlog_group = root", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000162" - ], - "nist": [ - "AU-9 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Unauthorized disclosure of audit records can reveal system and configuration data to attackers, thus compromising its confidentiality.\\n\\nAudit information includes all information (e.g., audit records, audit settings, audit reports) needed to successfully audit RHEL 8 activity.\\n\\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230398", - "group_title": "SRG-OS-000057-GPOS-00027", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230398r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:231", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33042r567941_fix", - "fixtext_fixref": "F-33042r567941_fix", - "ident": { - "text": "CCI-000162", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030090", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230398r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030090", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000162", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:231", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230399", - "title": "RHEL 8 audit log directory must be owned by root to prevent unauthorized read access.", - "desc": "Unauthorized disclosure of audit records can reveal system and configuration data to attackers, thus compromising its confidentiality.\n\nAudit information includes all information (e.g., audit records, audit settings, audit reports) needed to successfully audit RHEL 8 activity.\n\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:232", - "label": "check" - }, - { - "data": "Configure the audit log to be protected from unauthorized read access, by setting the correct owner as \"root\" with the following command:\n\n$ sudo chown root [audit_log_directory]\n\nReplace \"[audit_log_directory]\" with the correct audit log directory path, by default this location is usually \"/var/log/audit\".", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000162" - ], - "nist": [ - "AU-9 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Unauthorized disclosure of audit records can reveal system and configuration data to attackers, thus compromising its confidentiality.\\n\\nAudit information includes all information (e.g., audit records, audit settings, audit reports) needed to successfully audit RHEL 8 activity.\\n\\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230399", - "group_title": "SRG-OS-000057-GPOS-00027", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230399r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:232", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33043r567944_fix", - "fixtext_fixref": "F-33043r567944_fix", - "ident": { - "text": "CCI-000162", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030100", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230399r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030100", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000162", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:232", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230400", - "title": "RHEL 8 audit log directory must be group-owned by root to prevent unauthorized read access.", - "desc": "Unauthorized disclosure of audit records can reveal system and configuration data to attackers, thus compromising its confidentiality.\n\nAudit information includes all information (e.g., audit records, audit settings, audit reports) needed to successfully audit RHEL 8 activity.\n\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:233", - "label": "check" - }, - { - "data": "Configure the audit log to be protected from unauthorized read access by setting the correct group-owner as \"root\" with the following command:\n\n$ sudo chgrp root [audit_log_directory]\n\nReplace \"[audit_log_directory]\" with the correct audit log directory path, by default this location is usually \"/var/log/audit\".", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000162" - ], - "nist": [ - "AU-9 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Unauthorized disclosure of audit records can reveal system and configuration data to attackers, thus compromising its confidentiality.\\n\\nAudit information includes all information (e.g., audit records, audit settings, audit reports) needed to successfully audit RHEL 8 activity.\\n\\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230400", - "group_title": "SRG-OS-000057-GPOS-00027", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230400r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:233", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33044r567947_fix", - "fixtext_fixref": "F-33044r567947_fix", - "ident": { - "text": "CCI-000162", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030110", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230400r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030110", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000162", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:233", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230401", - "title": "RHEL 8 audit log directory must have a mode of 0700 or less permissive to prevent unauthorized read access.", - "desc": "Unauthorized disclosure of audit records can reveal system and configuration data to attackers, thus compromising its confidentiality.\n\nAudit information includes all information (e.g., audit records, audit settings, audit reports) needed to successfully audit RHEL 8 system activity.\n\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:234", - "label": "check" - }, - { - "data": "Configure the audit log directory to be protected from unauthorized read access by setting the correct permissive mode with the following command:\n\n$ sudo chmod 0700 [audit_log_directory]\n\nReplace \"[audit_log_directory]\" to the correct audit log directory path, by default this location is \"/var/log/audit\".", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000162" - ], - "nist": [ - "AU-9 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Unauthorized disclosure of audit records can reveal system and configuration data to attackers, thus compromising its confidentiality.\\n\\nAudit information includes all information (e.g., audit records, audit settings, audit reports) needed to successfully audit RHEL 8 system activity.\\n\\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230401", - "group_title": "SRG-OS-000057-GPOS-00027", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230401r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:234", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33045r567950_fix", - "fixtext_fixref": "F-33045r567950_fix", - "ident": { - "text": "CCI-000162", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030120", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230401r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030120", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000162", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:234", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230402", - "title": "RHEL 8 audit system must protect auditing rules from unauthorized change.", - "desc": "Unauthorized disclosure of audit records can reveal system and configuration data to attackers, thus compromising its confidentiality.\n\nAudit information includes all information (e.g., audit records, audit settings, audit reports) needed to successfully audit RHEL 8 system activity.\n\nIn immutable mode, unauthorized users cannot execute changes to the audit system to potentially hide malicious activity and then put the audit rules back. A system reboot would be noticeable and a system administrator could then investigate the unauthorized changes.\n\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:235", - "label": "check" - }, - { - "data": "Configure the audit system to set the audit rules to be immutable by adding the following line to \"/etc/audit/rules.d/audit.rules\"\n\n-e 2\n\nNote: Once set, the system must be rebooted for auditing to be changed. It is recommended to add this option as the last step in securing the system.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000162" - ], - "nist": [ - "AU-9 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Unauthorized disclosure of audit records can reveal system and configuration data to attackers, thus compromising its confidentiality.\\n\\nAudit information includes all information (e.g., audit records, audit settings, audit reports) needed to successfully audit RHEL 8 system activity.\\n\\nIn immutable mode, unauthorized users cannot execute changes to the audit system to potentially hide malicious activity and then put the audit rules back. A system reboot would be noticeable and a system administrator could then investigate the unauthorized changes.\\n\\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230402", - "group_title": "SRG-OS-000057-GPOS-00027", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230402r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:235", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33046r567953_fix", - "fixtext_fixref": "F-33046r567953_fix", - "ident": { - "text": "CCI-000162", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030121", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230402r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030121", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000162", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:235", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230403", - "title": "RHEL 8 audit system must protect logon UIDs from unauthorized change.", - "desc": "Unauthorized disclosure of audit records can reveal system and configuration data to attackers, thus compromising its confidentiality.\n\nAudit information includes all information (e.g., audit records, audit settings, audit reports) needed to successfully audit RHEL 8 system activity.\n\nIn immutable mode, unauthorized users cannot execute changes to the audit system to potentially hide malicious activity and then put the audit rules back. A system reboot would be noticeable and a system administrator could then investigate the unauthorized changes.\n\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:236", - "label": "check" - }, - { - "data": "Configure the audit system to set the logon UIDs to be immutable by adding the following line to \"/etc/audit/rules.d/audit.rules\"\n\n--loginuid-immutable", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000162" - ], - "nist": [ - "AU-9 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Unauthorized disclosure of audit records can reveal system and configuration data to attackers, thus compromising its confidentiality.\\n\\nAudit information includes all information (e.g., audit records, audit settings, audit reports) needed to successfully audit RHEL 8 system activity.\\n\\nIn immutable mode, unauthorized users cannot execute changes to the audit system to potentially hide malicious activity and then put the audit rules back. A system reboot would be noticeable and a system administrator could then investigate the unauthorized changes.\\n\\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230403", - "group_title": "SRG-OS-000057-GPOS-00027", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230403r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:236", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33047r567956_fix", - "fixtext_fixref": "F-33047r567956_fix", - "ident": { - "text": "CCI-000162", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030122", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230403r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030122", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000162", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:236", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230404", - "title": "RHEL 8 must generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/shadow.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000004-GPOS-00004, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000304-GPOS-00121, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000470-GPOS-00214, SRG-OS-000471-GPOS-00215, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000304-GPOS-00121, SRG-OS-000466-GPOS-00210, SRG-OS-000476-GPOS-00221", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:237", - "label": "check" - }, - { - "data": "Configure RHEL 8 to generate audit records for all account creations, modifications, disabling, and termination events that affect \"/etc/shadow\".\n\nAdd or update the following file system rule to \"/etc/audit/rules.d/audit.rules\":\n\n-w /etc/shadow -p wa -k identity\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000004-GPOS-00004, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000304-GPOS-00121, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000470-GPOS-00214, SRG-OS-000471-GPOS-00215, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000304-GPOS-00121, SRG-OS-000466-GPOS-00210, SRG-OS-000476-GPOS-00221\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230404", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230404r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:237", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33048r567959_fix", - "fixtext_fixref": "F-33048r567959_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030130", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230404r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030130", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:237", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230405", - "title": "RHEL 8 must generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/security/opasswd.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000004-GPOS-00004, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000304-GPOS-00121, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000470-GPOS-00214, SRG-OS-000471-GPOS-00215, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000304-GPOS-00121, SRG-OS-000476-GPOS-00221", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:238", - "label": "check" - }, - { - "data": "Configure RHEL 8 to generate audit records for all account creations, modifications, disabling, and termination events that affect \"/etc/security/opasswd\".\n\nAdd or update the following file system rule to \"/etc/audit/rules.d/audit.rules\":\n\n-w /etc/security/opasswd -p wa -k identity\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000004-GPOS-00004, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000304-GPOS-00121, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000470-GPOS-00214, SRG-OS-000471-GPOS-00215, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000304-GPOS-00121, SRG-OS-000476-GPOS-00221\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230405", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230405r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:238", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33049r567962_fix", - "fixtext_fixref": "F-33049r567962_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030140", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230405r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030140", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:238", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230406", - "title": "RHEL 8 must generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/passwd.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000004-GPOS-00004, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000304-GPOS-00121, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000470-GPOS-00214, SRG-OS-000471-GPOS-00215, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000304-GPOS-00121, SRG-OS-000466-GPOS-00210, SRG-OS-000476-GPOS-00221", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:239", - "label": "check" - }, - { - "data": "Configure RHEL 8 to generate audit records for all account creations, modifications, disabling, and termination events that affect \"/etc/passwd\".\n\nAdd or update the following file system rule to \"/etc/audit/rules.d/audit.rules\":\n\n-w /etc/passwd -p wa -k identity\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000004-GPOS-00004, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000304-GPOS-00121, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000470-GPOS-00214, SRG-OS-000471-GPOS-00215, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000304-GPOS-00121, SRG-OS-000466-GPOS-00210, SRG-OS-000476-GPOS-00221\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230406", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230406r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:239", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33050r567965_fix", - "fixtext_fixref": "F-33050r567965_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030150", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230406r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030150", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:239", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230407", - "title": "RHEL 8 must generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/gshadow.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000004-GPOS-00004, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000304-GPOS-00121, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000470-GPOS-00214, SRG-OS-000471-GPOS-00215, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000304-GPOS-00121, SRG-OS-000466-GPOS-00210, SRG-OS-000476-GPOS-00221", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:240", - "label": "check" - }, - { - "data": "Configure RHEL 8 to generate audit records for all account creations, modifications, disabling, and termination events that affect \"/etc/gshadow\".\n\nAdd or update the following file system rule to \"/etc/audit/rules.d/audit.rules\":\n\n-w /etc/gshadow -p wa -k identity\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000004-GPOS-00004, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000304-GPOS-00121, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000470-GPOS-00214, SRG-OS-000471-GPOS-00215, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000304-GPOS-00121, SRG-OS-000466-GPOS-00210, SRG-OS-000476-GPOS-00221\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230407", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230407r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:240", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33051r567968_fix", - "fixtext_fixref": "F-33051r567968_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030160", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230407r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030160", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:240", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230408", - "title": "RHEL 8 must generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/group.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000004-GPOS-00004, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000304-GPOS-00121, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000470-GPOS-00214, SRG-OS-000471-GPOS-00215, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000304-GPOS-00121, CCI-002884, SRG-OS-000466-GPOS-00210, SRG-OS-000476-GPOS-00221", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:241", - "label": "check" - }, - { - "data": "Configure RHEL 8 to generate audit records for all account creations, modifications, disabling, and termination events that affect \"/etc/group\".\n\nAdd or update the following file system rule to \"/etc/audit/rules.d/audit.rules\":\n\n-w /etc/group -p wa -k identity\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000004-GPOS-00004, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000304-GPOS-00121, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000470-GPOS-00214, SRG-OS-000471-GPOS-00215, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000304-GPOS-00121, CCI-002884, SRG-OS-000466-GPOS-00210, SRG-OS-000476-GPOS-00221\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230408", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230408r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:241", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33052r567971_fix", - "fixtext_fixref": "F-33052r567971_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030170", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230408r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030170", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:241", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230409", - "title": "RHEL 8 must generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/sudoers.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000004-GPOS-00004, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000304-GPOS-00121, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000470-GPOS-00214, SRG-OS-000471-GPOS-00215, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000304-GPOS-00121, CCI-002884, SRG-OS-000466-GPOS-00210, SRG-OS-000476-GPOS-00221", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:242", - "label": "check" - }, - { - "data": "Configure RHEL 8 to generate audit records for all account creations, modifications, disabling, and termination events that affect \"/etc/sudoers\".\n\nAdd or update the following file system rule to \"/etc/audit/rules.d/audit.rules\":\n\n-w /etc/sudoers -p wa -k identity\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000004-GPOS-00004, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000304-GPOS-00121, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000470-GPOS-00214, SRG-OS-000471-GPOS-00215, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000304-GPOS-00121, CCI-002884, SRG-OS-000466-GPOS-00210, SRG-OS-000476-GPOS-00221\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230409", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230409r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:242", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33053r567974_fix", - "fixtext_fixref": "F-33053r567974_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030171", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230409r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030171", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:242", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230410", - "title": "RHEL 8 must generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/sudoers.d/.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000004-GPOS-00004, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000304-GPOS-00121, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000470-GPOS-00214, SRG-OS-000471-GPOS-00215, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000304-GPOS-00121, CCI-002884, SRG-OS-000466-GPOS-00210, SRG-OS-000476-GPOS-00221", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:243", - "label": "check" - }, - { - "data": "Configure RHEL 8 to generate audit records for all account creations, modifications, disabling, and termination events that affect \"/etc/sudoers.d/\".\n\nAdd or update the following file system rule to \"/etc/audit/rules.d/audit.rules\":\n\n-w /etc/sudoers.d/ -p wa -k identity\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000004-GPOS-00004, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000304-GPOS-00121, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000470-GPOS-00214, SRG-OS-000471-GPOS-00215, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000304-GPOS-00121, CCI-002884, SRG-OS-000466-GPOS-00210, SRG-OS-000476-GPOS-00221\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230410", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230410r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:243", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33054r567977_fix", - "fixtext_fixref": "F-33054r567977_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030172", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230410r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030172", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:243", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230411", - "title": "The RHEL 8 audit package must be installed.", - "desc": "Without establishing what type of events occurred, the source of events, where events occurred, and the outcome of events, it would be difficult to establish, correlate, and investigate the events leading up to an outage or attack.\n\nAudit record content that may be necessary to satisfy this requirement includes, for example, time stamps, source and destination addresses, user/process identifiers, event descriptions, success/fail indications, filenames involved, and access control or flow control rules invoked.\n\nAssociating event types with detected events in RHEL 8 audit logs provides a means of investigating an attack, recognizing resource utilization or capacity thresholds, or identifying an improperly configured RHEL 8 system.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000038-GPOS-00016, SRG-OS-000039-GPOS-00017, SRG-OS-000040-GPOS-00018, SRG-OS-000041-GPOS-00019, SRG-OS-000042-GPOS-00021, SRG-OS-000051-GPOS-00024, SRG-OS-000054-GPOS-00025, SRG-OS-000122-GPOS-00063, SRG-OS-000254-GPOS-00095, SRG-OS-000255-GPOS-00096, SRG-OS-000337-GPOS-00129, SRG-OS-000348-GPOS-00136, SRG-OS-000349-GPOS-00137, SRG-OS-000350-GPOS-00138, SRG-OS-000351-GPOS-00139, SRG-OS-000352-GPOS-00140, SRG-OS-000353-GPOS-00141, SRG-OS-000354-GPOS-00142, SRG-OS-000358-GPOS-00145, SRG-OS-000365-GPOS-00152, SRG-OS-000392-GPOS-00172, SRG-OS-000475-GPOS-00220", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:244", - "label": "check" - }, - { - "data": "Configure the audit service to produce audit records containing the information needed to establish when (date and time) an event occurred.\n\nInstall the audit service (if the audit service is not already installed) with the following command:\n\n$ sudo yum install audit", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without establishing what type of events occurred, the source of events, where events occurred, and the outcome of events, it would be difficult to establish, correlate, and investigate the events leading up to an outage or attack.\\n\\nAudit record content that may be necessary to satisfy this requirement includes, for example, time stamps, source and destination addresses, user/process identifiers, event descriptions, success/fail indications, filenames involved, and access control or flow control rules invoked.\\n\\nAssociating event types with detected events in RHEL 8 audit logs provides a means of investigating an attack, recognizing resource utilization or capacity thresholds, or identifying an improperly configured RHEL 8 system.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000038-GPOS-00016, SRG-OS-000039-GPOS-00017, SRG-OS-000040-GPOS-00018, SRG-OS-000041-GPOS-00019, SRG-OS-000042-GPOS-00021, SRG-OS-000051-GPOS-00024, SRG-OS-000054-GPOS-00025, SRG-OS-000122-GPOS-00063, SRG-OS-000254-GPOS-00095, SRG-OS-000255-GPOS-00096, SRG-OS-000337-GPOS-00129, SRG-OS-000348-GPOS-00136, SRG-OS-000349-GPOS-00137, SRG-OS-000350-GPOS-00138, SRG-OS-000351-GPOS-00139, SRG-OS-000352-GPOS-00140, SRG-OS-000353-GPOS-00141, SRG-OS-000354-GPOS-00142, SRG-OS-000358-GPOS-00145, SRG-OS-000365-GPOS-00152, SRG-OS-000392-GPOS-00172, SRG-OS-000475-GPOS-00220\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230411", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230411r744000_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:244", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33055r646880_fix", - "fixtext_fixref": "F-33055r646880_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030180", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230411r744000_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030180", - "weight": "10.000000", - "result": "pass", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:244", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230412", - "title": "Successful/unsuccessful uses of the su command in RHEL 8 must generate an audit record.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"su\" command allows a user to run commands with a substitute user and group ID.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000064-GPOS-0003, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000466-GPOS-00210", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:245", - "label": "check" - }, - { - "data": "Configure RHEL 8 to generate audit records when successful/unsuccessful attempts to use the \"su\" command occur by adding or updating the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F path=/usr/bin/su -F perm=x -F auid>=1000 -F auid!=unset -k privileged-priv_change\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"su\\\" command allows a user to run commands with a substitute user and group ID.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000064-GPOS-0003, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000466-GPOS-00210\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230412", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230412r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:245", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33056r567983_fix", - "fixtext_fixref": "F-33056r567983_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030190", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230412r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030190", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:245", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230413", - "title": "The RHEL 8 audit system must be configured to audit any usage of the lremovexattr system call.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). \"Lremovexattr\" is a system call that removes extended attributes. This is used for removal of extended attributes from symbolic links.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000462-GPOS-00206, SRG-OS-000463-GPOS-00207, SRG-OS-000468-GPOS-00212, SRG-OS-000471-GPOS-00215, SRG-OS-000474-GPOS-00219, SRG-OS-000466-GPOS-00210", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:246", - "label": "check" - }, - { - "data": "Configure RHEL 8 to audit the execution of the \"lremovexattr\" system call, by adding or updating the following lines to \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S lremovexattr -F auid>=1000 -F auid!=unset -k perm_mod\n-a always,exit -F arch=b64 -S lremovexattr -F auid>=1000 -F auid!=unset -k perm_mod\n\n-a always,exit -F arch=b32 -S lremovexattr -F auid=0 -k perm_mod\n-a always,exit -F arch=b64 -S lremovexattr -F auid=0 -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). \\\"Lremovexattr\\\" is a system call that removes extended attributes. This is used for removal of extended attributes from symbolic links.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000462-GPOS-00206, SRG-OS-000463-GPOS-00207, SRG-OS-000468-GPOS-00212, SRG-OS-000471-GPOS-00215, SRG-OS-000474-GPOS-00219, SRG-OS-000466-GPOS-00210\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230413", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230413r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:246", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33057r567986_fix", - "fixtext_fixref": "F-33057r567986_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030200", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230413r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030200", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:246", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230414", - "title": "The RHEL 8 audit system must be configured to audit any usage of the removexattr system call.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). \"Removexattr\" is a system call that removes extended attributes.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000462-GPOS-00206, SRG-OS-000463-GPOS-00207, SRG-OS-000468-GPOS-00212, SRG-OS-000471-GPOS-00215, SRG-OS-000474-GPOS-00219, SRG-OS-000466-GPOS-00210", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:247", - "label": "check" - }, - { - "data": "Configure RHEL 8 to audit the execution of the \"removexattr\" system call, by adding or updating the following lines to \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S removexattr -F auid>=1000 -F auid!=unset -k perm_mod\n-a always,exit -F arch=b64 -S removexattr -F auid>=1000 -F auid!=unset -k perm_mod\n\n-a always,exit -F arch=b32 -S removexattr -F auid=0 -k perm_mod\n-a always,exit -F arch=b64 -S removexattr -F auid=0 -k perm_mod \n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). \\\"Removexattr\\\" is a system call that removes extended attributes.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000462-GPOS-00206, SRG-OS-000463-GPOS-00207, SRG-OS-000468-GPOS-00212, SRG-OS-000471-GPOS-00215, SRG-OS-000474-GPOS-00219, SRG-OS-000466-GPOS-00210\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230414", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230414r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:247", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33058r567989_fix", - "fixtext_fixref": "F-33058r567989_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030210", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230414r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030210", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:247", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230415", - "title": "The RHEL 8 audit system must be configured to audit any usage of the lsetxattr system call.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). \"Lsetxattr\" is a system call used to set an extended attribute value. This is used to set extended attributes on a symbolic link.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000462-GPOS-00206, SRG-OS-000463-GPOS-00207, SRG-OS-000468-GPOS-00212, SRG-OS-000471-GPOS-00215, SRG-OS-000474-GPOS-00219", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:248", - "label": "check" - }, - { - "data": "Configure RHEL 8 to audit the execution of the \"lsetxattr\" system call, by adding or updating the following lines to \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S lsetxattr -F auid>=1000 -F auid!=unset -k perm_mod\n-a always,exit -F arch=b64 -S lsetxattr -F auid>=1000 -F auid!=unset -k perm_mod\n\n-a always,exit -F arch=b32 -S lsetxattr -F auid=0 -k perm_mod \n-a always,exit -F arch=b64 -S lsetxattr -F auid=0 -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). \\\"Lsetxattr\\\" is a system call used to set an extended attribute value. This is used to set extended attributes on a symbolic link.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000462-GPOS-00206, SRG-OS-000463-GPOS-00207, SRG-OS-000468-GPOS-00212, SRG-OS-000471-GPOS-00215, SRG-OS-000474-GPOS-00219\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230415", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230415r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:248", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33059r567992_fix", - "fixtext_fixref": "F-33059r567992_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030220", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230415r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030220", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:248", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230416", - "title": "The RHEL 8 audit system must be configured to audit any usage of the fsetxattr system call.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). \"Fsetxattr\" is a system call used to set an extended attribute value. This is used to set extended attributes on a file.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The auid representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000462-GPOS-00206, SRG-OS-000463-GPOS-00207, SRG-OS-000468-GPOS-00212, SRG-OS-000471-GPOS-00215, SRG-OS-000474-GPOS-00219", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:249", - "label": "check" - }, - { - "data": "Configure RHEL 8 to audit the execution of the \"fsetxattr\" system call, by adding or updating the following lines to \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S fsetxattr -F auid>=1000 -F auid!=unset -k perm_mod\n-a always,exit -F arch=b64 -S fsetxattr -F auid>=1000 -F auid!=unset -k perm_mod\n\n-a always,exit -F arch=b32 -S fsetxattr -F auid=0 -k perm_mod\n-a always,exit -F arch=b64 -S fsetxattr -F auid=0 -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). \\\"Fsetxattr\\\" is a system call used to set an extended attribute value. This is used to set extended attributes on a file.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The auid representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000462-GPOS-00206, SRG-OS-000463-GPOS-00207, SRG-OS-000468-GPOS-00212, SRG-OS-000471-GPOS-00215, SRG-OS-000474-GPOS-00219\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230416", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230416r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:249", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33060r567995_fix", - "fixtext_fixref": "F-33060r567995_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030230", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230416r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030230", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:249", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230417", - "title": "The RHEL 8 audit system must be configured to audit any usage of the fremovexattr system call.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). \"Fremovexattr\" is a system call that removes extended attributes. This is used for removal of extended attributes from a file.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000462-GPOS-00206, SRG-OS-000463-GPOS-00207, SRG-OS-000471-GPOS-00215, SRG-OS-000474-GPOS-00219, SRG-OS-000466-GPOS-00210", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:250", - "label": "check" - }, - { - "data": "Configure RHEL 8 to audit the execution of the \"fremovexattr\" system call by adding or updating the following lines to \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S fremovexattr -F auid>=1000 -F auid!=unset -k perm_mod\n-a always,exit -F arch=b64 -S fremovexattr -F auid>=1000 -F auid!=unset -k perm_mod\n\n-a always,exit -F arch=b32 -S fremovexattr -F auid=0 -k perm_mod\n-a always,exit -F arch=b64 -S fremovexattr -F auid=0 -k perm_mod \n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). \\\"Fremovexattr\\\" is a system call that removes extended attributes. This is used for removal of extended attributes from a file.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000462-GPOS-00206, SRG-OS-000463-GPOS-00207, SRG-OS-000471-GPOS-00215, SRG-OS-000474-GPOS-00219, SRG-OS-000466-GPOS-00210\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230417", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230417r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:250", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33061r567998_fix", - "fixtext_fixref": "F-33061r567998_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030240", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230417r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030240", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:250", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230418", - "title": "Successful/unsuccessful uses of the chage command in RHEL 8 must generate an audit record.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"chage\" command is used to change or view user password expiry information.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000468-GPOS-00212, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:251", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \"chage\" command by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/bin/chage -F perm=x -F auid>=1000 -F auid!=unset -k privileged-chage\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"chage\\\" command is used to change or view user password expiry information.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000468-GPOS-00212, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230418", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230418r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:251", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33062r568001_fix", - "fixtext_fixref": "F-33062r568001_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030250", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230418r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030250", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:251", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230419", - "title": "Successful/unsuccessful uses of the chcon command in RHEL 8 must generate an audit record.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"chcon\" command is used to change file SELinux security context.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000468-GPOS-00212, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:252", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"chcon\" command by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/bin/chcon -F perm=x -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"chcon\\\" command is used to change file SELinux security context.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000468-GPOS-00212, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230419", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230419r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:252", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33063r568004_fix", - "fixtext_fixref": "F-33063r568004_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030260", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230419r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030260", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:252", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230420", - "title": "The RHEL 8 audit system must be configured to audit any usage of the setxattr system call.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). \"Setxattr\" is a system call used to set an extended attribute value.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:253", - "label": "check" - }, - { - "data": "Configure RHEL 8 to audit the execution of the \"setxattr\" system call, by adding or updating the following lines to \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S setxattr -F auid>=1000 -F auid!=unset -k perm_mod\n-a always,exit -F arch=b64 -S setxattr -F auid>=1000 -F auid!=unset -k perm_mod\n\n-a always,exit -F arch=b32 -S setxattr -F auid=0 -k perm_mod\n-a always,exit -F arch=b64 -S setxattr -F auid=0 -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). \\\"Setxattr\\\" is a system call used to set an extended attribute value.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230420", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230420r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:253", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33064r568007_fix", - "fixtext_fixref": "F-33064r568007_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030270", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230420r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030270", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:253", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230421", - "title": "Successful/unsuccessful uses of the ssh-agent in RHEL 8 must generate an audit record.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"ssh-agent\" is a program to hold private keys used for public key authentication.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:254", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"ssh-agent\" by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/bin/ssh-agent -F perm=x -F auid>=1000 -F auid!=unset -k privileged-ssh\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"ssh-agent\\\" is a program to hold private keys used for public key authentication.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230421", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230421r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:254", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33065r568010_fix", - "fixtext_fixref": "F-33065r568010_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030280", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230421r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030280", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:254", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230422", - "title": "Successful/unsuccessful uses of the passwd command in RHEL 8 must generate an audit record.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"passwd\" command is used to change passwords for user accounts.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:255", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \"passwd\" command by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/bin/passwd -F perm=x -F auid>=1000 -F auid!=unset -k privileged-passwd\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"passwd\\\" command is used to change passwords for user accounts.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230422", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230422r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:255", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33066r568013_fix", - "fixtext_fixref": "F-33066r568013_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030290", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230422r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030290", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:255", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230423", - "title": "Successful/unsuccessful uses of the mount command in RHEL 8 must generate an audit record.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"mount\" command is used to mount a filesystem.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:256", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"mount\" command by adding or updating the following rules in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/bin/mount -F perm=x -F auid>=1000 -F auid!=unset -k privileged-mount\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"mount\\\" command is used to mount a filesystem.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230423", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230423r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:256", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33067r568016_fix", - "fixtext_fixref": "F-33067r568016_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030300", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230423r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030300", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:256", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230424", - "title": "Successful/unsuccessful uses of the umount command in RHEL 8 must generate an audit record.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"umount\" command is used to unmount a filesystem.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:257", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"umount\" command by adding or updating the following rules in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/bin/umount -F perm=x -F auid>=1000 -F auid!=unset -k privileged-mount\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"umount\\\" command is used to unmount a filesystem.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230424", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230424r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:257", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33068r568019_fix", - "fixtext_fixref": "F-33068r568019_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030301", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230424r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030301", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:257", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230425", - "title": "Successful/unsuccessful uses of the mount syscall in RHEL 8 must generate an audit record.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"mount\" syscall is used to mount a filesystem.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:258", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"mount\" syscall by adding or updating the following rules in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F arch=b32 -S mount -F auid>=1000 -F auid!=unset -k privileged-mount\n-a always,exit -F arch=b64 -S mount -F auid>=1000 -F auid!=unset -k privileged-mount\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"mount\\\" syscall is used to mount a filesystem.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230425", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230425r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:258", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33069r568022_fix", - "fixtext_fixref": "F-33069r568022_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030302", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230425r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030302", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:258", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230426", - "title": "Successful/unsuccessful uses of the unix_update in RHEL 8 must generate an audit record.", - "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. \"Unix_update\" is a helper program for the \"pam_unix\" module that updates the password for a given user. It is not intended to be run directly from the command line and logs a security violation if done so.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:259", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \"unix_update\" by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/sbin/unix_update -F perm=x -F auid>=1000 -F auid!=unset -k privileged-unix-update\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. \\\"Unix_update\\\" is a helper program for the \\\"pam_unix\\\" module that updates the password for a given user. It is not intended to be run directly from the command line and logs a security violation if done so.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230426", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230426r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:259", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33070r568025_fix", - "fixtext_fixref": "F-33070r568025_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030310", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230426r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030310", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:259", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230427", - "title": "Successful/unsuccessful uses of postdrop in RHEL 8 must generate an audit record.", - "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. The \"postdrop\" command creates a file in the maildrop directory and copies its standard input to the file.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:260", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \"postdrop\" by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/sbin/postdrop -F perm=x -F auid>=1000 -F auid!=unset -k privileged-unix-update\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. The \\\"postdrop\\\" command creates a file in the maildrop directory and copies its standard input to the file.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230427", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230427r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:260", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33071r568028_fix", - "fixtext_fixref": "F-33071r568028_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030311", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230427r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030311", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:260", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230428", - "title": "Successful/unsuccessful uses of postqueue in RHEL 8 must generate an audit record.", - "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. The \"postqueue\" command implements the Postfix user interface for queue management.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:261", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \"postqueue\" by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/sbin/postqueue -F perm=x -F auid>=1000 -F auid!=unset -k privileged-unix-update\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. The \\\"postqueue\\\" command implements the Postfix user interface for queue management.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230428", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230428r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:261", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33072r568031_fix", - "fixtext_fixref": "F-33072r568031_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030312", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230428r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030312", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:261", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230429", - "title": "Successful/unsuccessful uses of semanage in RHEL 8 must generate an audit record.", - "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. The \"semanage\" command is used to configure certain elements of SELinux policy without requiring modification to or recompilation from policy sources.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:262", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \"semanage\" by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/sbin/semanage -F perm=x -F auid>=1000 -F auid!=unset -k privileged-unix-update\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. The \\\"semanage\\\" command is used to configure certain elements of SELinux policy without requiring modification to or recompilation from policy sources.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230429", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230429r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:262", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33073r568034_fix", - "fixtext_fixref": "F-33073r568034_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030313", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230429r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030313", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:262", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230430", - "title": "Successful/unsuccessful uses of setfiles in RHEL 8 must generate an audit record.", - "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. The \"setfiles\" command is primarily used to initialize the security context fields (extended attributes) on one or more filesystems (or parts of them). Usually it is initially run as part of the SELinux installation process (a step commonly known as labeling).\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:263", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \"setfiles\" by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/sbin/setfiles -F perm=x -F auid>=1000 -F auid!=unset -k privileged-unix-update\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. The \\\"setfiles\\\" command is primarily used to initialize the security context fields (extended attributes) on one or more filesystems (or parts of them). Usually it is initially run as part of the SELinux installation process (a step commonly known as labeling).\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230430", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230430r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:263", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33074r568037_fix", - "fixtext_fixref": "F-33074r568037_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030314", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230430r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030314", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:263", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230431", - "title": "Successful/unsuccessful uses of userhelper in RHEL 8 must generate an audit record.", - "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. The \"userhelper\" command is not intended to be run interactively. \"Userhelper\" provides a basic interface to change a user's password, gecos information, and shell. The main difference between this program and its traditional equivalents (passwd, chfn, chsh) is that prompts are written to standard out to make it easy for a graphical user interface wrapper to interface to it as a child process.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:264", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \"userhelper\" by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/sbin/userhelper -F perm=x -F auid>=1000 -F auid!=unset -k privileged-unix-update\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. The \\\"userhelper\\\" command is not intended to be run interactively. \\\"Userhelper\\\" provides a basic interface to change a user's password, gecos information, and shell. The main difference between this program and its traditional equivalents (passwd, chfn, chsh) is that prompts are written to standard out to make it easy for a graphical user interface wrapper to interface to it as a child process.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230431", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230431r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:264", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33075r568040_fix", - "fixtext_fixref": "F-33075r568040_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030315", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230431r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030315", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:264", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230432", - "title": "Successful/unsuccessful uses of setsebool in RHEL 8 must generate an audit record.", - "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. The \"setsebool\" command sets the current state of a particular SELinux boolean or a list of booleans to a given value.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:265", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \"setsebool\" by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/sbin/setsebool -F perm=x -F auid>=1000 -F auid!=unset -k privileged-unix-update\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. The \\\"setsebool\\\" command sets the current state of a particular SELinux boolean or a list of booleans to a given value.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230432", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230432r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:265", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33076r568043_fix", - "fixtext_fixref": "F-33076r568043_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030316", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230432r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030316", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:265", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230433", - "title": "Successful/unsuccessful uses of unix_chkpwd in RHEL 8 must generate an audit record.", - "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. The \"unix_chkpwd\" command is a helper program for the pam_unix module that verifies the password of the current user. It also checks password and account expiration dates in shadow. It is not intended to be run directly from the command line and logs a security violation if done so.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:266", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \"unix_chkpwd\" by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/sbin/unix_chkpwd -F perm=x -F auid>=1000 -F auid!=unset -k privileged-unix-update\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. The \\\"unix_chkpwd\\\" command is a helper program for the pam_unix module that verifies the password of the current user. It also checks password and account expiration dates in shadow. It is not intended to be run directly from the command line and logs a security violation if done so.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230433", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230433r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:266", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33077r568046_fix", - "fixtext_fixref": "F-33077r568046_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030317", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230433r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030317", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:266", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230434", - "title": "Successful/unsuccessful uses of the ssh-keysign in RHEL 8 must generate an audit record.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"ssh-keysign\" program is an SSH helper program for host-based authentication.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:267", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"ssh-keysign\" by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/libexec/openssh/ssh-keysign -F perm=x -F auid>=1000 -F auid!=unset -k privileged-ssh\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"ssh-keysign\\\" program is an SSH helper program for host-based authentication.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230434", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230434r744002_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:267", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33078r744001_fix", - "fixtext_fixref": "F-33078r744001_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030320", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230434r744002_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030320", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:267", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230435", - "title": "Successful/unsuccessful uses of the setfacl command in RHEL 8 must generate an audit record.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"setfacl\" command is used to set file access control lists.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:268", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"setfacl\" command by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/bin/setfacl -F perm=x -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"setfacl\\\" command is used to set file access control lists.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230435", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230435r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:268", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33079r568052_fix", - "fixtext_fixref": "F-33079r568052_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030330", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230435r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030330", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:268", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230436", - "title": "Successful/unsuccessful uses of the pam_timestamp_check command in RHEL 8 must generate an audit record.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"pam_timestamp_check\" command is used to check if the default timestamp is valid.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:269", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \"pam_timestamp_check\" command by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/sbin/pam_timestamp_check -F perm=x -F auid>=1000 -F auid!=unset -k privileged-pam_timestamp_check\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"pam_timestamp_check\\\" command is used to check if the default timestamp is valid.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230436", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230436r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:269", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33080r568055_fix", - "fixtext_fixref": "F-33080r568055_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030340", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230436r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030340", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:269", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230437", - "title": "Successful/unsuccessful uses of the newgrp command in RHEL 8 must generate an audit record.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"newgrp\" command is used to change the current group ID during a login session.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:270", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"newgrp\" command by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/bin/newgrp -F perm=x -F auid>=1000 -F auid!=unset -k priv_cmd\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"newgrp\\\" command is used to change the current group ID during a login session.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230437", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230437r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:270", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33081r568058_fix", - "fixtext_fixref": "F-33081r568058_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030350", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230437r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030350", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:270", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230438", - "title": "Successful/unsuccessful uses of the init_module command in RHEL 8 must generate an audit record.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"init_module\" command is used to load a kernel module.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:271", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"init_module\" command by adding or updating the following rules in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F arch=b32 -S init_module -F auid>=1000 -F auid!=unset -k module_chng\n-a always,exit -F arch=b64 -S init_module -F auid>=1000 -F auid!=unset -k module_chng\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"init_module\\\" command is used to load a kernel module.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230438", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230438r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:271", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33082r568061_fix", - "fixtext_fixref": "F-33082r568061_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030360", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230438r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030360", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:271", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230439", - "title": "Successful/unsuccessful uses of the rename command in RHEL 8 must generate an audit record.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"rename\" command will rename the specified files by replacing the first occurrence of expression in their name by replacement.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:272", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"rename\" command by adding or updating the following rules in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F arch=b32 -S rename -F auid>=1000 -F auid!=unset -k delete\n-a always,exit -F arch=b64 -S rename -F auid>=1000 -F auid!=unset -k delete\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"rename\\\" command will rename the specified files by replacing the first occurrence of expression in their name by replacement.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230439", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230439r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:272", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33083r568064_fix", - "fixtext_fixref": "F-33083r568064_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030361", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230439r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030361", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:272", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230440", - "title": "Successful/unsuccessful uses of the renameat command in RHEL 8 must generate an audit record.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"renameat\" command renames a file, moving it between directories if required.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:273", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"renameat\" command by adding or updating the following rules in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F arch=b32 -S renameat -F auid>=1000 -F auid!=unset -k delete\n-a always,exit -F arch=b64 -S renameat -F auid>=1000 -F auid!=unset -k delete\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"renameat\\\" command renames a file, moving it between directories if required.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230440", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230440r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:273", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33084r568067_fix", - "fixtext_fixref": "F-33084r568067_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030362", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230440r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030362", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:273", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230441", - "title": "Successful/unsuccessful uses of the rmdir command in RHEL 8 must generate an audit record.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"rmdir\" command removes empty directories.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:274", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"rmdir\" command by adding or updating the following rules in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F arch=b32 -S rmdir -F auid>=1000 -F auid!=unset -k delete\n-a always,exit -F arch=b64 -S rmdir -F auid>=1000 -F auid!=unset -k delete\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"rmdir\\\" command removes empty directories.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230441", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230441r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:274", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33085r568070_fix", - "fixtext_fixref": "F-33085r568070_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030363", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230441r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030363", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:274", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230442", - "title": "Successful/unsuccessful uses of the unlink command in RHEL 8 must generate an audit record.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"unlink\" command deletes a name from the filesystem. If that name was the last link to a file and no processes have the file open, the file is deleted and the space it was using is made available for reuse. \n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:275", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"unlink\" command by adding or updating the following rules in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F arch=b32 -S unlink -F auid>=1000 -F auid!=unset -k delete\n-a always,exit -F arch=b64 -S unlink -F auid>=1000 -F auid!=unset -k delete\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"unlink\\\" command deletes a name from the filesystem. If that name was the last link to a file and no processes have the file open, the file is deleted and the space it was using is made available for reuse. \\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230442", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230442r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:275", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33086r568073_fix", - "fixtext_fixref": "F-33086r568073_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030364", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230442r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030364", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:275", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230443", - "title": "Successful/unsuccessful uses of the unlinkat command in RHEL 8 must generate an audit record.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"unlinkat\" system call operates in exactly the same way as either \"unlink\" or \"rmdir\" except for the differences described in the manual page.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:276", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"unlinkat\" command by adding or updating the following rules in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F arch=b32 -S unlinkat -F auid>=1000 -F auid!=unset -k delete\n-a always,exit -F arch=b64 -S unlinkat -F auid>=1000 -F auid!=unset -k delete\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"unlinkat\\\" system call operates in exactly the same way as either \\\"unlink\\\" or \\\"rmdir\\\" except for the differences described in the manual page.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230443", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230443r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:276", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33087r568076_fix", - "fixtext_fixref": "F-33087r568076_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030365", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230443r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030365", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:276", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230444", - "title": "Successful/unsuccessful uses of the gpasswd command in RHEL 8 must generate an audit record.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"gpasswd\" command is used to administer /etc/group and /etc/gshadow. Every group can have administrators, members and a password.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:277", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \"gpasswd\" command by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/bin/gpasswd -F perm=x -F auid>=1000 -F auid!=unset -k privileged-gpasswd\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"gpasswd\\\" command is used to administer /etc/group and /etc/gshadow. Every group can have administrators, members and a password.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230444", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230444r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:277", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33088r568079_fix", - "fixtext_fixref": "F-33088r568079_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030370", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230444r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030370", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:277", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230445", - "title": "Successful/unsuccessful uses of the finit_module command in RHEL 8 must generate an audit record.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"finit_module\" command is used to load a kernel module.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:278", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"finit_module\" command by adding or updating the following rules in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F arch=b32 -S finit_module -F auid>=1000 -F auid!=unset -k module_chng\n-a always,exit -F arch=b64 -S finit_module -F auid>=1000 -F auid!=unset -k module_chng\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"finit_module\\\" command is used to load a kernel module.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230445", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230445r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:278", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33089r568082_fix", - "fixtext_fixref": "F-33089r568082_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030380", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230445r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030380", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:278", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230446", - "title": "Successful/unsuccessful uses of the delete_module command in RHEL 8 must generate an audit record.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"delete_module\" command is used to unload a kernel module.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:279", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"delete_module\" command by adding or updating the following rules in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F arch=b32 -S delete_module -F auid>=1000 -F auid!=unset -k module_chng\n-a always,exit -F arch=b64 -S delete_module -F auid>=1000 -F auid!=unset -k module_chng\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"delete_module\\\" command is used to unload a kernel module.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230446", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230446r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:279", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33090r568085_fix", - "fixtext_fixref": "F-33090r568085_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030390", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230446r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030390", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:279", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230447", - "title": "Successful/unsuccessful uses of the crontab command in RHEL 8 must generate an audit record.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"crontab\" command is used to maintain crontab files for individual users. Crontab is the program used to install, remove, or list the tables used to drive the cron daemon. This is similar to the task scheduler used in other operating systems.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:280", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \"crontab\" command by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/bin/crontab -F perm=x -F auid>=1000 -F auid!=unset -k privileged-crontab\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"crontab\\\" command is used to maintain crontab files for individual users. Crontab is the program used to install, remove, or list the tables used to drive the cron daemon. This is similar to the task scheduler used in other operating systems.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230447", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230447r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:280", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33091r568088_fix", - "fixtext_fixref": "F-33091r568088_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030400", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230447r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030400", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:280", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230448", - "title": "Successful/unsuccessful uses of the chsh command in RHEL 8 must generate an audit record.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"chsh\" command is used to change the login shell.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:281", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"chsh\" command by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/bin/chsh -F perm=x -F auid>=1000 -F auid!=unset -k priv_cmd\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"chsh\\\" command is used to change the login shell.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230448", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230448r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:281", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33092r568091_fix", - "fixtext_fixref": "F-33092r568091_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030410", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230448r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030410", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:281", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230449", - "title": "Successful/unsuccessful uses of the truncate command in RHEL 8 must generate an audit record.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"truncate\" and \"ftruncate\" functions are used to truncate a file to a specified length. \n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:282", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"truncate\" command by adding or updating the following rules in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F arch=b32 -S truncate -F exit=-EPERM -F auid>=1000 -F auid!=unset -k perm_access\n-a always,exit -F arch=b64 -S truncate -F exit=-EPERM -F auid>=1000 -F auid!=unset -k perm_access\n\n-a always,exit -F arch=b32 -S truncate -F exit=-EACCES -F auid>=1000 -F auid!=unset -k perm_access\n-a always,exit -F arch=b64 -S truncate -F exit=-EACCES -F auid>=1000 -F auid!=unset -k perm_access\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"truncate\\\" and \\\"ftruncate\\\" functions are used to truncate a file to a specified length. \\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230449", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230449r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:282", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33093r568094_fix", - "fixtext_fixref": "F-33093r568094_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030420", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230449r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030420", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:282", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230450", - "title": "Successful/unsuccessful uses of the openat system call in RHEL 8 must generate an audit record.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"openat\" system call opens a file specified by a relative pathname.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:283", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"openat\" command by adding or updating the following rules in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F arch=b32 -S openat -F exit=-EPERM -F auid>=1000 -F auid!=unset -k perm_access\n-a always,exit -F arch=b64 -S openat -F exit=-EPERM -F auid>=1000 -F auid!=unset -k perm_access\n\n-a always,exit -F arch=b32 -S openat -F exit=-EACCES -F auid>=1000 -F auid!=unset -k perm_access\n-a always,exit -F arch=b64 -S openat -F exit=-EACCES -F auid>=1000 -F auid!=unset -k perm_access\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"openat\\\" system call opens a file specified by a relative pathname.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230450", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230450r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:283", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33094r568097_fix", - "fixtext_fixref": "F-33094r568097_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030430", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230450r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030430", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:283", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230451", - "title": "Successful/unsuccessful uses of the open system call in RHEL 8 must generate an audit record.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"open system\" call opens a file specified by a pathname. If the specified file does not exist, it may optionally be created by \"open\".\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:284", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"open\" system call by adding or updating the following rules in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F arch=b32 -S open -F exit=-EPERM -F auid>=1000 -F auid!=unset -k perm_access\n-a always,exit -F arch=b64 -S open -F exit=-EPERM -F auid>=1000 -F auid!=unset -k perm_access\n\n-a always,exit -F arch=b32 -S open -F exit=-EACCES -F auid>=1000 -F auid!=unset -k perm_access\n-a always,exit -F arch=b64 -S open -F exit=-EACCES -F auid>=1000 -F auid!=unset -k perm_access\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"open system\\\" call opens a file specified by a pathname. If the specified file does not exist, it may optionally be created by \\\"open\\\".\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230451", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230451r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:284", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33095r568100_fix", - "fixtext_fixref": "F-33095r568100_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030440", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230451r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030440", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:284", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230452", - "title": "Successful/unsuccessful uses of the open_by_handle_at system call in RHEL 8 must generate an audit record.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"name_to_handle_at\" and \"open_by_handle_at\" system calls split the functionality of openat into two parts: \"name_to_handle_at\" returns an opaque handle that corresponds to a specified file; \"open_by_handle_at\" opens the file corresponding to a handle returned by a previous call to \"name_to_handle_at\" and returns an open file descriptor.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:285", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"open_by_handle_at\" system call by adding or updating the following rules in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F arch=b32 -S open_by_handle_at -F exit=-EPERM -F auid>=1000 -F auid!=unset -k perm_access\n-a always,exit -F arch=b64 -S open_by_handle_at -F exit=-EPERM -F auid>=1000 -F auid!=unset -k perm_access\n\n-a always,exit -F arch=b32 -S open_by_handle_at -F exit=-EACCES -F auid>=1000 -F auid!=unset -k perm_access\n-a always,exit -F arch=b64 -S open_by_handle_at -F exit=-EACCES -F auid>=1000 -F auid!=unset -k perm_access\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"name_to_handle_at\\\" and \\\"open_by_handle_at\\\" system calls split the functionality of openat into two parts: \\\"name_to_handle_at\\\" returns an opaque handle that corresponds to a specified file; \\\"open_by_handle_at\\\" opens the file corresponding to a handle returned by a previous call to \\\"name_to_handle_at\\\" and returns an open file descriptor.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230452", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230452r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:285", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33096r568103_fix", - "fixtext_fixref": "F-33096r568103_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030450", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230452r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030450", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:285", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230453", - "title": "Successful/unsuccessful uses of the ftruncate command in RHEL 8 must generate an audit record.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"truncate\" and \"ftruncate\" functions are used to truncate a file to a specified length.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:286", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"ftruncate\" command by adding or updating the following rules in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F arch=b32 -S ftruncate -F exit=-EPERM -F auid>=1000 -F auid!=unset -k perm_access\n-a always,exit -F arch=b64 -S ftruncate -F exit=-EPERM -F auid>=1000 -F auid!=unset -k perm_access\n\n-a always,exit -F arch=b32 -S ftruncate -F exit=-EACCES -F auid>=1000 -F auid!=unset -k perm_access\n-a always,exit -F arch=b64 -S ftruncate -F exit=-EACCES -F auid>=1000 -F auid!=unset -k perm_access\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"truncate\\\" and \\\"ftruncate\\\" functions are used to truncate a file to a specified length.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230453", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230453r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:286", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33097r568106_fix", - "fixtext_fixref": "F-33097r568106_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030460", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230453r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030460", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:286", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230454", - "title": "Successful/unsuccessful uses of the creat system call in RHEL 8 must generate an audit record.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"creat\" system call is used to open and possibly create a file or device.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:287", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"creat\" system call by adding or updating the following rules in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F arch=b32 -S creat -F exit=-EPERM -F auid>=1000 -F auid!=unset -k perm_access\n-a always,exit -F arch=b64 -S creat -F exit=-EPERM -F auid>=1000 -F auid!=unset -k perm_access\n\n-a always,exit -F arch=b32 -S creat -F exit=-EACCES -F auid>=1000 -F auid!=unset -k perm_access\n-a always,exit -F arch=b64 -S creat -F exit=-EACCES -F auid>=1000 -F auid!=unset -k perm_access\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"creat\\\" system call is used to open and possibly create a file or device.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230454", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230454r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:287", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33098r568109_fix", - "fixtext_fixref": "F-33098r568109_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030470", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230454r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030470", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:287", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230455", - "title": "Successful/unsuccessful uses of the chown command in RHEL 8 must generate an audit record.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"chown\" command is used to change file owner and group.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033, SRG-OS-000466-GPOS-00210", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:288", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"chown\" command by adding or updating the following line to \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S chown -F auid>=1000 -F auid!=unset -k perm_mod\n-a always,exit -F arch=b64 -S chown -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"chown\\\" command is used to change file owner and group.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033, SRG-OS-000466-GPOS-00210\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230455", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230455r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:288", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33099r568112_fix", - "fixtext_fixref": "F-33099r568112_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030480", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230455r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030480", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:288", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230456", - "title": "Successful/unsuccessful uses of the chmod command in RHEL 8 must generate an audit record.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"chmod\" command changes the file mode bits of each given file according to mode, which can be either a symbolic representation of changes to make, or an octal number representing the bit pattern for the new mode bits.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033, SRG-OS-000466-GPOS-00210", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:289", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"chmod\" command by adding or updating the following line to \"/etc/audit/rules.d/audit.rules\": \n\n-a always,exit -F arch=b32 -S chmod -F auid>=1000 -F auid!=unset -k perm_mod\n-a always,exit -F arch=b64 -S chmod -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"chmod\\\" command changes the file mode bits of each given file according to mode, which can be either a symbolic representation of changes to make, or an octal number representing the bit pattern for the new mode bits.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033, SRG-OS-000466-GPOS-00210\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230456", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230456r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:289", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33100r568115_fix", - "fixtext_fixref": "F-33100r568115_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030490", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230456r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030490", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:289", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230457", - "title": "Successful/unsuccessful uses of the lchown system call in RHEL 8 must generate an audit record.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"lchown\" system call is used to change the ownership of the file specified by a path, which does not dereference symbolic links.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033, SRG-OS-000466-GPOS-00210", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:290", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"lchown\" system call by adding or updating the following lines to \"/etc/audit/rules.d/audit.rules\": \n\n-a always,exit -F arch=b32 -S lchown -F auid>=1000 -F auid!=unset -k perm_mod\n-a always,exit -F arch=b64 -S lchown -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"lchown\\\" system call is used to change the ownership of the file specified by a path, which does not dereference symbolic links.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033, SRG-OS-000466-GPOS-00210\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230457", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230457r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:290", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33101r568118_fix", - "fixtext_fixref": "F-33101r568118_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030500", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230457r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030500", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:290", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230458", - "title": "Successful/unsuccessful uses of the fchownat system call in RHEL 8 must generate an audit record.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"fchownat\" system call is used to change ownership of a file relative to a directory file descriptor.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033, SRG-OS-000466-GPOS-00210", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:291", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"fchownat\" system call by adding or updating the following lines to \"/etc/audit/rules.d/audit.rules\": \n\n-a always,exit -F arch=b32 -S fchownat -F auid>=1000 -F auid!=unset -k perm_mod\n-a always,exit -F arch=b64 -S fchownat -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"fchownat\\\" system call is used to change ownership of a file relative to a directory file descriptor.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033, SRG-OS-000466-GPOS-00210\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230458", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230458r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:291", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33102r568121_fix", - "fixtext_fixref": "F-33102r568121_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030510", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230458r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030510", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:291", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230459", - "title": "Successful/unsuccessful uses of the fchown system call in RHEL 8 must generate an audit record.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"fchown\" system call is used to change the ownership of a file referred to by the open file descriptor.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033, SRG-OS-000466-GPOS-00210", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:292", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"fchown\" system call by adding or updating the following line to \"/etc/audit/rules.d/audit.rules\": \n\n-a always,exit -F arch=b32 -S fchown -F auid>=1000 -F auid!=unset -k perm_mod\n-a always,exit -F arch=b64 -S fchown -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"fchown\\\" system call is used to change the ownership of a file referred to by the open file descriptor.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033, SRG-OS-000466-GPOS-00210\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230459", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230459r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:292", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33103r568124_fix", - "fixtext_fixref": "F-33103r568124_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030520", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230459r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030520", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:292", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230460", - "title": "Successful/unsuccessful uses of the fchmodat system call in RHEL 8 must generate an audit record.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"fchmodat\" system call is used to change permissions of a file relative to a directory file descriptor.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033, SRG-OS-000466-GPOS-00210", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:293", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"fchmodat\" system call by adding or updating the following lines to \"/etc/audit/rules.d/audit.rules\": \n\n-a always,exit -F arch=b32 -S fchmodat -F auid>=1000 -F auid!=unset -k perm_mod\n-a always,exit -F arch=b64 -S fchmodat -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"fchmodat\\\" system call is used to change permissions of a file relative to a directory file descriptor.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033, SRG-OS-000466-GPOS-00210\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230460", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230460r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:293", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33104r568127_fix", - "fixtext_fixref": "F-33104r568127_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030530", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230460r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030530", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:293", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230461", - "title": "Successful/unsuccessful uses of the fchmod system call in RHEL 8 must generate an audit record.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"fchmod\" system call is used to change permissions of a file.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033, SRG-OS-000466-GPOS-00210", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:294", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"fchmod\" system call by adding or updating the following line to \"/etc/audit/rules.d/audit.rules\": \n\n-a always,exit -F arch=b32 -S fchmod -F auid>=1000 -F auid!=unset -k perm_mod\n-a always,exit -F arch=b64 -S fchmod -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"fchmod\\\" system call is used to change permissions of a file.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033, SRG-OS-000466-GPOS-00210\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230461", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230461r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:294", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33105r568130_fix", - "fixtext_fixref": "F-33105r568130_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030540", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230461r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030540", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:294", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230462", - "title": "Successful/unsuccessful uses of the sudo command in RHEL 8 must generate an audit record.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"sudo\" command allows a permitted user to execute a command as the superuser or another user, as specified by the security policy.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000466-GPOS-00210", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:295", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"sudo\" command by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/bin/sudo -F perm=x -F auid>=1000 -F auid!=unset -k priv_cmd\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"sudo\\\" command allows a permitted user to execute a command as the superuser or another user, as specified by the security policy.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000466-GPOS-00210\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230462", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230462r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:295", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33106r568133_fix", - "fixtext_fixref": "F-33106r568133_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030550", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230462r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030550", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:295", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230463", - "title": "Successful/unsuccessful uses of the usermod command in RHEL 8 must generate an audit record.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"usermod\" command modifies the system account files to reflect the changes that are specified on the command line.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000466-GPOS-00210", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:296", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \"usermod\" command by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/sbin/usermod -F perm=x -F auid>=1000 -F auid!=unset -k privileged-usermod\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"usermod\\\" command modifies the system account files to reflect the changes that are specified on the command line.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000466-GPOS-00210\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230463", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230463r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:296", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33107r568136_fix", - "fixtext_fixref": "F-33107r568136_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030560", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230463r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030560", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:296", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230464", - "title": "Successful/unsuccessful uses of the chacl command in RHEL 8 must generate an audit record.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"chacl\" command is used to change the access control list of a file or directory.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000466-GPOS-00210", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:297", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"chacl\" command by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/bin/chacl -F perm=x -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"chacl\\\" command is used to change the access control list of a file or directory.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000466-GPOS-00210\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230464", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230464r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:297", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33108r568139_fix", - "fixtext_fixref": "F-33108r568139_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030570", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230464r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030570", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:297", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230465", - "title": "Successful/unsuccessful uses of the kmod command in RHEL 8 must generate an audit record.", - "desc": "Without the capability to generate audit records, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"kmod\" command is used to control Linux Kernel modules.\n\nThe list of audited events is the set of events for which audits are to be generated. This set of events is typically a subset of the list of all events for which the system is capable of generating audit records.\n\nDoD has defined the list of events for which RHEL 8 will provide an audit record generation capability as the following:\n\n1) Successful and unsuccessful attempts to access, modify, or delete privileges, security objects, security levels, or categories of information (e.g., classification levels);\n\n2) Access actions, such as successful and unsuccessful logon attempts, privileged activities or other system-level access, starting and ending time for user access to the system, concurrent logons from different workstations, successful and unsuccessful accesses to objects, all program initiations, and all direct access to the information system;\n\n3) All account creations, modifications, disabling, and terminations; and \n\n4) All kernel module load, unload, and restart actions.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000471-GPOS-00216, SRG-OS-000477-GPOS-00222", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:298", - "label": "check" - }, - { - "data": "Configure RHEL 8 to audit the execution of the module management program \"kmod\" by adding or updating the following line to \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F path=/usr/bin/kmod -F perm=x -F auid>=1000 -F auid!=unset -k modules\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without the capability to generate audit records, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"kmod\\\" command is used to control Linux Kernel modules.\\n\\nThe list of audited events is the set of events for which audits are to be generated. This set of events is typically a subset of the list of all events for which the system is capable of generating audit records.\\n\\nDoD has defined the list of events for which RHEL 8 will provide an audit record generation capability as the following:\\n\\n1) Successful and unsuccessful attempts to access, modify, or delete privileges, security objects, security levels, or categories of information (e.g., classification levels);\\n\\n2) Access actions, such as successful and unsuccessful logon attempts, privileged activities or other system-level access, starting and ending time for user access to the system, concurrent logons from different workstations, successful and unsuccessful accesses to objects, all program initiations, and all direct access to the information system;\\n\\n3) All account creations, modifications, disabling, and terminations; and \\n\\n4) All kernel module load, unload, and restart actions.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000471-GPOS-00216, SRG-OS-000477-GPOS-00222\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230465", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230465r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:298", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33109r568142_fix", - "fixtext_fixref": "F-33109r568142_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030580", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230465r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030580", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:298", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230467", - "title": "Successful/unsuccessful modifications to the lastlog file in RHEL 8 must generate an audit record.", - "desc": "Without the capability to generate audit records, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nThe list of audited events is the set of events for which audits are to be generated. This set of events is typically a subset of the list of all events for which the system is capable of generating audit records.\n\nDoD has defined the list of events for which RHEL 8 will provide an audit record generation capability as the following:\n\n1) Successful and unsuccessful attempts to access, modify, or delete privileges, security objects, security levels, or categories of information (e.g., classification levels);\n\n2) Access actions, such as successful and unsuccessful logon attempts, privileged activities or other system-level access, starting and ending time for user access to the system, concurrent logons from different workstations, successful and unsuccessful accesses to objects, all program initiations, and all direct access to the information system;\n\n3) All account creations, modifications, disabling, and terminations; and \n\n4) All kernel module load, unload, and restart actions.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000473-GPOS-00218", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:299", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful modifications to the \"lastlog\" file by adding or updating the following rules in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-w /var/log/lastlog -p wa -k logins\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without the capability to generate audit records, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nThe list of audited events is the set of events for which audits are to be generated. This set of events is typically a subset of the list of all events for which the system is capable of generating audit records.\\n\\nDoD has defined the list of events for which RHEL 8 will provide an audit record generation capability as the following:\\n\\n1) Successful and unsuccessful attempts to access, modify, or delete privileges, security objects, security levels, or categories of information (e.g., classification levels);\\n\\n2) Access actions, such as successful and unsuccessful logon attempts, privileged activities or other system-level access, starting and ending time for user access to the system, concurrent logons from different workstations, successful and unsuccessful accesses to objects, all program initiations, and all direct access to the information system;\\n\\n3) All account creations, modifications, disabling, and terminations; and \\n\\n4) All kernel module load, unload, and restart actions.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000473-GPOS-00218\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230467", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230467r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:299", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33111r568148_fix", - "fixtext_fixref": "F-33111r568148_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030600", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230467r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030600", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:299", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230471", - "title": "RHEL 8 must allow only the Information System Security Manager (ISSM) (or individuals or roles appointed by the ISSM) to select which auditable events are to be audited.", - "desc": "Without the capability to restrict the roles and individuals that can select which events are audited, unauthorized personnel may be able to prevent the auditing of critical events. Misconfigured audits may degrade the system's performance by overwhelming the audit log. Misconfigured audits may also make it more difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:303", - "label": "check" - }, - { - "data": "Configure the files in directory \"/etc/audit/rules.d/\" and the \"/etc/audit/auditd.conf\" file to have a mode of \"0640\" with the following commands:\n\n$ sudo chmod 0640 /etc/audit/rules.d/audit.rules\n$ sudo chmod 0640 /etc/audit/rules.d/[customrulesfile].rules\n$ sudo chmod 0640 /etc/audit/auditd.conf", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000171" - ], - "nist": [ - "AU-12 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without the capability to restrict the roles and individuals that can select which events are audited, unauthorized personnel may be able to prevent the auditing of critical events. Misconfigured audits may degrade the system's performance by overwhelming the audit log. Misconfigured audits may also make it more difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230471", - "group_title": "SRG-OS-000063-GPOS-00032", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230471r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:303", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33115r568160_fix", - "fixtext_fixref": "F-33115r568160_fix", - "ident": { - "text": "CCI-000171", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030610", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230471r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030610", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000171", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:303", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230472", - "title": "RHEL 8 audit tools must have a mode of 0755 or less permissive.", - "desc": "Protecting audit information also includes identifying and protecting the tools used to view and manipulate log data. Therefore, protecting audit tools is necessary to prevent unauthorized operation on audit information.\n\nRHEL 8 systems providing tools to interface with audit information will leverage user permissions and roles identifying the user accessing the tools, and the corresponding rights the user enjoys, to make access decisions regarding the access to audit tools.\n\nAudit tools include, but are not limited to, vendor-provided and open source audit tools needed to successfully view and manipulate audit information system activity and records. Audit tools include custom queries and report generators.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:304", - "label": "check" - }, - { - "data": "Configure the audit tools to be protected from unauthorized access by setting the correct permissive mode using the following command:\n\n$ sudo chmod 0755 [audit_tool]\n\nReplace \"[audit_tool]\" with the audit tool that does not have the correct permissive mode.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001493" - ], - "nist": [ - "AU-9 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Protecting audit information also includes identifying and protecting the tools used to view and manipulate log data. Therefore, protecting audit tools is necessary to prevent unauthorized operation on audit information.\\n\\nRHEL 8 systems providing tools to interface with audit information will leverage user permissions and roles identifying the user accessing the tools, and the corresponding rights the user enjoys, to make access decisions regarding the access to audit tools.\\n\\nAudit tools include, but are not limited to, vendor-provided and open source audit tools needed to successfully view and manipulate audit information system activity and records. Audit tools include custom queries and report generators.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230472", - "group_title": "SRG-OS-000256-GPOS-00097", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230472r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:304", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33116r568163_fix", - "fixtext_fixref": "F-33116r568163_fix", - "ident": { - "text": "CCI-001493", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030620", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230472r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030620", - "weight": "10.000000", - "result": "pass", - "ident": { - "text": "CCI-001493", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:304", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230473", - "title": "RHEL 8 audit tools must be owned by root.", - "desc": "Protecting audit information also includes identifying and protecting the tools used to view and manipulate log data. Therefore, protecting audit tools is necessary to prevent unauthorized operation on audit information.\n\nRHEL 8 systems providing tools to interface with audit information will leverage user permissions and roles identifying the user accessing the tools, and the corresponding rights the user enjoys, to make access decisions regarding the access to audit tools.\n\nAudit tools include, but are not limited to, vendor-provided and open source audit tools needed to successfully view and manipulate audit information system activity and records. Audit tools include custom queries and report generators.\n\nSatisfies: SRG-OS-000256-GPOS-00097, SRG-OS-000257-GPOS-00098, SRG-OS-000258-GPOS-00099", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:305", - "label": "check" - }, - { - "data": "Configure the audit tools to be owned by \"root\", by running the following command:\n\n$ sudo chown root [audit_tool]\n\nReplace \"[audit_tool]\" with each audit tool not owned by \"root\".", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001493" - ], - "nist": [ - "AU-9 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Protecting audit information also includes identifying and protecting the tools used to view and manipulate log data. Therefore, protecting audit tools is necessary to prevent unauthorized operation on audit information.\\n\\nRHEL 8 systems providing tools to interface with audit information will leverage user permissions and roles identifying the user accessing the tools, and the corresponding rights the user enjoys, to make access decisions regarding the access to audit tools.\\n\\nAudit tools include, but are not limited to, vendor-provided and open source audit tools needed to successfully view and manipulate audit information system activity and records. Audit tools include custom queries and report generators.\\n\\nSatisfies: SRG-OS-000256-GPOS-00097, SRG-OS-000257-GPOS-00098, SRG-OS-000258-GPOS-00099\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230473", - "group_title": "SRG-OS-000256-GPOS-00097", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230473r744008_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:305", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33117r568166_fix", - "fixtext_fixref": "F-33117r568166_fix", - "ident": { - "text": "CCI-001493", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030630", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230473r744008_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030630", - "weight": "10.000000", - "result": "pass", - "ident": { - "text": "CCI-001493", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:305", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230474", - "title": "RHEL 8 audit tools must be group-owned by root.", - "desc": "Protecting audit information also includes identifying and protecting the tools used to view and manipulate log data. Therefore, protecting audit tools is necessary to prevent unauthorized operation on audit information.\n\nRHEL 8 systems providing tools to interface with audit information will leverage user permissions and roles identifying the user accessing the tools, and the corresponding rights the user enjoys, to make access decisions regarding the access to audit tools.\n\nAudit tools include, but are not limited to, vendor-provided and open source audit tools needed to successfully view and manipulate audit information system activity and records. Audit tools include custom queries and report generators.\n\nSatisfies: SRG-OS-000256-GPOS-00097, SRG-OS-000257-GPOS-00098, SRG-OS-000258-GPOS-00099", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:306", - "label": "check" - }, - { - "data": "Configure the audit tools to be group-owned by \"root\", by running the following command:\n\n$ sudo chgrp root [audit_tool]\n\nReplace \"[audit_tool]\" with each audit tool not group-owned by \"root\".", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001493" - ], - "nist": [ - "AU-9 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Protecting audit information also includes identifying and protecting the tools used to view and manipulate log data. Therefore, protecting audit tools is necessary to prevent unauthorized operation on audit information.\\n\\nRHEL 8 systems providing tools to interface with audit information will leverage user permissions and roles identifying the user accessing the tools, and the corresponding rights the user enjoys, to make access decisions regarding the access to audit tools.\\n\\nAudit tools include, but are not limited to, vendor-provided and open source audit tools needed to successfully view and manipulate audit information system activity and records. Audit tools include custom queries and report generators.\\n\\nSatisfies: SRG-OS-000256-GPOS-00097, SRG-OS-000257-GPOS-00098, SRG-OS-000258-GPOS-00099\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230474", - "group_title": "SRG-OS-000256-GPOS-00097", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230474r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:306", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33118r568169_fix", - "fixtext_fixref": "F-33118r568169_fix", - "ident": { - "text": "CCI-001493", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030640", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230474r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030640", - "weight": "10.000000", - "result": "pass", - "ident": { - "text": "CCI-001493", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:306", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230477", - "title": "RHEL 8 must have the packages required for offloading audit logs installed.", - "desc": "Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\n\nOff-loading is a common process in information systems with limited audit storage capacity.\n\nRHEL 8 installation media provides \"rsyslogd\". \"rsyslogd\" is a system utility providing support for message logging. Support for both internet and UNIX domain sockets enables this utility to support both local and remote logging. Couple this utility with \"gnutls\" (which is a secure communications library implementing the SSL, TLS and DTLS protocols), and you have a method to securely encrypt and off-load auditing.\n\nRsyslog provides three ways to forward message: the traditional UDP transport, which is extremely lossy but standard; the plain TCP based transport, which loses messages only during certain situations but is widely available; and the RELP transport, which does not lose messages but is currently available only as part of the rsyslogd 3.15.0 and above.\nExamples of each configuration:\nUDP *.* @remotesystemname\nTCP *.* @@remotesystemname\nRELP *.* :omrelp:remotesystemname:2514\nNote that a port number was given as there is no standard port for RELP.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:412", - "label": "check" - }, - { - "data": "Configure the operating system to offload audit logs by installing the required packages with the following command:\n\n$ sudo yum install rsyslog", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\\n\\nOff-loading is a common process in information systems with limited audit storage capacity.\\n\\nRHEL 8 installation media provides \\\"rsyslogd\\\". \\\"rsyslogd\\\" is a system utility providing support for message logging. Support for both internet and UNIX domain sockets enables this utility to support both local and remote logging. Couple this utility with \\\"gnutls\\\" (which is a secure communications library implementing the SSL, TLS and DTLS protocols), and you have a method to securely encrypt and off-load auditing.\\n\\nRsyslog provides three ways to forward message: the traditional UDP transport, which is extremely lossy but standard; the plain TCP based transport, which loses messages only during certain situations but is widely available; and the RELP transport, which does not lose messages but is currently available only as part of the rsyslogd 3.15.0 and above.\\nExamples of each configuration:\\nUDP *.* @remotesystemname\\nTCP *.* @@remotesystemname\\nRELP *.* :omrelp:remotesystemname:2514\\nNote that a port number was given as there is no standard port for RELP.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230477", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230477r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:412", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33121r568178_fix", - "fixtext_fixref": "F-33121r568178_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030670", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230477r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030670", - "weight": "10.000000", - "result": "pass", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:412", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230478", - "title": "RHEL 8 must have the packages required for encrypting offloaded audit logs installed.", - "desc": "Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\n\nOff-loading is a common process in information systems with limited audit storage capacity.\n\nRHEL 8 installation media provides \"rsyslogd\". \"rsyslogd\" is a system utility providing support for message logging. Support for both internet and UNIX domain sockets enables this utility to support both local and remote logging. Couple this utility with \"rsyslog-gnutls\" (which is a secure communications library implementing the SSL, TLS and DTLS protocols), and you have a method to securely encrypt and off-load auditing.\n\nRsyslog provides three ways to forward message: the traditional UDP transport, which is extremely lossy but standard; the plain TCP based transport, which loses messages only during certain situations but is widely available; and the RELP transport, which does not lose messages but is currently available only as part of the rsyslogd 3.15.0 and above.\nExamples of each configuration:\nUDP *.* @remotesystemname\nTCP *.* @@remotesystemname\nRELP *.* :omrelp:remotesystemname:2514\nNote that a port number was given as there is no standard port for RELP.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:307", - "label": "check" - }, - { - "data": "Configure the operating system to encrypt offloaded audit logs by installing the required packages with the following command:\n\n$ sudo yum install rsyslog-gnutls", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\\n\\nOff-loading is a common process in information systems with limited audit storage capacity.\\n\\nRHEL 8 installation media provides \\\"rsyslogd\\\". \\\"rsyslogd\\\" is a system utility providing support for message logging. Support for both internet and UNIX domain sockets enables this utility to support both local and remote logging. Couple this utility with \\\"rsyslog-gnutls\\\" (which is a secure communications library implementing the SSL, TLS and DTLS protocols), and you have a method to securely encrypt and off-load auditing.\\n\\nRsyslog provides three ways to forward message: the traditional UDP transport, which is extremely lossy but standard; the plain TCP based transport, which loses messages only during certain situations but is widely available; and the RELP transport, which does not lose messages but is currently available only as part of the rsyslogd 3.15.0 and above.\\nExamples of each configuration:\\nUDP *.* @remotesystemname\\nTCP *.* @@remotesystemname\\nRELP *.* :omrelp:remotesystemname:2514\\nNote that a port number was given as there is no standard port for RELP.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230478", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230478r744011_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:307", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33122r744010_fix", - "fixtext_fixref": "F-33122r744010_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030680", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230478r744011_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030680", - "weight": "10.000000", - "result": "pass", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:307", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230480", - "title": "RHEL 8 must take appropriate action when the internal event queue is full.", - "desc": "Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\n\nOff-loading is a common process in information systems with limited audit storage capacity.\n\nRHEL 8 installation media provides \"rsyslogd\". \"rsyslogd\" is a system utility providing support for message logging. Support for both internet and UNIX domain sockets enables this utility to support both local and remote logging. Couple this utility with \"gnutls\" (which is a secure communications library implementing the SSL, TLS and DTLS protocols), and you have a method to securely encrypt and off-load auditing.\n\nSatisfies: SRG-OS-000342-GPOS-00133, SRG-OS-000479-GPOS-00224", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:308", - "label": "check" - }, - { - "data": "Edit the /etc/audit/auditd.conf file and add or update the \"overflow_action\" option:\n\noverflow_action = syslog\n\nThe audit daemon must be restarted for changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001851" - ], - "nist": [ - "AU-4 (1)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\\n\\nOff-loading is a common process in information systems with limited audit storage capacity.\\n\\nRHEL 8 installation media provides \\\"rsyslogd\\\". \\\"rsyslogd\\\" is a system utility providing support for message logging. Support for both internet and UNIX domain sockets enables this utility to support both local and remote logging. Couple this utility with \\\"gnutls\\\" (which is a secure communications library implementing the SSL, TLS and DTLS protocols), and you have a method to securely encrypt and off-load auditing.\\n\\nSatisfies: SRG-OS-000342-GPOS-00133, SRG-OS-000479-GPOS-00224\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230480", - "group_title": "SRG-OS-000342-GPOS-00133", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230480r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:308", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33124r568187_fix", - "fixtext_fixref": "F-33124r568187_fix", - "ident": { - "text": "CCI-001851", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030700", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230480r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030700", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-001851", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:308", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230483", - "title": "RHEL 8 must take action when allocated audit record storage volume reaches 75 percent of the repository maximum audit record storage capacity.", - "desc": "If security personnel are not notified immediately when storage volume reaches 75 percent utilization, they are unable to plan for audit record storage capacity expansion.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:309", - "label": "check" - }, - { - "data": "Configure the operating system to initiate an action to notify the SA and ISSO (at a minimum) when allocated audit record storage volume reaches 75 percent of the repository maximum audit record storage capacity by adding/modifying the following line in the /etc/audit/auditd.conf file.\n\nspace_left = 25%\n\nNote: Option names and values in the auditd.conf file are case insensitive.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001855" - ], - "nist": [ - "AU-5 (1)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"If security personnel are not notified immediately when storage volume reaches 75 percent utilization, they are unable to plan for audit record storage capacity expansion.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230483", - "group_title": "SRG-OS-000343-GPOS-00134", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230483r744014_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:309", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33127r744013_fix", - "fixtext_fixref": "F-33127r744013_fix", - "ident": { - "text": "CCI-001855", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030730", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230483r744014_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "medium", - "version": "RHEL-08-030730", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-001855", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:309", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230485", - "title": "RHEL 8 must disable the chrony daemon from acting as a server.", - "desc": "Inaccurate time stamps make it more difficult to correlate events and can lead to an inaccurate analysis. Determining the correct time a particular event occurred on a system is critical when conducting forensic analysis and investigating system events. Sources outside the configured acceptable allowance (drift) may be inaccurate.\n\nMinimizing the exposure of the server functionality of the chrony daemon diminishes the attack surface.\n\nRHEL 8 utilizes the \"timedatectl\" command to view the status of the \"systemd-timesyncd.service\". The \"timedatectl\" status will display the local time, UTC, and the offset from UTC.\n\nNote that USNO offers authenticated NTP service to DoD and U.S. Government agencies operating on the NIPR and SIPR networks. Visit https://www.usno.navy.mil/USNO/time/ntp/dod-customers for more information.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:310", - "label": "check" - }, - { - "data": "Configure the operating system to disable the chrony daemon from acting as a server by adding/modifying the following line in the /etc/chrony.conf file.\n\nport 0", - "label": "fix" - } - ], - "impact": 0.3, - "refs": [], - "tags": { - "cci": [ - "CCI-000381" - ], - "nist": [ - "CM-7 a" - ], - "severity": "low", - "description": "{\"VulnDiscussion\":\"Inaccurate time stamps make it more difficult to correlate events and can lead to an inaccurate analysis. Determining the correct time a particular event occurred on a system is critical when conducting forensic analysis and investigating system events. Sources outside the configured acceptable allowance (drift) may be inaccurate.\\n\\nMinimizing the exposure of the server functionality of the chrony daemon diminishes the attack surface.\\n\\nRHEL 8 utilizes the \\\"timedatectl\\\" command to view the status of the \\\"systemd-timesyncd.service\\\". The \\\"timedatectl\\\" status will display the local time, UTC, and the offset from UTC.\\n\\nNote that USNO offers authenticated NTP service to DoD and U.S. Government agencies operating on the NIPR and SIPR networks. Visit https://www.usno.navy.mil/USNO/time/ntp/dod-customers for more information.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230485", - "group_title": "SRG-OS-000095-GPOS-00049", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230485r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:310", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33129r568202_fix", - "fixtext_fixref": "F-33129r568202_fix", - "ident": { - "text": "CCI-000381", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030741", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230485r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "low", - "version": "RHEL-08-030741", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000381", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:310", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230486", - "title": "RHEL 8 must disable network management of the chrony daemon.", - "desc": "Inaccurate time stamps make it more difficult to correlate events and can lead to an inaccurate analysis. Determining the correct time a particular event occurred on a system is critical when conducting forensic analysis and investigating system events. Sources outside the configured acceptable allowance (drift) may be inaccurate.\n\nNot exposing the management interface of the chrony daemon on the network diminishes the attack space.\n\nRHEL 8 utilizes the \"timedatectl\" command to view the status of the \"systemd-timesyncd.service\". The \"timedatectl\" status will display the local time, UTC, and the offset from UTC.\n\nNote that USNO offers authenticated NTP service to DoD and U.S. Government agencies operating on the NIPR and SIPR networks. Visit https://www.usno.navy.mil/USNO/time/ntp/dod-customers for more information.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:311", - "label": "check" - }, - { - "data": "Configure the operating system disable network management of the chrony daemon by adding/modifying the following line in the /etc/chrony.conf file.\n\ncmdport 0", - "label": "fix" - } - ], - "impact": 0.3, - "refs": [], - "tags": { - "cci": [ - "CCI-000381" - ], - "nist": [ - "CM-7 a" - ], - "severity": "low", - "description": "{\"VulnDiscussion\":\"Inaccurate time stamps make it more difficult to correlate events and can lead to an inaccurate analysis. Determining the correct time a particular event occurred on a system is critical when conducting forensic analysis and investigating system events. Sources outside the configured acceptable allowance (drift) may be inaccurate.\\n\\nNot exposing the management interface of the chrony daemon on the network diminishes the attack space.\\n\\nRHEL 8 utilizes the \\\"timedatectl\\\" command to view the status of the \\\"systemd-timesyncd.service\\\". The \\\"timedatectl\\\" status will display the local time, UTC, and the offset from UTC.\\n\\nNote that USNO offers authenticated NTP service to DoD and U.S. Government agencies operating on the NIPR and SIPR networks. Visit https://www.usno.navy.mil/USNO/time/ntp/dod-customers for more information.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230486", - "group_title": "SRG-OS-000095-GPOS-00049", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230486r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:311", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33130r568205_fix", - "fixtext_fixref": "F-33130r568205_fix", - "ident": { - "text": "CCI-000381", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-030742", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230486r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "low", - "version": "RHEL-08-030742", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000381", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:311", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230487", - "title": "RHEL 8 must not have the telnet-server package installed.", - "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\n\nExamples of non-essential capabilities include, but are not limited to, games, software packages, tools, and demonstration software not related to requirements or providing a wide array of functionality not required for every mission, but which cannot be disabled.\n\nVerify the operating system is configured to disable non-essential capabilities. The most secure way of ensuring a non-essential capability is disabled is to not have the capability installed.\n\nThe telnet service provides an unencrypted remote access service that does not provide for the confidentiality and integrity of user passwords or the remote session.\n\nIf a privileged user were to log on using this service, the privileged user password could be compromised.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:312", - "label": "check" - }, - { - "data": "Configure the operating system to disable non-essential capabilities by removing the telnet-server package from the system with the following command:\n\n$ sudo yum remove telnet-server", - "label": "fix" - } - ], - "impact": 0.7, - "refs": [], - "tags": { - "cci": [ - "CCI-000381" - ], - "nist": [ - "CM-7 a" - ], - "severity": "high", - "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\\n\\nExamples of non-essential capabilities include, but are not limited to, games, software packages, tools, and demonstration software not related to requirements or providing a wide array of functionality not required for every mission, but which cannot be disabled.\\n\\nVerify the operating system is configured to disable non-essential capabilities. The most secure way of ensuring a non-essential capability is disabled is to not have the capability installed.\\n\\nThe telnet service provides an unencrypted remote access service that does not provide for the confidentiality and integrity of user passwords or the remote session.\\n\\nIf a privileged user were to log on using this service, the privileged user password could be compromised.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230487", - "group_title": "SRG-OS-000095-GPOS-00049", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230487r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:312", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33131r568208_fix", - "fixtext_fixref": "F-33131r568208_fix", - "ident": { - "text": "CCI-000381", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-040000", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230487r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:29-05:00", - "severity": "high", - "version": "RHEL-08-040000", - "weight": "10.000000", - "result": "pass", - "ident": { - "text": "CCI-000381", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:312", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:29-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230488", - "title": "RHEL 8 must not have any automated bug reporting tools installed.", - "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\n\nExamples of non-essential capabilities include, but are not limited to, games, software packages, tools, and demonstration software not related to requirements or providing a wide array of functionality not required for every mission, but which cannot be disabled.\n\nVerify the operating system is configured to disable non-essential capabilities. The most secure way of ensuring a non-essential capability is disabled is to not have the capability installed.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:313", - "label": "check" - }, - { - "data": "Configure the operating system to disable non-essential capabilities by removing automated bug reporting packages from the system with the following command:\n\n$ sudo yum remove abrt*", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000381" - ], - "nist": [ - "CM-7 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\\n\\nExamples of non-essential capabilities include, but are not limited to, games, software packages, tools, and demonstration software not related to requirements or providing a wide array of functionality not required for every mission, but which cannot be disabled.\\n\\nVerify the operating system is configured to disable non-essential capabilities. The most secure way of ensuring a non-essential capability is disabled is to not have the capability installed.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230488", - "group_title": "SRG-OS-000095-GPOS-00049", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230488r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:313", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33132r568211_fix", - "fixtext_fixref": "F-33132r568211_fix", - "ident": { - "text": "CCI-000381", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-040001", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230488r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:31-05:00", - "severity": "medium", - "version": "RHEL-08-040001", - "weight": "10.000000", - "result": "pass", - "ident": { - "text": "CCI-000381", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:313", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:31-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230489", - "title": "RHEL 8 must not have the sendmail package installed.", - "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\n\nExamples of non-essential capabilities include, but are not limited to, games, software packages, tools, and demonstration software not related to requirements or providing a wide array of functionality not required for every mission, but which cannot be disabled.\n\nVerify the operating system is configured to disable non-essential capabilities. The most secure way of ensuring a non-essential capability is disabled is to not have the capability installed.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:314", - "label": "check" - }, - { - "data": "Configure the operating system to disable non-essential capabilities by removing the sendmail package from the system with the following command:\n\n$ sudo yum remove sendmail", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000381" - ], - "nist": [ - "CM-7 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\\n\\nExamples of non-essential capabilities include, but are not limited to, games, software packages, tools, and demonstration software not related to requirements or providing a wide array of functionality not required for every mission, but which cannot be disabled.\\n\\nVerify the operating system is configured to disable non-essential capabilities. The most secure way of ensuring a non-essential capability is disabled is to not have the capability installed.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230489", - "group_title": "SRG-OS-000095-GPOS-00049", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230489r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:314", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33133r568214_fix", - "fixtext_fixref": "F-33133r568214_fix", - "ident": { - "text": "CCI-000381", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-040002", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230489r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:31-05:00", - "severity": "medium", - "version": "RHEL-08-040002", - "weight": "10.000000", - "result": "pass", - "ident": { - "text": "CCI-000381", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:314", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:31-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230492", - "title": "RHEL 8 must not have the rsh-server package installed.", - "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\n\nThe rsh-server service provides an unencrypted remote access service that does not provide for the confidentiality and integrity of user passwords or the remote session and has very weak authentication.\n\nIf a privileged user were to log on using this service, the privileged user password could be compromised.\n\nSatisfies: SRG-OS-000095-GPOS-00049, SRG-OS-000074-GPOS-00042", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:317", - "label": "check" - }, - { - "data": "Configure the operating system to disable non-essential capabilities by removing the rsh-server package from the system with the following command:\n\n$ sudo yum remove rsh-server", - "label": "fix" - } - ], - "impact": 0.7, - "refs": [], - "tags": { - "cci": [ - "CCI-000381" - ], - "nist": [ - "CM-7 a" - ], - "severity": "high", - "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\\n\\nThe rsh-server service provides an unencrypted remote access service that does not provide for the confidentiality and integrity of user passwords or the remote session and has very weak authentication.\\n\\nIf a privileged user were to log on using this service, the privileged user password could be compromised.\\n\\nSatisfies: SRG-OS-000095-GPOS-00049, SRG-OS-000074-GPOS-00042\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230492", - "group_title": "SRG-OS-000095-GPOS-00049", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230492r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:317", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33136r568223_fix", - "fixtext_fixref": "F-33136r568223_fix", - "ident": { - "text": "CCI-000381", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-040010", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230492r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:31-05:00", - "severity": "high", - "version": "RHEL-08-040010", - "weight": "10.000000", - "result": "pass", - "ident": { - "text": "CCI-000381", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:317", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:31-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230494", - "title": "RHEL 8 must disable the asynchronous transfer mode (ATM) protocol.", - "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nFailing to disconnect unused protocols can result in a system compromise.\n\nThe Asynchronous Transfer Mode (ATM) is a protocol operating on network, data link, and physical layers, based on virtual circuits and virtual paths. Disabling ATM protects the system against exploitation of any laws in its implementation.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:318", - "label": "check" - }, - { - "data": "Configure the operating system to disable the ability to use the ATM protocol kernel module.\n\nAdd or update the following lines in the file \"/etc/modprobe.d/blacklist.conf\":\n\ninstall atm /bin/true\nblacklist atm\n\nReboot the system for the settings to take effect.", - "label": "fix" - } - ], - "impact": 0.3, - "refs": [], - "tags": { - "cci": [ - "CCI-000381" - ], - "nist": [ - "CM-7 a" - ], - "severity": "low", - "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nFailing to disconnect unused protocols can result in a system compromise.\\n\\nThe Asynchronous Transfer Mode (ATM) is a protocol operating on network, data link, and physical layers, based on virtual circuits and virtual paths. Disabling ATM protects the system against exploitation of any laws in its implementation.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230494", - "group_title": "SRG-OS-000095-GPOS-00049", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230494r792911_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:318", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33138r792910_fix", - "fixtext_fixref": "F-33138r792910_fix", - "ident": { - "text": "CCI-000381", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-040021", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230494r792911_rule", - "role": "full", - "time": "2021-11-12T11:37:31-05:00", - "severity": "low", - "version": "RHEL-08-040021", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000381", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:318", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:31-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230495", - "title": "RHEL 8 must disable the controller area network (CAN) protocol.", - "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nFailing to disconnect unused protocols can result in a system compromise.\n\nThe Controller Area Network (CAN) is a serial communications protocol, which was initially developed for automotive and is now also used in marine, industrial, and medical applications. Disabling CAN protects the system against exploitation of any flaws in its implementation.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:319", - "label": "check" - }, - { - "data": "Configure the operating system to disable the ability to use the CAN protocol kernel module.\n\nAdd or update the following lines in the file \"/etc/modprobe.d/blacklist.conf\":\n\ninstall can /bin/true\nblacklist can\n\nReboot the system for the settings to take effect.", - "label": "fix" - } - ], - "impact": 0.3, - "refs": [], - "tags": { - "cci": [ - "CCI-000381" - ], - "nist": [ - "CM-7 a" - ], - "severity": "low", - "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nFailing to disconnect unused protocols can result in a system compromise.\\n\\nThe Controller Area Network (CAN) is a serial communications protocol, which was initially developed for automotive and is now also used in marine, industrial, and medical applications. Disabling CAN protects the system against exploitation of any flaws in its implementation.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230495", - "group_title": "SRG-OS-000095-GPOS-00049", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230495r792914_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:319", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33139r792913_fix", - "fixtext_fixref": "F-33139r792913_fix", - "ident": { - "text": "CCI-000381", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-040022", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230495r792914_rule", - "role": "full", - "time": "2021-11-12T11:37:31-05:00", - "severity": "low", - "version": "RHEL-08-040022", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000381", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:319", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:31-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230496", - "title": "RHEL 8 must disable the stream control transmission protocol (SCTP).", - "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nFailing to disconnect unused protocols can result in a system compromise.\n\nThe Stream Control Transmission Protocol (SCTP) is a transport layer protocol, designed to support the idea of message-oriented communication, with several streams of messages within one connection. Disabling SCTP protects the system against exploitation of any flaws in its implementation.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:320", - "label": "check" - }, - { - "data": "Configure the operating system to disable the ability to use the SCTP kernel module.\n\nAdd or update the following lines in the file \"/etc/modprobe.d/blacklist.conf\":\n\ninstall sctp /bin/true\nblacklist sctp\n\nReboot the system for the settings to take effect.", - "label": "fix" - } - ], - "impact": 0.3, - "refs": [], - "tags": { - "cci": [ - "CCI-000381" - ], - "nist": [ - "CM-7 a" - ], - "severity": "low", - "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nFailing to disconnect unused protocols can result in a system compromise.\\n\\nThe Stream Control Transmission Protocol (SCTP) is a transport layer protocol, designed to support the idea of message-oriented communication, with several streams of messages within one connection. Disabling SCTP protects the system against exploitation of any flaws in its implementation.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230496", - "group_title": "SRG-OS-000095-GPOS-00049", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230496r792917_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:320", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33140r792916_fix", - "fixtext_fixref": "F-33140r792916_fix", - "ident": { - "text": "CCI-000381", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-040023", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230496r792917_rule", - "role": "full", - "time": "2021-11-12T11:37:31-05:00", - "severity": "low", - "version": "RHEL-08-040023", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000381", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:320", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:31-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230497", - "title": "RHEL 8 must disable the transparent inter-process communication (TIPC) protocol.", - "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nFailing to disconnect unused protocols can result in a system compromise.\n\nThe Transparent Inter-Process Communication (TIPC) protocol is designed to provide communications between nodes in a cluster. Disabling TIPC protects the system against exploitation of any flaws in its implementation.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:321", - "label": "check" - }, - { - "data": "Configure the operating system to disable the ability to use the TIPC protocol kernel module.\n\nAdd or update the following lines in the file \"/etc/modprobe.d/blacklist.conf\":\n\ninstall tipc /bin/true\nblacklist tipc\n\nReboot the system for the settings to take effect.", - "label": "fix" - } - ], - "impact": 0.3, - "refs": [], - "tags": { - "cci": [ - "CCI-000381" - ], - "nist": [ - "CM-7 a" - ], - "severity": "low", - "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nFailing to disconnect unused protocols can result in a system compromise.\\n\\nThe Transparent Inter-Process Communication (TIPC) protocol is designed to provide communications between nodes in a cluster. Disabling TIPC protects the system against exploitation of any flaws in its implementation.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230497", - "group_title": "SRG-OS-000095-GPOS-00049", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230497r792920_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:321", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33141r792919_fix", - "fixtext_fixref": "F-33141r792919_fix", - "ident": { - "text": "CCI-000381", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-040024", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230497r792920_rule", - "role": "full", - "time": "2021-11-12T11:37:31-05:00", - "severity": "low", - "version": "RHEL-08-040024", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000381", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:321", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:31-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230498", - "title": "RHEL 8 must disable mounting of cramfs.", - "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nRemoving support for unneeded filesystem types reduces the local attack surface of the server.\n\nCompressed ROM/RAM file system (or cramfs) is a read-only file system designed for simplicity and space-efficiency. It is mainly used in embedded and small-footprint systems.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:322", - "label": "check" - }, - { - "data": "Configure the operating system to disable the ability to use the cramfs kernel module.\n\nAdd or update the following lines in the file \"/etc/modprobe.d/blacklist.conf\":\n\ninstall cramfs /bin/true\nblacklist cramfs\n\nReboot the system for the settings to take effect.", - "label": "fix" - } - ], - "impact": 0.3, - "refs": [], - "tags": { - "cci": [ - "CCI-000381" - ], - "nist": [ - "CM-7 a" - ], - "severity": "low", - "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nRemoving support for unneeded filesystem types reduces the local attack surface of the server.\\n\\nCompressed ROM/RAM file system (or cramfs) is a read-only file system designed for simplicity and space-efficiency. It is mainly used in embedded and small-footprint systems.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230498", - "group_title": "SRG-OS-000095-GPOS-00049", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230498r792922_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:322", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33142r568241_fix", - "fixtext_fixref": "F-33142r568241_fix", - "ident": { - "text": "CCI-000381", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-040025", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230498r792922_rule", - "role": "full", - "time": "2021-11-12T11:37:31-05:00", - "severity": "low", - "version": "RHEL-08-040025", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000381", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:322", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:31-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230499", - "title": "RHEL 8 must disable IEEE 1394 (FireWire) Support.", - "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nThe IEEE 1394 (FireWire) is a serial bus standard for high-speed real-time communication. Disabling FireWire protects the system against exploitation of any flaws in its implementation.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:323", - "label": "check" - }, - { - "data": "Configure the operating system to disable the ability to use the firewire-core kernel module.\n\nAdd or update the following lines in the file \"/etc/modprobe.d/blacklist.conf\":\n\ninstall firewire-core /bin/true\nblacklist firewire-core\n\nReboot the system for the settings to take effect.", - "label": "fix" - } - ], - "impact": 0.3, - "refs": [], - "tags": { - "cci": [ - "CCI-000381" - ], - "nist": [ - "CM-7 a" - ], - "severity": "low", - "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nThe IEEE 1394 (FireWire) is a serial bus standard for high-speed real-time communication. Disabling FireWire protects the system against exploitation of any flaws in its implementation.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230499", - "group_title": "SRG-OS-000095-GPOS-00049", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230499r792924_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:323", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33143r568244_fix", - "fixtext_fixref": "F-33143r568244_fix", - "ident": { - "text": "CCI-000381", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-040026", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230499r792924_rule", - "role": "full", - "time": "2021-11-12T11:37:31-05:00", - "severity": "low", - "version": "RHEL-08-040026", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000381", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:323", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:31-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230503", - "title": "RHEL 8 must be configured to disable USB mass storage.", - "desc": "USB mass storage permits easy introduction of unknown devices, thereby facilitating malicious activity.\n\nSatisfies: SRG-OS-000114-GPOS-00059, SRG-OS-000378-GPOS-00163", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:325", - "label": "check" - }, - { - "data": "Configure the operating system to disable the ability to use the USB Storage kernel module.\n\nCreate a file under \"/etc/modprobe.d\" with the following command:\n\n$ sudo touch /etc/modprobe.d/usb-storage.conf\n\nAdd the following line to the created file:\n\ninstall usb-storage /bin/true\n\nConfigure the operating system to disable the ability to use USB mass storage devices.\n\n$ sudo vi /etc/modprobe.d/blacklist.conf\n\nAdd or update the line:\n\nblacklist usb-storage", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000778" - ], - "nist": [ - "IA-3" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"USB mass storage permits easy introduction of unknown devices, thereby facilitating malicious activity.\\n\\nSatisfies: SRG-OS-000114-GPOS-00059, SRG-OS-000378-GPOS-00163\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230503", - "group_title": "SRG-OS-000114-GPOS-00059", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230503r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:325", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33147r568256_fix", - "fixtext_fixref": "F-33147r568256_fix", - "ident": { - "text": "CCI-000778", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-040080", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230503r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:31-05:00", - "severity": "medium", - "version": "RHEL-08-040080", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000778", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:325", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:31-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230507", - "title": "RHEL 8 Bluetooth must be disabled.", - "desc": "Without protection of communications with wireless peripherals, confidentiality and integrity may be compromised because unprotected communications can be intercepted and either read, altered, or used to compromise the RHEL 8 operating system.\n\nThis requirement applies to wireless peripheral technologies (e.g., wireless mice, keyboards, displays, etc.) used with RHEL 8 systems. Wireless peripherals (e.g., Wi-Fi/Bluetooth/IR Keyboards, Mice, and Pointing Devices and Near Field Communications [NFC]) present a unique challenge by creating an open, unsecured port on a computer. Wireless peripherals must meet DoD requirements for wireless data transmission and be approved for use by the Authorizing Official (AO). Even though some wireless peripherals, such as mice and pointing devices, do not ordinarily carry information that need to be protected, modification of communications with these wireless peripherals may be used to compromise the RHEL 8 operating system. Communication paths outside the physical protection of a controlled boundary are exposed to the possibility of interception and modification.\n\nProtecting the confidentiality and integrity of communications with wireless peripherals can be accomplished by physical means (e.g., employing physical barriers to wireless radio frequencies) or by logical means (e.g., employing cryptographic techniques). If physical means of protection are employed, then logical means (cryptography) do not have to be employed, and vice versa. If the wireless peripheral is only passing telemetry data, encryption of the data may not be required.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:326", - "label": "check" - }, - { - "data": "Configure the operating system to disable the Bluetooth adapter when not in use.\n\nBuild or modify the \"/etc/modprobe.d/bluetooth.conf\" file with the following line:\n\ninstall bluetooth /bin/true\n\nReboot the system for the settings to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001443" - ], - "nist": [ - "AC-18 (1)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without protection of communications with wireless peripherals, confidentiality and integrity may be compromised because unprotected communications can be intercepted and either read, altered, or used to compromise the RHEL 8 operating system.\\n\\nThis requirement applies to wireless peripheral technologies (e.g., wireless mice, keyboards, displays, etc.) used with RHEL 8 systems. Wireless peripherals (e.g., Wi-Fi/Bluetooth/IR Keyboards, Mice, and Pointing Devices and Near Field Communications [NFC]) present a unique challenge by creating an open, unsecured port on a computer. Wireless peripherals must meet DoD requirements for wireless data transmission and be approved for use by the Authorizing Official (AO). Even though some wireless peripherals, such as mice and pointing devices, do not ordinarily carry information that need to be protected, modification of communications with these wireless peripherals may be used to compromise the RHEL 8 operating system. Communication paths outside the physical protection of a controlled boundary are exposed to the possibility of interception and modification.\\n\\nProtecting the confidentiality and integrity of communications with wireless peripherals can be accomplished by physical means (e.g., employing physical barriers to wireless radio frequencies) or by logical means (e.g., employing cryptographic techniques). If physical means of protection are employed, then logical means (cryptography) do not have to be employed, and vice versa. If the wireless peripheral is only passing telemetry data, encryption of the data may not be required.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230507", - "group_title": "SRG-OS-000300-GPOS-00118", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230507r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:326", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33151r568268_fix", - "fixtext_fixref": "F-33151r568268_fix", - "ident": { - "text": "CCI-001443", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-040111", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230507r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:31-05:00", - "severity": "medium", - "version": "RHEL-08-040111", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-001443", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:326", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:31-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230508", - "title": "RHEL 8 must mount /dev/shm with the nodev option.", - "desc": "The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\n\nThe \"noexec\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nodev\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nosuid\" mount option causes the system to not execute \"setuid\" and \"setgid\" files with owner privileges. This option must be used for mounting any file system not containing approved \"setuid\" and \"setguid\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:327", - "label": "check" - }, - { - "data": "Configure the system so that /dev/shm is mounted with the \"nodev\" option by adding /modifying the /etc/fstab with the following line:\n\ntmpfs /dev/shm tmpfs defaults,nodev,nosuid,noexec 0 0", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001764" - ], - "nist": [ - "CM-7 (2)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230508", - "group_title": "SRG-OS-000368-GPOS-00154", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230508r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:327", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33152r568271_fix", - "fixtext_fixref": "F-33152r568271_fix", - "ident": { - "text": "CCI-001764", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-040120", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230508r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:31-05:00", - "severity": "medium", - "version": "RHEL-08-040120", - "weight": "10.000000", - "result": "pass", - "ident": { - "text": "CCI-001764", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:327", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:31-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230509", - "title": "RHEL 8 must mount /dev/shm with the nosuid option.", - "desc": "The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\n\nThe \"noexec\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\nThe \"nodev\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\nThe \"nosuid\" mount option causes the system to not execute \"setuid\" and \"setgid\" files with owner privileges. This option must be used for mounting any file system not containing approved \"setuid\" and \"setguid\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:328", - "label": "check" - }, - { - "data": "Configure the system so that /dev/shm is mounted with the \"nosuid\" option by adding /modifying the /etc/fstab with the following line:\n\ntmpfs /dev/shm tmpfs defaults,nodev,nosuid,noexec 0 0", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001764" - ], - "nist": [ - "CM-7 (2)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230509", - "group_title": "SRG-OS-000368-GPOS-00154", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230509r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:328", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33153r568274_fix", - "fixtext_fixref": "F-33153r568274_fix", - "ident": { - "text": "CCI-001764", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-040121", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230509r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:31-05:00", - "severity": "medium", - "version": "RHEL-08-040121", - "weight": "10.000000", - "result": "pass", - "ident": { - "text": "CCI-001764", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:328", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:31-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230510", - "title": "RHEL 8 must mount /dev/shm with the noexec option.", - "desc": "The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\n\nThe \"noexec\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nodev\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nosuid\" mount option causes the system to not execute \"setuid\" and \"setgid\" files with owner privileges. This option must be used for mounting any file system not containing approved \"setuid\" and \"setguid\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:329", - "label": "check" - }, - { - "data": "Configure the system so that /dev/shm is mounted with the \"noexec\" option by adding /modifying the /etc/fstab with the following line:\n\ntmpfs /dev/shm tmpfs defaults,nodev,nosuid,noexec 0 0", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001764" - ], - "nist": [ - "CM-7 (2)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230510", - "group_title": "SRG-OS-000368-GPOS-00154", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230510r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:329", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33154r568277_fix", - "fixtext_fixref": "F-33154r568277_fix", - "ident": { - "text": "CCI-001764", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-040122", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230510r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:31-05:00", - "severity": "medium", - "version": "RHEL-08-040122", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-001764", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:329", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:31-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230511", - "title": "RHEL 8 must mount /tmp with the nodev option.", - "desc": "The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\n\nThe \"noexec\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nodev\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nosuid\" mount option causes the system to not execute \"setuid\" and \"setgid\" files with owner privileges. This option must be used for mounting any file system not containing approved \"setuid\" and \"setguid\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:330", - "label": "check" - }, - { - "data": "Configure the system so that /tmp is mounted with the \"nodev\" option by adding /modifying the /etc/fstab with the following line:\n\n/dev/mapper/rhel-tmp /tmp xfs defaults,nodev,nosuid,noexec 0 0", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001764" - ], - "nist": [ - "CM-7 (2)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230511", - "group_title": "SRG-OS-000368-GPOS-00154", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230511r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:330", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33155r568280_fix", - "fixtext_fixref": "F-33155r568280_fix", - "ident": { - "text": "CCI-001764", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-040123", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230511r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:31-05:00", - "severity": "medium", - "version": "RHEL-08-040123", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-001764", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:330", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:31-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230512", - "title": "RHEL 8 must mount /tmp with the nosuid option.", - "desc": "The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\n\nThe \"noexec\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\nThe \"nodev\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\nThe \"nosuid\" mount option causes the system to not execute \"setuid\" and \"setgid\" files with owner privileges. This option must be used for mounting any file system not containing approved \"setuid\" and \"setguid\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:331", - "label": "check" - }, - { - "data": "Configure the system so that /tmp is mounted with the \"nosuid\" option by adding /modifying the /etc/fstab with the following line:\n\n/dev/mapper/rhel-tmp /tmp xfs defaults,nodev,nosuid,noexec 0 0", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001764" - ], - "nist": [ - "CM-7 (2)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230512", - "group_title": "SRG-OS-000368-GPOS-00154", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230512r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:331", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33156r568283_fix", - "fixtext_fixref": "F-33156r568283_fix", - "ident": { - "text": "CCI-001764", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-040124", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230512r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:31-05:00", - "severity": "medium", - "version": "RHEL-08-040124", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-001764", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:331", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:31-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230513", - "title": "RHEL 8 must mount /tmp with the noexec option.", - "desc": "The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\n\nThe \"noexec\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nodev\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nosuid\" mount option causes the system to not execute \"setuid\" and \"setgid\" files with owner privileges. This option must be used for mounting any file system not containing approved \"setuid\" and \"setguid\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:332", - "label": "check" - }, - { - "data": "Configure the system so that /tmp is mounted with the \"noexec\" option by adding /modifying the /etc/fstab with the following line:\n\n/dev/mapper/rhel-tmp /tmp xfs defaults,nodev,nosuid,noexec 0 0", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001764" - ], - "nist": [ - "CM-7 (2)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230513", - "group_title": "SRG-OS-000368-GPOS-00154", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230513r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:332", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33157r568286_fix", - "fixtext_fixref": "F-33157r568286_fix", - "ident": { - "text": "CCI-001764", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-040125", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230513r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:31-05:00", - "severity": "medium", - "version": "RHEL-08-040125", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-001764", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:332", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:31-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230514", - "title": "RHEL 8 must mount /var/log with the nodev option.", - "desc": "The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\n\nThe \"noexec\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nodev\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nosuid\" mount option causes the system to not execute \"setuid\" and \"setgid\" files with owner privileges. This option must be used for mounting any file system not containing approved \"setuid\" and \"setguid\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:333", - "label": "check" - }, - { - "data": "Configure the system so that /var/log is mounted with the \"nodev\" option by adding /modifying the /etc/fstab with the following line:\n\n/dev/mapper/rhel-var-log /var/log xfs defaults,nodev,nosuid,noexec 0 0", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001764" - ], - "nist": [ - "CM-7 (2)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230514", - "group_title": "SRG-OS-000368-GPOS-00154", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230514r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:333", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33158r568289_fix", - "fixtext_fixref": "F-33158r568289_fix", - "ident": { - "text": "CCI-001764", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-040126", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230514r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:31-05:00", - "severity": "medium", - "version": "RHEL-08-040126", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-001764", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:333", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:31-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230515", - "title": "RHEL 8 must mount /var/log with the nosuid option.", - "desc": "The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\n\nThe \"noexec\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nodev\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nosuid\" mount option causes the system to not execute \"setuid\" and \"setgid\" files with owner privileges. This option must be used for mounting any file system not containing approved \"setuid\" and \"setguid\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:334", - "label": "check" - }, - { - "data": "Configure the system so that /var/log is mounted with the \"nosuid\" option by adding /modifying the /etc/fstab with the following line:\n\n/dev/mapper/rhel-var-log /var/log xfs defaults,nodev,nosuid,noexec 0 0", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001764" - ], - "nist": [ - "CM-7 (2)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230515", - "group_title": "SRG-OS-000368-GPOS-00154", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230515r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:334", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33159r568292_fix", - "fixtext_fixref": "F-33159r568292_fix", - "ident": { - "text": "CCI-001764", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-040127", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230515r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:31-05:00", - "severity": "medium", - "version": "RHEL-08-040127", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-001764", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:334", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:31-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230516", - "title": "RHEL 8 must mount /var/log with the noexec option.", - "desc": "The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\n\nThe \"noexec\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nodev\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nosuid\" mount option causes the system to not execute \"setuid\" and \"setgid\" files with owner privileges. This option must be used for mounting any file system not containing approved \"setuid\" and \"setguid\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:335", - "label": "check" - }, - { - "data": "Configure the system so that /var/log is mounted with the \"noexec\" option by adding /modifying the /etc/fstab with the following line:\n\n/dev/mapper/rhel-var-log /var/log xfs defaults,nodev,nosuid,noexec 0 0", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001764" - ], - "nist": [ - "CM-7 (2)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230516", - "group_title": "SRG-OS-000368-GPOS-00154", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230516r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:335", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33160r568295_fix", - "fixtext_fixref": "F-33160r568295_fix", - "ident": { - "text": "CCI-001764", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-040128", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230516r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:31-05:00", - "severity": "medium", - "version": "RHEL-08-040128", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-001764", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:335", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:31-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230517", - "title": "RHEL 8 must mount /var/log/audit with the nodev option.", - "desc": "The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\n\nThe \"noexec\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nodev\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nosuid\" mount option causes the system to not execute \"setuid\" and \"setgid\" files with owner privileges. This option must be used for mounting any file system not containing approved \"setuid\" and \"setguid\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:336", - "label": "check" - }, - { - "data": "Configure the system so that /var/log/audit is mounted with the \"nodev\" option by adding /modifying the /etc/fstab with the following line:\n\n/dev/mapper/rhel-var-log-audit /var/log/audit xfs defaults,nodev,nosuid,noexec 0 0", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001764" - ], - "nist": [ - "CM-7 (2)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230517", - "group_title": "SRG-OS-000368-GPOS-00154", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230517r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:336", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33161r568298_fix", - "fixtext_fixref": "F-33161r568298_fix", - "ident": { - "text": "CCI-001764", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-040129", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230517r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:31-05:00", - "severity": "medium", - "version": "RHEL-08-040129", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-001764", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:336", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:31-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230518", - "title": "RHEL 8 must mount /var/log/audit with the nosuid option.", - "desc": "The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\n\nThe \"noexec\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nodev\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nosuid\" mount option causes the system to not execute \"setuid\" and \"setgid\" files with owner privileges. This option must be used for mounting any file system not containing approved \"setuid\" and \"setguid\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:337", - "label": "check" - }, - { - "data": "Configure the system so that /var/log/audit is mounted with the \"nosuid\" option by adding /modifying the /etc/fstab with the following line:\n\n/dev/mapper/rhel-var-log-audit /var/log/audit xfs defaults,nodev,nosuid,noexec 0 0", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001764" - ], - "nist": [ - "CM-7 (2)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230518", - "group_title": "SRG-OS-000368-GPOS-00154", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230518r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:337", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33162r568301_fix", - "fixtext_fixref": "F-33162r568301_fix", - "ident": { - "text": "CCI-001764", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-040130", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230518r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:31-05:00", - "severity": "medium", - "version": "RHEL-08-040130", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-001764", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:337", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:31-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230519", - "title": "RHEL 8 must mount /var/log/audit with the noexec option.", - "desc": "The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\n\nThe \"noexec\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nodev\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nosuid\" mount option causes the system to not execute \"setuid\" and \"setgid\" files with owner privileges. This option must be used for mounting any file system not containing approved \"setuid\" and \"setguid\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:338", - "label": "check" - }, - { - "data": "Configure the system so that /var/log/audit is mounted with the \"noexec\" option by adding /modifying the /etc/fstab with the following line:\n\n/dev/mapper/rhel-var-log-audit /var/log/audit xfs defaults,nodev,nosuid,noexec 0 0", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001764" - ], - "nist": [ - "CM-7 (2)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230519", - "group_title": "SRG-OS-000368-GPOS-00154", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230519r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:338", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33163r568304_fix", - "fixtext_fixref": "F-33163r568304_fix", - "ident": { - "text": "CCI-001764", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-040131", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230519r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:31-05:00", - "severity": "medium", - "version": "RHEL-08-040131", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-001764", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:338", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:31-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230520", - "title": "RHEL 8 must mount /var/tmp with the nodev option.", - "desc": "The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\n\nThe \"noexec\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nodev\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nosuid\" mount option causes the system to not execute \"setuid\" and \"setgid\" files with owner privileges. This option must be used for mounting any file system not containing approved \"setuid\" and \"setguid\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:339", - "label": "check" - }, - { - "data": "Configure the system so that /var/tmp is mounted with the \"nodev\" option by adding /modifying the /etc/fstab with the following line:\n\n/dev/mapper/rhel-var-tmp /var/tmp xfs defaults,nodev,nosuid,noexec 0 0", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001764" - ], - "nist": [ - "CM-7 (2)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230520", - "group_title": "SRG-OS-000368-GPOS-00154", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230520r792927_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:339", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33164r792926_fix", - "fixtext_fixref": "F-33164r792926_fix", - "ident": { - "text": "CCI-001764", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-040132", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230520r792927_rule", - "role": "full", - "time": "2021-11-12T11:37:31-05:00", - "severity": "medium", - "version": "RHEL-08-040132", - "weight": "10.000000", - "result": "pass", - "ident": { - "text": "CCI-001764", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:339", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:31-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230521", - "title": "RHEL 8 must mount /var/tmp with the nosuid option.", - "desc": "The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\n\nThe \"noexec\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nodev\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nosuid\" mount option causes the system to not execute \"setuid\" and \"setgid\" files with owner privileges. This option must be used for mounting any file system not containing approved \"setuid\" and \"setguid\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:340", - "label": "check" - }, - { - "data": "Configure the system so that /var/tmp is mounted with the \"nosuid\" option by adding /modifying the /etc/fstab with the following line:\n\n/dev/mapper/rhel-var-tmp /var/tmp xfs defaults,nodev,nosuid,noexec 0 0", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001764" - ], - "nist": [ - "CM-7 (2)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230521", - "group_title": "SRG-OS-000368-GPOS-00154", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230521r792930_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:340", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33165r792929_fix", - "fixtext_fixref": "F-33165r792929_fix", - "ident": { - "text": "CCI-001764", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-040133", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230521r792930_rule", - "role": "full", - "time": "2021-11-12T11:37:31-05:00", - "severity": "medium", - "version": "RHEL-08-040133", - "weight": "10.000000", - "result": "pass", - "ident": { - "text": "CCI-001764", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:340", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:31-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230522", - "title": "RHEL 8 must mount /var/tmp with the noexec option.", - "desc": "The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\n\nThe \"noexec\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nodev\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nosuid\" mount option causes the system to not execute \"setuid\" and \"setgid\" files with owner privileges. This option must be used for mounting any file system not containing approved \"setuid\" and \"setguid\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:341", - "label": "check" - }, - { - "data": "Configure the system so that /var/tmp is mounted with the \"noexec\" option by adding /modifying the /etc/fstab with the following line:\n\n/dev/mapper/rhel-var-tmp /var/tmp xfs defaults,nodev,nosuid,noexec 0 0", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001764" - ], - "nist": [ - "CM-7 (2)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230522", - "group_title": "SRG-OS-000368-GPOS-00154", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230522r792933_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:341", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33166r792932_fix", - "fixtext_fixref": "F-33166r792932_fix", - "ident": { - "text": "CCI-001764", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-040134", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230522r792933_rule", - "role": "full", - "time": "2021-11-12T11:37:31-05:00", - "severity": "medium", - "version": "RHEL-08-040134", - "weight": "10.000000", - "result": "pass", - "ident": { - "text": "CCI-001764", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:341", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:31-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230526", - "title": "All RHEL 8 networked systems must have and implement SSH to protect the confidentiality and integrity of transmitted and received information, as well as information during preparation for transmission.", - "desc": "Without protection of the transmitted information, confidentiality and integrity may be compromised because unprotected communications can be intercepted and either read or altered. \n\nThis requirement applies to both internal and external networks and all types of information system components from which information can be transmitted (e.g., servers, mobile devices, notebook computers, printers, copiers, scanners, and facsimile machines). Communication paths outside the physical protection of a controlled boundary are exposed to the possibility of interception and modification. \n\nProtecting the confidentiality and integrity of organizational information can be accomplished by physical means (e.g., employing physical distribution systems) or by logical means (e.g., employing cryptographic techniques). If physical means of protection are employed, then logical means (cryptography) do not have to be employed, and vice versa.\n\nSatisfies: SRG-OS-000423-GPOS-00187, SRG-OS-000424-GPOS-00188, SRG-OS-000425-GPOS-00189, SRG-OS-000426-GPOS-00190", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:342", - "label": "check" - }, - { - "data": "Configure the SSH service to automatically start after reboot with the following command:\n\n$ sudo systemctl enable sshd.service", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-002418" - ], - "nist": [ - "SC-8" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without protection of the transmitted information, confidentiality and integrity may be compromised because unprotected communications can be intercepted and either read or altered. \\n\\nThis requirement applies to both internal and external networks and all types of information system components from which information can be transmitted (e.g., servers, mobile devices, notebook computers, printers, copiers, scanners, and facsimile machines). Communication paths outside the physical protection of a controlled boundary are exposed to the possibility of interception and modification. \\n\\nProtecting the confidentiality and integrity of organizational information can be accomplished by physical means (e.g., employing physical distribution systems) or by logical means (e.g., employing cryptographic techniques). If physical means of protection are employed, then logical means (cryptography) do not have to be employed, and vice versa.\\n\\nSatisfies: SRG-OS-000423-GPOS-00187, SRG-OS-000424-GPOS-00188, SRG-OS-000425-GPOS-00189, SRG-OS-000426-GPOS-00190\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230526", - "group_title": "SRG-OS-000423-GPOS-00187", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230526r744032_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:342", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33170r744031_fix", - "fixtext_fixref": "F-33170r744031_fix", - "ident": { - "text": "CCI-002418", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-040160", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230526r744032_rule", - "role": "full", - "time": "2021-11-12T11:37:31-05:00", - "severity": "medium", - "version": "RHEL-08-040160", - "weight": "10.000000", - "result": "pass", - "ident": { - "text": "CCI-002418", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:342", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:31-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230527", - "title": "RHEL 8 must force a frequent session key renegotiation for SSH connections to the server.", - "desc": "Without protection of the transmitted information, confidentiality and integrity may be compromised because unprotected communications can be intercepted and either read or altered. \n\nThis requirement applies to both internal and external networks and all types of information system components from which information can be transmitted (e.g., servers, mobile devices, notebook computers, printers, copiers, scanners, and facsimile machines). Communication paths outside the physical protection of a controlled boundary are exposed to the possibility of interception and modification. \n\nProtecting the confidentiality and integrity of organizational information can be accomplished by physical means (e.g., employing physical distribution systems) or by logical means (e.g., employing cryptographic techniques). If physical means of protection are employed, then logical means (cryptography) do not have to be employed, and vice versa.\n\nSession key regeneration limits the chances of a session key becoming compromised.\n\nSatisfies: SRG-OS-000033-GPOS-00014, SRG-OS-000420-GPOS-00186, SRG-OS-000424-GPOS-00188", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:343", - "label": "check" - }, - { - "data": "Configure the system to force a frequent session key renegotiation for SSH connections to the server by add or modifying the following line in the \"/etc/ssh/sshd_config\" file:\n\nRekeyLimit 1G 1h\n\nRestart the SSH daemon for the settings to take effect.\n\n$ sudo systemctl restart sshd.service", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000068" - ], - "nist": [ - "AC-17 (2)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without protection of the transmitted information, confidentiality and integrity may be compromised because unprotected communications can be intercepted and either read or altered. \\n\\nThis requirement applies to both internal and external networks and all types of information system components from which information can be transmitted (e.g., servers, mobile devices, notebook computers, printers, copiers, scanners, and facsimile machines). Communication paths outside the physical protection of a controlled boundary are exposed to the possibility of interception and modification. \\n\\nProtecting the confidentiality and integrity of organizational information can be accomplished by physical means (e.g., employing physical distribution systems) or by logical means (e.g., employing cryptographic techniques). If physical means of protection are employed, then logical means (cryptography) do not have to be employed, and vice versa.\\n\\nSession key regeneration limits the chances of a session key becoming compromised.\\n\\nSatisfies: SRG-OS-000033-GPOS-00014, SRG-OS-000420-GPOS-00186, SRG-OS-000424-GPOS-00188\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230527", - "group_title": "SRG-OS-000033-GPOS-00014", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230527r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:343", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33171r568328_fix", - "fixtext_fixref": "F-33171r568328_fix", - "ident": { - "text": "CCI-000068", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-040161", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230527r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:31-05:00", - "severity": "medium", - "version": "RHEL-08-040161", - "weight": "10.000000", - "result": "error", - "ident": { - "text": "CCI-000068", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:343", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:31-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230531", - "title": "The systemd Ctrl-Alt-Delete burst key sequence in RHEL 8 must be disabled.", - "desc": "A locally logged-on user who presses Ctrl-Alt-Delete when at the console can reboot the system. If accidentally pressed, as could happen in the case of a mixed OS environment, this can create the risk of short-term loss of availability of systems due to unintentional reboot. In a graphical user environment, risk of unintentional reboot from the Ctrl-Alt-Delete sequence is reduced because the user will be prompted before any action is taken.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:345", - "label": "check" - }, - { - "data": "Configure the system to disable the CtrlAltDelBurstAction by added or modifying the following line in the \"/etc/systemd/system.conf\" configuration file:\n\nCtrlAltDelBurstAction=none\n\nReload the daemon for this change to take effect.\n\n$ sudo systemctl daemon-reload", - "label": "fix" - } - ], - "impact": 0.7, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "high", - "description": "{\"VulnDiscussion\":\"A locally logged-on user who presses Ctrl-Alt-Delete when at the console can reboot the system. If accidentally pressed, as could happen in the case of a mixed OS environment, this can create the risk of short-term loss of availability of systems due to unintentional reboot. In a graphical user environment, risk of unintentional reboot from the Ctrl-Alt-Delete sequence is reduced because the user will be prompted before any action is taken.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230531", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230531r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:345", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33175r619890_fix", - "fixtext_fixref": "F-33175r619890_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-040172", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230531r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:31-05:00", - "severity": "high", - "version": "RHEL-08-040172", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:345", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:31-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230533", - "title": "The Trivial File Transfer Protocol (TFTP) server package must not be installed if not required for RHEL 8 operational support.", - "desc": "If TFTP is required for operational support (such as the transmission of router configurations) its use must be documented with the Information System Security Officer (ISSO), restricted to only authorized personnel, and have access control rules established.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:346", - "label": "check" - }, - { - "data": "Remove the TFTP package from the system with the following command:\n\n$ sudo yum remove tftp-server", - "label": "fix" - } - ], - "impact": 0.7, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "high", - "description": "{\"VulnDiscussion\":\"If TFTP is required for operational support (such as the transmission of router configurations) its use must be documented with the Information System Security Officer (ISSO), restricted to only authorized personnel, and have access control rules established.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230533", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230533r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:346", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33177r568346_fix", - "fixtext_fixref": "F-33177r568346_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-040190", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230533r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:31-05:00", - "severity": "high", - "version": "RHEL-08-040190", - "weight": "10.000000", - "result": "pass", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:346", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:31-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230534", - "title": "The root account must be the only account having unrestricted access to the RHEL 8 system.", - "desc": "If an account other than root also has a User Identifier (UID) of \"0\", it has root authority, giving that account unrestricted access to the entire operating system. Multiple accounts with a UID of \"0\" afford an opportunity for potential intruders to guess a password for a privileged account.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:347", - "label": "check" - }, - { - "data": "Change the UID of any account on the system, other than root, that has a UID of \"0\". \n\nIf the account is associated with system commands or applications, the UID should be changed to one greater than \"0\" but less than \"1000\". Otherwise, assign a UID of greater than \"1000\" that has not already been assigned.", - "label": "fix" - } - ], - "impact": 0.7, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "high", - "description": "{\"VulnDiscussion\":\"If an account other than root also has a User Identifier (UID) of \\\"0\\\", it has root authority, giving that account unrestricted access to the entire operating system. Multiple accounts with a UID of \\\"0\\\" afford an opportunity for potential intruders to guess a password for a privileged account.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230534", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230534r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:347", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33178r568349_fix", - "fixtext_fixref": "F-33178r568349_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-040200", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230534r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:31-05:00", - "severity": "high", - "version": "RHEL-08-040200", - "weight": "10.000000", - "result": "pass", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:347", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:31-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230535", - "title": "RHEL 8 must prevent IPv6 Internet Control Message Protocol (ICMP) redirect messages from being accepted.", - "desc": "ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages modify the host's route table and are unauthenticated. An illicit ICMP redirect message could result in a man-in-the-middle attack.\n\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\n/etc/sysctl.d/*.conf\n/run/sysctl.d/*.conf\n/usr/local/lib/sysctl.d/*.conf\n/usr/lib/sysctl.d/*.conf\n/lib/sysctl.d/*.conf\n/etc/sysctl.conf\n\nBased on the information above, if a configuration file that begins with \"99-\" is created in the \"/etc/sysctl.d/\" directory, it will take precedence over any other configuration file on the system.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:348", - "label": "check" - }, - { - "data": "Configure RHEL 8 to prevent IPv6 ICMP redirect messages from being accepted.\n\nAdd or edit the following line in a system configuration file, which begins with \"99-\", in the \"/etc/sysctl.d/\" directory:\n\nnet.ipv6.conf.default.accept_redirects = 0\n\nLoad settings from all system configuration files with the following command:\n\n$ sudo sysctl --system", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages modify the host's route table and are unauthenticated. An illicit ICMP redirect message could result in a man-in-the-middle attack.\\n\\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\\n/etc/sysctl.d/*.conf\\n/run/sysctl.d/*.conf\\n/usr/local/lib/sysctl.d/*.conf\\n/usr/lib/sysctl.d/*.conf\\n/lib/sysctl.d/*.conf\\n/etc/sysctl.conf\\n\\nBased on the information above, if a configuration file that begins with \\\"99-\\\" is created in the \\\"/etc/sysctl.d/\\\" directory, it will take precedence over any other configuration file on the system.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230535", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230535r792936_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:348", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33179r792935_fix", - "fixtext_fixref": "F-33179r792935_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-040210", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230535r792936_rule", - "role": "full", - "time": "2021-11-12T11:37:31-05:00", - "severity": "medium", - "version": "RHEL-08-040210", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:348", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:31-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230536", - "title": "RHEL 8 must not send Internet Control Message Protocol (ICMP) redirects.", - "desc": "ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages contain information from the system's route table, possibly revealing portions of the network topology.\n\nThere are notable differences between Internet Protocol version 4 (IPv4) and Internet Protocol version 6 (IPv6). There is only a directive to disable sending of IPv4 redirected packets. Refer to RFC4294 for an explanation of \"IPv6 Node Requirements\", which resulted in this difference between IPv4 and IPv6.\n\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\n/etc/sysctl.d/*.conf\n/run/sysctl.d/*.conf\n/usr/local/lib/sysctl.d/*.conf\n/usr/lib/sysctl.d/*.conf\n/lib/sysctl.d/*.conf\n/etc/sysctl.conf\n\nBased on the information above, if a configuration file that begins with \"99-\" is created in the \"/etc/sysctl.d/\" directory, it will take precedence over any other configuration file on the system.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:349", - "label": "check" - }, - { - "data": "Configure RHEL 8 to not allow interfaces to perform IPv4 ICMP redirects.\n\nAdd or edit the following line in a system configuration file, which begins with \"99-\", in the \"/etc/sysctl.d/\" directory:\n\nnet.ipv4.conf.all.send_redirects=0\n\nLoad settings from all system configuration files with the following command:\n\n$ sudo sysctl --system", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages contain information from the system's route table, possibly revealing portions of the network topology.\\n\\nThere are notable differences between Internet Protocol version 4 (IPv4) and Internet Protocol version 6 (IPv6). There is only a directive to disable sending of IPv4 redirected packets. Refer to RFC4294 for an explanation of \\\"IPv6 Node Requirements\\\", which resulted in this difference between IPv4 and IPv6.\\n\\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\\n/etc/sysctl.d/*.conf\\n/run/sysctl.d/*.conf\\n/usr/local/lib/sysctl.d/*.conf\\n/usr/lib/sysctl.d/*.conf\\n/lib/sysctl.d/*.conf\\n/etc/sysctl.conf\\n\\nBased on the information above, if a configuration file that begins with \\\"99-\\\" is created in the \\\"/etc/sysctl.d/\\\" directory, it will take precedence over any other configuration file on the system.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230536", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230536r792939_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:349", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33180r792938_fix", - "fixtext_fixref": "F-33180r792938_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-040220", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230536r792939_rule", - "role": "full", - "time": "2021-11-12T11:37:31-05:00", - "severity": "medium", - "version": "RHEL-08-040220", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:349", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:31-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230537", - "title": "RHEL 8 must not respond to Internet Control Message Protocol (ICMP) echoes sent to a broadcast address.", - "desc": "Responding to broadcast ICMP echoes facilitates network mapping and provides a vector for amplification attacks.\n\nThere are notable differences between Internet Protocol version 4 (IPv4) and Internet Protocol version 6 (IPv6). IPv6 does not implement the same method of broadcast as IPv4. Instead, IPv6 uses multicast addressing to the all-hosts multicast group. Refer to RFC4294 for an explanation of \"IPv6 Node Requirements\", which resulted in this difference between IPv4 and IPv6.\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\n/etc/sysctl.d/*.conf\n/run/sysctl.d/*.conf\n/usr/local/lib/sysctl.d/*.conf\n/usr/lib/sysctl.d/*.conf\n/lib/sysctl.d/*.conf\n/etc/sysctl.conf\n\nBased on the information above, if a configuration file that begins with \"99-\" is created in the \"/etc/sysctl.d/\" directory, it will take precedence over any other configuration file on the system.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:350", - "label": "check" - }, - { - "data": "Configure RHEL 8 to not respond to IPv4 ICMP echoes sent to a broadcast address.\n\nAdd or edit the following line in a system configuration file, which begins with \"99-\", in the \"/etc/sysctl.d/\" directory:\n\nnet.ipv4.icmp_echo_ignore_broadcasts=1\n\nLoad settings from all system configuration files with the following command:\n\n$ sudo sysctl --system", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Responding to broadcast ICMP echoes facilitates network mapping and provides a vector for amplification attacks.\\n\\nThere are notable differences between Internet Protocol version 4 (IPv4) and Internet Protocol version 6 (IPv6). IPv6 does not implement the same method of broadcast as IPv4. Instead, IPv6 uses multicast addressing to the all-hosts multicast group. Refer to RFC4294 for an explanation of \\\"IPv6 Node Requirements\\\", which resulted in this difference between IPv4 and IPv6.\\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\\n/etc/sysctl.d/*.conf\\n/run/sysctl.d/*.conf\\n/usr/local/lib/sysctl.d/*.conf\\n/usr/lib/sysctl.d/*.conf\\n/lib/sysctl.d/*.conf\\n/etc/sysctl.conf\\n\\nBased on the information above, if a configuration file that begins with \\\"99-\\\" is created in the \\\"/etc/sysctl.d/\\\" directory, it will take precedence over any other configuration file on the system.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230537", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230537r792942_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:350", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33181r792941_fix", - "fixtext_fixref": "F-33181r792941_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-040230", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230537r792942_rule", - "role": "full", - "time": "2021-11-12T11:37:31-05:00", - "severity": "medium", - "version": "RHEL-08-040230", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:350", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:31-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230538", - "title": "RHEL 8 must not forward IPv6 source-routed packets.", - "desc": "Source-routed packets allow the source of the packet to suggest that routers forward the packet along a different path than configured on the router, which can be used to bypass network security measures. This requirement applies only to the forwarding of source-routed traffic, such as when forwarding is enabled and the system is functioning as a router.\n\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\n/etc/sysctl.d/*.conf\n/run/sysctl.d/*.conf\n/usr/local/lib/sysctl.d/*.conf\n/usr/lib/sysctl.d/*.conf\n/lib/sysctl.d/*.conf\n/etc/sysctl.conf\n\nBased on the information above, if a configuration file that begins with \"99-\" is created in the \"/etc/sysctl.d/\" directory, it will take precedence over any other configuration file on the system.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:351", - "label": "check" - }, - { - "data": "Configure RHEL 8 to not forward IPv6 source-routed packets.\n\nAdd or edit the following line in a system configuration file, which begins with \"99-\", in the \"/etc/sysctl.d/\" directory:\n\nnet.ipv6.conf.all.accept_source_route=0\n\nLoad settings from all system configuration files with the following command:\n\n$ sudo sysctl --system", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Source-routed packets allow the source of the packet to suggest that routers forward the packet along a different path than configured on the router, which can be used to bypass network security measures. This requirement applies only to the forwarding of source-routed traffic, such as when forwarding is enabled and the system is functioning as a router.\\n\\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\\n/etc/sysctl.d/*.conf\\n/run/sysctl.d/*.conf\\n/usr/local/lib/sysctl.d/*.conf\\n/usr/lib/sysctl.d/*.conf\\n/lib/sysctl.d/*.conf\\n/etc/sysctl.conf\\n\\nBased on the information above, if a configuration file that begins with \\\"99-\\\" is created in the \\\"/etc/sysctl.d/\\\" directory, it will take precedence over any other configuration file on the system.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230538", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230538r792945_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:351", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33182r792944_fix", - "fixtext_fixref": "F-33182r792944_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-040240", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230538r792945_rule", - "role": "full", - "time": "2021-11-12T11:37:31-05:00", - "severity": "medium", - "version": "RHEL-08-040240", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:351", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:31-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230539", - "title": "RHEL 8 must not forward IPv6 source-routed packets by default.", - "desc": "Source-routed packets allow the source of the packet to suggest that routers forward the packet along a different path than configured on the router, which can be used to bypass network security measures. This requirement applies only to the forwarding of source-routed traffic, such as when forwarding is enabled and the system is functioning as a router.\n\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\n/etc/sysctl.d/*.conf\n/run/sysctl.d/*.conf\n/usr/local/lib/sysctl.d/*.conf\n/usr/lib/sysctl.d/*.conf\n/lib/sysctl.d/*.conf\n/etc/sysctl.conf\n\nBased on the information above, if a configuration file that begins with \"99-\" is created in the \"/etc/sysctl.d/\" directory, it will take precedence over any other configuration file on the system.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:352", - "label": "check" - }, - { - "data": "Configure RHEL 8 to not forward IPv6 source-routed packets by default.\n\nAdd or edit the following line in a system configuration file, which begins with \"99-\", in the \"/etc/sysctl.d/\" directory:\n\nnet.ipv6.conf.default.accept_source_route=0\n\nLoad settings from all system configuration files with the following command:\n\n$ sudo sysctl --system", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Source-routed packets allow the source of the packet to suggest that routers forward the packet along a different path than configured on the router, which can be used to bypass network security measures. This requirement applies only to the forwarding of source-routed traffic, such as when forwarding is enabled and the system is functioning as a router.\\n\\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\\n/etc/sysctl.d/*.conf\\n/run/sysctl.d/*.conf\\n/usr/local/lib/sysctl.d/*.conf\\n/usr/lib/sysctl.d/*.conf\\n/lib/sysctl.d/*.conf\\n/etc/sysctl.conf\\n\\nBased on the information above, if a configuration file that begins with \\\"99-\\\" is created in the \\\"/etc/sysctl.d/\\\" directory, it will take precedence over any other configuration file on the system.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230539", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230539r792948_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:352", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33183r792947_fix", - "fixtext_fixref": "F-33183r792947_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-040250", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230539r792948_rule", - "role": "full", - "time": "2021-11-12T11:37:31-05:00", - "severity": "medium", - "version": "RHEL-08-040250", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:352", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:31-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230540", - "title": "RHEL 8 must not enable IPv6 packet forwarding unless the system is a router.", - "desc": "Routing protocol daemons are typically used on routers to exchange network topology information with other routers. If this software is used when not required, system network information may be unnecessarily transmitted across the network.\n\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\n/etc/sysctl.d/*.conf\n/run/sysctl.d/*.conf\n/usr/local/lib/sysctl.d/*.conf\n/usr/lib/sysctl.d/*.conf\n/lib/sysctl.d/*.conf\n/etc/sysctl.conf\n\nBased on the information above, if a configuration file that begins with \"99-\" is created in the \"/etc/sysctl.d/\" directory, it will take precedence over any other configuration file on the system.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:353", - "label": "check" - }, - { - "data": "Configure RHEL 8 to not allow IPv6 packet forwarding, unless the system is a router.\n\nAdd or edit the following line in a system configuration file, which begins with \"99-\", in the \"/etc/sysctl.d/\" directory:\n\nnet.ipv6.conf.all.forwarding=0\n\nLoad settings from all system configuration files with the following command:\n\n$ sudo sysctl --system", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Routing protocol daemons are typically used on routers to exchange network topology information with other routers. If this software is used when not required, system network information may be unnecessarily transmitted across the network.\\n\\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\\n/etc/sysctl.d/*.conf\\n/run/sysctl.d/*.conf\\n/usr/local/lib/sysctl.d/*.conf\\n/usr/lib/sysctl.d/*.conf\\n/lib/sysctl.d/*.conf\\n/etc/sysctl.conf\\n\\nBased on the information above, if a configuration file that begins with \\\"99-\\\" is created in the \\\"/etc/sysctl.d/\\\" directory, it will take precedence over any other configuration file on the system.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230540", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230540r792951_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:353", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33184r792950_fix", - "fixtext_fixref": "F-33184r792950_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-040260", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230540r792951_rule", - "role": "full", - "time": "2021-11-12T11:37:31-05:00", - "severity": "medium", - "version": "RHEL-08-040260", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:353", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:31-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230541", - "title": "RHEL 8 must not accept router advertisements on all IPv6 interfaces.", - "desc": "Routing protocol daemons are typically used on routers to exchange network topology information with other routers. If this software is used when not required, system network information may be unnecessarily transmitted across the network.\n\nAn illicit router advertisement message could result in a man-in-the-middle attack.\n\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\n/etc/sysctl.d/*.conf\n/run/sysctl.d/*.conf\n/usr/local/lib/sysctl.d/*.conf\n/usr/lib/sysctl.d/*.conf\n/lib/sysctl.d/*.conf\n/etc/sysctl.conf\n\nBased on the information above, if a configuration file that begins with \"99-\" is created in the \"/etc/sysctl.d/\" directory, it will take precedence over any other configuration file on the system.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:354", - "label": "check" - }, - { - "data": "Configure RHEL 8 to not accept router advertisements on all IPv6 interfaces unless the system is a router.\n\nAdd or edit the following line in a system configuration file, which begins with \"99-\", in the \"/etc/sysctl.d/\" directory:\n\nnet.ipv6.conf.all.accept_ra=0\n\nLoad settings from all system configuration files with the following command:\n\n$ sudo sysctl --system", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Routing protocol daemons are typically used on routers to exchange network topology information with other routers. If this software is used when not required, system network information may be unnecessarily transmitted across the network.\\n\\nAn illicit router advertisement message could result in a man-in-the-middle attack.\\n\\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\\n/etc/sysctl.d/*.conf\\n/run/sysctl.d/*.conf\\n/usr/local/lib/sysctl.d/*.conf\\n/usr/lib/sysctl.d/*.conf\\n/lib/sysctl.d/*.conf\\n/etc/sysctl.conf\\n\\nBased on the information above, if a configuration file that begins with \\\"99-\\\" is created in the \\\"/etc/sysctl.d/\\\" directory, it will take precedence over any other configuration file on the system.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230541", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230541r792954_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:354", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33185r792953_fix", - "fixtext_fixref": "F-33185r792953_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-040261", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230541r792954_rule", - "role": "full", - "time": "2021-11-12T11:37:31-05:00", - "severity": "medium", - "version": "RHEL-08-040261", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:354", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:31-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230542", - "title": "RHEL 8 must not accept router advertisements on all IPv6 interfaces by default.", - "desc": "Routing protocol daemons are typically used on routers to exchange network topology information with other routers. If this software is used when not required, system network information may be unnecessarily transmitted across the network.\n\nAn illicit router advertisement message could result in a man-in-the-middle attack.\n\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\n/etc/sysctl.d/*.conf\n/run/sysctl.d/*.conf\n/usr/local/lib/sysctl.d/*.conf\n/usr/lib/sysctl.d/*.conf\n/lib/sysctl.d/*.conf\n/etc/sysctl.conf\n\nBased on the information above, if a configuration file that begins with \"99-\" is created in the \"/etc/sysctl.d/\" directory, it will take precedence over any other configuration file on the system.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:355", - "label": "check" - }, - { - "data": "Configure RHEL 8 to not accept router advertisements on all IPv6 interfaces by default unless the system is a router.\n\nAdd or edit the following line in a system configuration file, which begins with \"99-\", in the \"/etc/sysctl.d/\" directory:\n\nnet.ipv6.conf.default.accept_ra=0\n\nLoad settings from all system configuration files with the following command:\n\n$ sudo sysctl --system", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Routing protocol daemons are typically used on routers to exchange network topology information with other routers. If this software is used when not required, system network information may be unnecessarily transmitted across the network.\\n\\nAn illicit router advertisement message could result in a man-in-the-middle attack.\\n\\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\\n/etc/sysctl.d/*.conf\\n/run/sysctl.d/*.conf\\n/usr/local/lib/sysctl.d/*.conf\\n/usr/lib/sysctl.d/*.conf\\n/lib/sysctl.d/*.conf\\n/etc/sysctl.conf\\n\\nBased on the information above, if a configuration file that begins with \\\"99-\\\" is created in the \\\"/etc/sysctl.d/\\\" directory, it will take precedence over any other configuration file on the system.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230542", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230542r792957_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:355", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33186r792956_fix", - "fixtext_fixref": "F-33186r792956_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-040262", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230542r792957_rule", - "role": "full", - "time": "2021-11-12T11:37:31-05:00", - "severity": "medium", - "version": "RHEL-08-040262", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:355", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:31-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230543", - "title": "RHEL 8 must not allow interfaces to perform Internet Control Message Protocol (ICMP) redirects by default.", - "desc": "ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages contain information from the system's route table, possibly revealing portions of the network topology.\n\nThere are notable differences between Internet Protocol version 4 (IPv4) and Internet Protocol version 6 (IPv6). There is only a directive to disable sending of IPv4 redirected packets. Refer to RFC4294 for an explanation of \"IPv6 Node Requirements\", which resulted in this difference between IPv4 and IPv6.\n\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\n/etc/sysctl.d/*.conf\n/run/sysctl.d/*.conf\n/usr/local/lib/sysctl.d/*.conf\n/usr/lib/sysctl.d/*.conf\n/lib/sysctl.d/*.conf\n/etc/sysctl.conf\n\nBased on the information above, if a configuration file that begins with \"99-\" is created in the \"/etc/sysctl.d/\" directory, it will take precedence over any other configuration file on the system.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:356", - "label": "check" - }, - { - "data": "Configure RHEL 8 to not allow interfaces to perform Internet Protocol version 4 (IPv4) ICMP redirects by default.\n\nAdd or edit the following line in a system configuration file, which begins with \"99-\", in the \"/etc/sysctl.d/\" directory:\n\nnet.ipv4.conf.default.send_redirects = 0\n\nLoad settings from all system configuration files with the following command:\n\n$ sudo sysctl --system", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages contain information from the system's route table, possibly revealing portions of the network topology.\\n\\nThere are notable differences between Internet Protocol version 4 (IPv4) and Internet Protocol version 6 (IPv6). There is only a directive to disable sending of IPv4 redirected packets. Refer to RFC4294 for an explanation of \\\"IPv6 Node Requirements\\\", which resulted in this difference between IPv4 and IPv6.\\n\\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\\n/etc/sysctl.d/*.conf\\n/run/sysctl.d/*.conf\\n/usr/local/lib/sysctl.d/*.conf\\n/usr/lib/sysctl.d/*.conf\\n/lib/sysctl.d/*.conf\\n/etc/sysctl.conf\\n\\nBased on the information above, if a configuration file that begins with \\\"99-\\\" is created in the \\\"/etc/sysctl.d/\\\" directory, it will take precedence over any other configuration file on the system.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230543", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230543r792960_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:356", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33187r792959_fix", - "fixtext_fixref": "F-33187r792959_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-040270", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230543r792960_rule", - "role": "full", - "time": "2021-11-12T11:37:31-05:00", - "severity": "medium", - "version": "RHEL-08-040270", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:356", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:31-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230544", - "title": "RHEL 8 must ignore IPv6 Internet Control Message Protocol (ICMP) redirect messages.", - "desc": "ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages modify the host's route table and are unauthenticated. An illicit ICMP redirect message could result in a man-in-the-middle attack.\n\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\n/etc/sysctl.d/*.conf\n/run/sysctl.d/*.conf\n/usr/local/lib/sysctl.d/*.conf\n/usr/lib/sysctl.d/*.conf\n/lib/sysctl.d/*.conf\n/etc/sysctl.conf\n\nBased on the information above, if a configuration file that begins with \"99-\" is created in the \"/etc/sysctl.d/\" directory, it will take precedence over any other configuration file on the system.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:357", - "label": "check" - }, - { - "data": "Configure RHEL 8 to ignore IPv6 ICMP redirect messages.\n\nAdd or edit the following line in a system configuration file, which begins with \"99-\", in the \"/etc/sysctl.d/\" directory:\n\nnet.ipv6.conf.all.accept_redirects = 0\n\nLoad settings from all system configuration files with the following command:\n\n$ sudo sysctl --system", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages modify the host's route table and are unauthenticated. An illicit ICMP redirect message could result in a man-in-the-middle attack.\\n\\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\\n/etc/sysctl.d/*.conf\\n/run/sysctl.d/*.conf\\n/usr/local/lib/sysctl.d/*.conf\\n/usr/lib/sysctl.d/*.conf\\n/lib/sysctl.d/*.conf\\n/etc/sysctl.conf\\n\\nBased on the information above, if a configuration file that begins with \\\"99-\\\" is created in the \\\"/etc/sysctl.d/\\\" directory, it will take precedence over any other configuration file on the system.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230544", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230544r792963_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:357", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33188r792962_fix", - "fixtext_fixref": "F-33188r792962_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-040280", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230544r792963_rule", - "role": "full", - "time": "2021-11-12T11:37:31-05:00", - "severity": "medium", - "version": "RHEL-08-040280", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:357", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:31-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230545", - "title": "RHEL 8 must disable access to network bpf syscall from unprivileged processes.", - "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\n/etc/sysctl.d/*.conf\n/run/sysctl.d/*.conf\n/usr/local/lib/sysctl.d/*.conf\n/usr/lib/sysctl.d/*.conf\n/lib/sysctl.d/*.conf\n/etc/sysctl.conf\n\nBased on the information above, if a configuration file that begins with \"99-\" is created in the \"/etc/sysctl.d/\" directory, it will take precedence over any other configuration file on the system.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:358", - "label": "check" - }, - { - "data": "Configure RHEL 8 to prevent privilege escalation thru the kernel by disabling access to the bpf syscall by adding the following line to a file, which begins with \"99-\", in the \"/etc/sysctl.d\" directory:\n\nkernel.unprivileged_bpf_disabled = 1\n\nThe system configuration files need to be reloaded for the changes to take effect. To reload the contents of the files, run the following command:\n\n$ sudo sysctl --system", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\\n/etc/sysctl.d/*.conf\\n/run/sysctl.d/*.conf\\n/usr/local/lib/sysctl.d/*.conf\\n/usr/lib/sysctl.d/*.conf\\n/lib/sysctl.d/*.conf\\n/etc/sysctl.conf\\n\\nBased on the information above, if a configuration file that begins with \\\"99-\\\" is created in the \\\"/etc/sysctl.d/\\\" directory, it will take precedence over any other configuration file on the system.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230545", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230545r792966_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:358", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33189r792965_fix", - "fixtext_fixref": "F-33189r792965_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-040281", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230545r792966_rule", - "role": "full", - "time": "2021-11-12T11:37:31-05:00", - "severity": "medium", - "version": "RHEL-08-040281", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:358", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:31-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230546", - "title": "RHEL 8 must restrict usage of ptrace to descendant processes.", - "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\n/etc/sysctl.d/*.conf\n/run/sysctl.d/*.conf\n/usr/local/lib/sysctl.d/*.conf\n/usr/lib/sysctl.d/*.conf\n/lib/sysctl.d/*.conf\n/etc/sysctl.conf\n\nBased on the information above, if a configuration file that begins with \"99-\" is created in the \"/etc/sysctl.d/\" directory, it will take precedence over any other configuration file on the system.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:359", - "label": "check" - }, - { - "data": "Configure RHEL 8 to restrict usage of ptrace to descendant processes by adding the following line to a file, which begins with \"99-\", in the \"/etc/sysctl.d\" directory:\n\nkernel.yama.ptrace_scope = 1\n\nThe system configuration files need to be reloaded for the changes to take effect. To reload the contents of the files, run the following command:\n\n$ sudo sysctl --system", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\\n/etc/sysctl.d/*.conf\\n/run/sysctl.d/*.conf\\n/usr/local/lib/sysctl.d/*.conf\\n/usr/lib/sysctl.d/*.conf\\n/lib/sysctl.d/*.conf\\n/etc/sysctl.conf\\n\\nBased on the information above, if a configuration file that begins with \\\"99-\\\" is created in the \\\"/etc/sysctl.d/\\\" directory, it will take precedence over any other configuration file on the system.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230546", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230546r792969_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:359", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33190r792968_fix", - "fixtext_fixref": "F-33190r792968_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-040282", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230546r792969_rule", - "role": "full", - "time": "2021-11-12T11:37:31-05:00", - "severity": "medium", - "version": "RHEL-08-040282", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:359", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:31-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230547", - "title": "RHEL 8 must restrict exposed kernel pointer addresses access.", - "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\n/etc/sysctl.d/*.conf\n/run/sysctl.d/*.conf\n/usr/local/lib/sysctl.d/*.conf\n/usr/lib/sysctl.d/*.conf\n/lib/sysctl.d/*.conf\n/etc/sysctl.conf\n\nBased on the information above, if a configuration file that begins with \"99-\" is created in the \"/etc/sysctl.d/\" directory, it will take precedence over any other configuration file on the system.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:360", - "label": "check" - }, - { - "data": "Configure RHEL 8 to restrict exposed kernel pointer addresses access by adding the following line to a file, which begins with \"99-\", in the \"/etc/sysctl.d\" directory:\n\nkernel.kptr_restrict = 1\n\nThe system configuration files need to be reloaded for the changes to take effect. To reload the contents of the files, run the following command:\n\n$ sudo sysctl --system", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\\n/etc/sysctl.d/*.conf\\n/run/sysctl.d/*.conf\\n/usr/local/lib/sysctl.d/*.conf\\n/usr/lib/sysctl.d/*.conf\\n/lib/sysctl.d/*.conf\\n/etc/sysctl.conf\\n\\nBased on the information above, if a configuration file that begins with \\\"99-\\\" is created in the \\\"/etc/sysctl.d/\\\" directory, it will take precedence over any other configuration file on the system.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230547", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230547r792972_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:360", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33191r792971_fix", - "fixtext_fixref": "F-33191r792971_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-040283", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230547r792972_rule", - "role": "full", - "time": "2021-11-12T11:37:31-05:00", - "severity": "medium", - "version": "RHEL-08-040283", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:360", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:31-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230548", - "title": "RHEL 8 must disable the use of user namespaces.", - "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\n/etc/sysctl.d/*.conf\n/run/sysctl.d/*.conf\n/usr/local/lib/sysctl.d/*.conf\n/usr/lib/sysctl.d/*.conf\n/lib/sysctl.d/*.conf\n/etc/sysctl.conf\n\nBased on the information above, if a configuration file that begins with \"99-\" is created in the \"/etc/sysctl.d/\" directory, it will take precedence over any other configuration file on the system.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:361", - "label": "check" - }, - { - "data": "Configure RHEL 8 to disable the use of user namespaces by adding the following line to a file, which begins with \"99-\", in the \"/etc/sysctl.d\" directory:\n\nNote: User namespaces are used primarily for Linux containers. If containers are in use, this requirement is not applicable. \n\nuser.max_user_namespaces = 0\n\nThe system configuration files need to be reloaded for the changes to take effect. To reload the contents of the files, run the following command:\n\n$ sudo sysctl --system", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\\n/etc/sysctl.d/*.conf\\n/run/sysctl.d/*.conf\\n/usr/local/lib/sysctl.d/*.conf\\n/usr/lib/sysctl.d/*.conf\\n/lib/sysctl.d/*.conf\\n/etc/sysctl.conf\\n\\nBased on the information above, if a configuration file that begins with \\\"99-\\\" is created in the \\\"/etc/sysctl.d/\\\" directory, it will take precedence over any other configuration file on the system.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230548", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230548r792975_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:361", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33192r792974_fix", - "fixtext_fixref": "F-33192r792974_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-040284", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230548r792975_rule", - "role": "full", - "time": "2021-11-12T11:37:31-05:00", - "severity": "medium", - "version": "RHEL-08-040284", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:361", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:31-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230549", - "title": "RHEL 8 must use reverse path filtering on all IPv4 interfaces.", - "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\n/etc/sysctl.d/*.conf\n/run/sysctl.d/*.conf\n/usr/local/lib/sysctl.d/*.conf\n/usr/lib/sysctl.d/*.conf\n/lib/sysctl.d/*.conf\n/etc/sysctl.conf\n\nBased on the information above, if a configuration file that begins with \"99-\" is created in the \"/etc/sysctl.d/\" directory, it will take precedence over any other configuration file on the system.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:362", - "label": "check" - }, - { - "data": "Configure RHEL 8 to use reverse path filtering on all IPv4 interfaces by adding the following line to a file, which begins with \"99-\", in the \"/etc/sysctl.d\" directory:\n\nnet.ipv4.conf.all.rp_filter = 1\n\nThe system configuration files need to be reloaded for the changes to take effect. To reload the contents of the files, run the following command:\n\n$ sudo sysctl --system", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\\n/etc/sysctl.d/*.conf\\n/run/sysctl.d/*.conf\\n/usr/local/lib/sysctl.d/*.conf\\n/usr/lib/sysctl.d/*.conf\\n/lib/sysctl.d/*.conf\\n/etc/sysctl.conf\\n\\nBased on the information above, if a configuration file that begins with \\\"99-\\\" is created in the \\\"/etc/sysctl.d/\\\" directory, it will take precedence over any other configuration file on the system.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230549", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230549r792978_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:362", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33193r792977_fix", - "fixtext_fixref": "F-33193r792977_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-040285", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230549r792978_rule", - "role": "full", - "time": "2021-11-12T11:37:31-05:00", - "severity": "medium", - "version": "RHEL-08-040285", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:362", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:31-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230550", - "title": "RHEL 8 must be configured to prevent unrestricted mail relaying.", - "desc": "If unrestricted mail relaying is permitted, unauthorized senders could use this host as a mail relay for the purpose of sending spam or other unauthorized activity.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:363", - "label": "check" - }, - { - "data": "If \"postfix\" is installed, modify the \"/etc/postfix/main.cf\" file to restrict client connections to the local network with the following command:\n\n$ sudo postconf -e 'smtpd_client_restrictions = permit_mynetworks,reject'", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"If unrestricted mail relaying is permitted, unauthorized senders could use this host as a mail relay for the purpose of sending spam or other unauthorized activity.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230550", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230550r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:363", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33194r568397_fix", - "fixtext_fixref": "F-33194r568397_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-040290", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230550r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:31-05:00", - "severity": "medium", - "version": "RHEL-08-040290", - "weight": "10.000000", - "result": "pass", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:363", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:31-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230555", - "title": "RHEL 8 remote X connections for interactive users must be disabled unless to fulfill documented and validated mission requirements.", - "desc": "The security risk of using X11 forwarding is that the client's X11 display server may be exposed to attack when the SSH client requests forwarding. A system administrator may have a stance in which they want to protect clients that may expose themselves to attack by unwittingly requesting X11 forwarding, which can warrant a \"no\" setting.\n\nX11 forwarding should be enabled with caution. Users with the ability to bypass file permissions on the remote host (for the user's X11 authorization database) can access the local X11 display through the forwarded connection. An attacker may then be able to perform activities such as keystroke monitoring if the ForwardX11Trusted option is also enabled.\n\nIf X11 services are not required for the system's intended function, they should be disabled or restricted as appropriate to the system’s needs.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:364", - "label": "check" - }, - { - "data": "Edit the \"/etc/ssh/sshd_config\" file to uncomment or add the line for the \"X11Forwarding\" keyword and set its value to \"no\" (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor):\n\nX11Forwarding no\n\nThe SSH service must be restarted for changes to take effect:\n\n$ sudo systemctl restart sshd", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"The security risk of using X11 forwarding is that the client's X11 display server may be exposed to attack when the SSH client requests forwarding. A system administrator may have a stance in which they want to protect clients that may expose themselves to attack by unwittingly requesting X11 forwarding, which can warrant a \\\"no\\\" setting.\\n\\nX11 forwarding should be enabled with caution. Users with the ability to bypass file permissions on the remote host (for the user's X11 authorization database) can access the local X11 display through the forwarded connection. An attacker may then be able to perform activities such as keystroke monitoring if the ForwardX11Trusted option is also enabled.\\n\\nIf X11 services are not required for the system's intended function, they should be disabled or restricted as appropriate to the system’s needs.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230555", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230555r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:364", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33199r568412_fix", - "fixtext_fixref": "F-33199r568412_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-040340", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230555r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:31-05:00", - "severity": "medium", - "version": "RHEL-08-040340", - "weight": "10.000000", - "result": "error", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:364", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:31-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230556", - "title": "The RHEL 8 SSH daemon must prevent remote hosts from connecting to the proxy display.", - "desc": "When X11 forwarding is enabled, there may be additional exposure to the server and client displays if the sshd proxy display is configured to listen on the wildcard address. By default, sshd binds the forwarding server to the loopback address and sets the hostname part of the DIPSLAY environment variable to localhost. This prevents remote hosts from connecting to the proxy display.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:365", - "label": "check" - }, - { - "data": "Configure the SSH daemon to prevent remote hosts from connecting to the proxy display.\n\nEdit the \"/etc/ssh/sshd_config\" file to uncomment or add the line for the \"X11UseLocalhost\" keyword and set its value to \"yes\" (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor):\n\nX11UseLocalhost yes", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"When X11 forwarding is enabled, there may be additional exposure to the server and client displays if the sshd proxy display is configured to listen on the wildcard address. By default, sshd binds the forwarding server to the loopback address and sets the hostname part of the DIPSLAY environment variable to localhost. This prevents remote hosts from connecting to the proxy display.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230556", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230556r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:365", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33200r568415_fix", - "fixtext_fixref": "F-33200r568415_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-040341", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230556r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:31-05:00", - "severity": "medium", - "version": "RHEL-08-040341", - "weight": "10.000000", - "result": "error", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:365", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:31-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230557", - "title": "If the Trivial File Transfer Protocol (TFTP) server is required, the RHEL 8 TFTP daemon must be configured to operate in secure mode.", - "desc": "Restricting TFTP to a specific directory prevents remote users from copying, transferring, or overwriting system files.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:366", - "label": "check" - }, - { - "data": "Configure the TFTP daemon to operate in secure mode by adding the following line to \"/etc/xinetd.d/tftp\" (or modify the line to have the required value):\n\nserver_args = -s /var/lib/tftpboot", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Restricting TFTP to a specific directory prevents remote users from copying, transferring, or overwriting system files.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230557", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230557r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:366", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33201r568418_fix", - "fixtext_fixref": "F-33201r568418_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-040350", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230557r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:31-05:00", - "severity": "medium", - "version": "RHEL-08-040350", - "weight": "10.000000", - "result": "pass", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:366", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:31-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230558", - "title": "A File Transfer Protocol (FTP) server package must not be installed unless mission essential on RHEL 8.", - "desc": "The FTP service provides an unencrypted remote access that does not provide for the confidentiality and integrity of user passwords or the remote session. If a privileged user were to log on using this service, the privileged user password could be compromised. SSH or other encrypted file transfer methods must be used in place of this service.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:367", - "label": "check" - }, - { - "data": "Document the FTP server package with the ISSO as an operational requirement or remove it from the system with the following command:\n\n$ sudo yum remove vsftpd", - "label": "fix" - } - ], - "impact": 0.7, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "high", - "description": "{\"VulnDiscussion\":\"The FTP service provides an unencrypted remote access that does not provide for the confidentiality and integrity of user passwords or the remote session. If a privileged user were to log on using this service, the privileged user password could be compromised. SSH or other encrypted file transfer methods must be used in place of this service.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230558", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230558r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:367", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33202r568421_fix", - "fixtext_fixref": "F-33202r568421_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-040360", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230558r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:31-05:00", - "severity": "high", - "version": "RHEL-08-040360", - "weight": "10.000000", - "result": "pass", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:367", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:31-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230559", - "title": "The gssproxy package must not be installed unless mission essential on RHEL 8.", - "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\n\nThe gssproxy package is a proxy for GSS API credential handling and could expose secrets on some networks. It is not needed for normal function of the OS.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:368", - "label": "check" - }, - { - "data": "Document the gssproxy package with the ISSO as an operational requirement or remove it from the system with the following command:\n\n$ sudo yum remove gssproxy", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000381" - ], - "nist": [ - "CM-7 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\\n\\nThe gssproxy package is a proxy for GSS API credential handling and could expose secrets on some networks. It is not needed for normal function of the OS.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230559", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230559r646887_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:368", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33203r568424_fix", - "fixtext_fixref": "F-33203r568424_fix", - "ident": { - "text": "CCI-000381", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-040370", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230559r646887_rule", - "role": "full", - "time": "2021-11-12T11:37:31-05:00", - "severity": "medium", - "version": "RHEL-08-040370", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000381", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:368", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:31-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230560", - "title": "The iprutils package must not be installed unless mission essential on RHEL 8.", - "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\n\nThe iprutils package provides a suite of utilities to manage and configure SCSI devices supported by the ipr SCSI storage device driver.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:369", - "label": "check" - }, - { - "data": "Document the iprutils package with the ISSO as an operational requirement or remove it from the system with the following command:\n\n$ sudo yum remove iprutils", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\\n\\nThe iprutils package provides a suite of utilities to manage and configure SCSI devices supported by the ipr SCSI storage device driver.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230560", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230560r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:369", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33204r568427_fix", - "fixtext_fixref": "F-33204r568427_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-040380", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230560r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:31-05:00", - "severity": "medium", - "version": "RHEL-08-040380", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:369", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:31-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230561", - "title": "The tuned package must not be installed unless mission essential on RHEL 8.", - "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\n\nThe tuned package contains a daemon that tunes the system settings dynamically. It does so by monitoring the usage of several system components periodically. Based on that information, components will then be put into lower or higher power savings modes to adapt to the current usage. The tuned package is not needed for normal OS operations.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:370", - "label": "check" - }, - { - "data": "Document the tuned package with the ISSO as an operational requirement or remove it from the system with the following command:\n\n$ sudo yum remove tuned", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\\n\\nThe tuned package contains a daemon that tunes the system settings dynamically. It does so by monitoring the usage of several system components periodically. Based on that information, components will then be put into lower or higher power savings modes to adapt to the current usage. The tuned package is not needed for normal OS operations.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230561", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230561r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:370", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33205r568430_fix", - "fixtext_fixref": "F-33205r568430_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-040390", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230561r627750_rule", - "role": "full", - "time": "2021-11-12T11:37:31-05:00", - "severity": "medium", - "version": "RHEL-08-040390", - "weight": "10.000000", - "result": "fail", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:370", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:31-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-237640", - "title": "The krb5-server package must not be installed on RHEL 8.", - "desc": "Unapproved mechanisms that are used for authentication to the cryptographic module are not verified and therefore cannot be relied upon to provide confidentiality or integrity, and DoD data may be compromised.\n\nRHEL 8 systems utilizing encryption are required to use FIPS-compliant mechanisms for authenticating to cryptographic modules.\n\nCurrently, Kerberos does not utilize FIPS 140-2 cryptography.\n\nFIPS 140-2 is the current standard for validating that mechanisms used to access cryptographic modules utilize authentication that meets DoD requirements. This allows for Security Levels 1, 2, 3, or 4 for use on a general-purpose computing system.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:413", - "label": "check" - }, - { - "data": "Document the krb5-server package with the ISSO as an operational requirement or remove it from the system with the following command:\n\n$ sudo yum remove krb5-server", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000803" - ], - "nist": [ - "IA-7" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Unapproved mechanisms that are used for authentication to the cryptographic module are not verified and therefore cannot be relied upon to provide confidentiality or integrity, and DoD data may be compromised.\\n\\nRHEL 8 systems utilizing encryption are required to use FIPS-compliant mechanisms for authenticating to cryptographic modules.\\n\\nCurrently, Kerberos does not utilize FIPS 140-2 cryptography.\\n\\nFIPS 140-2 is the current standard for validating that mechanisms used to access cryptographic modules utilize authentication that meets DoD requirements. This allows for Security Levels 1, 2, 3, or 4 for use on a general-purpose computing system.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-237640", - "group_title": "SRG-OS-000120-GPOS-00061", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-237640r646890_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:413", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-40822r646889_fix", - "fixtext_fixref": "F-40822r646889_fix", - "ident": { - "text": "CCI-000803", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-010163", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-237640r646890_rule", - "role": "full", - "time": "2021-11-12T11:37:31-05:00", - "severity": "medium", - "version": "RHEL-08-010163", - "weight": "10.000000", - "result": "pass", - "ident": { - "text": "CCI-000803", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:413", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:31-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-237641", - "title": "RHEL 8 must restrict privilege elevation to authorized personnel.", - "desc": "The sudo command allows a user to execute programs with elevated (administrator) privileges. It prompts the user for their password and confirms your request to execute a command by checking a file, called sudoers. If the \"sudoers\" file is not configured correctly, any user defined on the system can initiate privileged actions on the target system.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:414", - "label": "check" - }, - { - "data": "Remove the following entries from the sudoers file:\nALL ALL=(ALL) ALL\nALL ALL=(ALL:ALL) ALL", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"The sudo command allows a user to execute programs with elevated (administrator) privileges. It prompts the user for their password and confirms your request to execute a command by checking a file, called sudoers. If the \\\"sudoers\\\" file is not configured correctly, any user defined on the system can initiate privileged actions on the target system.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-237641", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-237641r646893_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:414", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-40823r646892_fix", - "fixtext_fixref": "F-40823r646892_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-010382", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-237641r646893_rule", - "role": "full", - "time": "2021-11-12T11:37:31-05:00", - "severity": "medium", - "version": "RHEL-08-010382", - "weight": "10.000000", - "result": "error", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:414", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:31-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-237642", - "title": "RHEL 8 must use the invoking user's password for privilege escalation when using \"sudo\".", - "desc": "The sudoers security policy requires that users authenticate themselves before they can use sudo. When sudoers requires authentication, it validates the invoking user's credentials. If the rootpw, targetpw, or runaspw flags are defined and not disabled, by default the operating system will prompt the invoking user for the \"root\" user password. \nFor more information on each of the listed configurations, reference the sudoers(5) manual page.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:415", - "label": "check" - }, - { - "data": "Define the following in the Defaults section of the /etc/sudoers file or a configuration file in the /etc/sudoers.d/ directory:\nDefaults !targetpw\nDefaults !rootpw\nDefaults !runaspw", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-002227" - ], - "nist": [ - "AC-6 (5)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"The sudoers security policy requires that users authenticate themselves before they can use sudo. When sudoers requires authentication, it validates the invoking user's credentials. If the rootpw, targetpw, or runaspw flags are defined and not disabled, by default the operating system will prompt the invoking user for the \\\"root\\\" user password. \\nFor more information on each of the listed configurations, reference the sudoers(5) manual page.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-237642", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-237642r646896_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:415", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-40824r646895_fix", - "fixtext_fixref": "F-40824r646895_fix", - "ident": { - "text": "CCI-002227", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-010383", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-237642r646896_rule", - "role": "full", - "time": "2021-11-12T11:37:31-05:00", - "severity": "medium", - "version": "RHEL-08-010383", - "weight": "10.000000", - "result": "error", - "ident": { - "text": "CCI-002227", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:415", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:31-05:00", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-237643", - "title": "RHEL 8 must require re-authentication when using the \"sudo\" command.", - "desc": "Without re-authentication, users may access resources or perform tasks for which they do not have authorization. \n\nWhen operating systems provide the capability to escalate a functional capability, it is critical the organization requires the user to re-authenticate when using the \"sudo\" command.\n\nIf the value is set to an integer less than 0, the user's time stamp will not expire and the user will not have to re-authenticate for privileged actions until the user's session is terminated.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:416", - "label": "check" - }, - { - "data": "Configure the \"sudo\" command to require re-authentication.\nEdit the /etc/sudoers file:\n$ sudo visudo\n\nAdd or modify the following line:\nDefaults timestamp_timeout=[value]\nNote: The \"[value]\" must be a number that is greater than or equal to \"0\".", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-002038" - ], - "nist": [ - "IA-11" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without re-authentication, users may access resources or perform tasks for which they do not have authorization. \\n\\nWhen operating systems provide the capability to escalate a functional capability, it is critical the organization requires the user to re-authenticate when using the \\\"sudo\\\" command.\\n\\nIf the value is set to an integer less than 0, the user's time stamp will not expire and the user will not have to re-authenticate for privileged actions until the user's session is terminated.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-237643", - "group_title": "SRG-OS-000373-GPOS-00156", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-237643r792980_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:416", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-40825r646898_fix", - "fixtext_fixref": "F-40825r646898_fix", - "ident": { - "text": "CCI-002038", - "system": "http://cyber.mil/cci" - }, - "reference": { - "xmlns:dc": "http://purl.org/dc/elements/1.1/", - "dc:title": "DPMS Target Red Hat Enterprise Linux 8", - "dc:subject": "Red Hat Enterprise Linux 8", - "dc:publisher": "DISA", - "dc:type": "DPMS Target", - "dc:identifier": 2921 - }, - "selected": "true", - "version": "RHEL-08-010384", - "weight": "10.000000", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-237643r792980_rule", - "role": "full", - "time": "2021-11-12T11:37:31-05:00", - "severity": "medium", - "version": "RHEL-08-010384", - "weight": "10.000000", - "result": "error", - "ident": { - "text": "CCI-002038", - "system": "http://cyber.mil/cci" - }, - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:416", - "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-11-12T11:37:31-05:00", - "message": "", - "resource": "" - } - ] + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "high", + "description": "{\"VulnDiscussion\":\"An operating system release is considered \\\"supported\\\" if the vendor continues to provide security patches for the product. With an unsupported release, it will not be possible to resolve security issues discovered in the system software.\\n\\nRed Hat offers the Extended Update Support (EUS) ad-on to a Red Hat Enterprise Linux subscription, for a fee, for those customers who wish to standardize on a specific minor release for an extended period. The RHEL 8 minor releases eligible for EUS are 8.1, 8.2, 8.4, 8.6, and 8.8. Each RHEL 8 EUS stream is available for 24 months from the availability of the minor release. RHEL 8.10 will be the final minor release overall. For more details on the Red Hat Enterprise Linux Life Cycle visit https://access.redhat.com/support/policy/updates/errata.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230221", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230221r743913_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:100", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32865r567410_fix", + "fixtext_fixref": "F-32865r567410_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-010000", + "weight": "10.000000", + "profiles": [] + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must be a vendor-supported release.", + "id": "V-230221", + "desc": "An operating system release is considered \"supported\" if the vendor continues to provide security patches for the product. With an unsupported release, it will not be possible to resolve security issues discovered in the system software.\n\nRed Hat offers the Extended Update Support (EUS) ad-on to a Red Hat Enterprise Linux subscription, for a fee, for those customers who wish to standardize on a specific minor release for an extended period. The RHEL 8 minor releases eligible for EUS are 8.1, 8.2, 8.4, 8.6, and 8.8. Each RHEL 8 EUS stream is available for 24 months from the availability of the minor release. RHEL 8.10 will be the final minor release overall. For more details on the Red Hat Enterprise Linux Life Cycle visit https://access.redhat.com/support/policy/updates/errata.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:100", + "label": "check" + }, + { + "data": "Upgrade to a supported version of RHEL 8.", + "label": "fix" + } + ], + "impact": 0.7, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230221\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230221r743913_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"high\",\n \"version\": {\n \"text\": \"RHEL-08-010000\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must be a vendor-supported release.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>An operating system release is considered \\\"supported\\\" if the vendor continues to provide security patches for the product. With an unsupported release, it will not be possible to resolve security issues discovered in the system software.\\n\\nRed Hat offers the Extended Update Support (EUS) ad-on to a Red Hat Enterprise Linux subscription, for a fee, for those customers who wish to standardize on a specific minor release for an extended period. The RHEL 8 minor releases eligible for EUS are 8.1, 8.2, 8.4, 8.6, and 8.8. Each RHEL 8 EUS stream is available for 24 months from the availability of the minor release. RHEL 8.10 will be the final minor release overall. For more details on the Red Hat Enterprise Linux Life Cycle visit https://access.redhat.com/support/policy/updates/errata.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Upgrade to a supported version of RHEL 8.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-32865r567410_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-32865r567410_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:100\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-11-12T11:37:26-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000068" + ], + "nist": [ + "AC-17 (2)" + ], + "severity": "high", + "description": "{\"VulnDiscussion\":\"Use of weak or untested encryption algorithms undermines the purposes of using encryption to protect data. The operating system must implement cryptographic modules adhering to the higher standards approved by the Federal Government since this provides assurance they have been tested and validated.\\n\\nRHEL 8 utilizes GRUB 2 as the default bootloader. Note that GRUB 2 command-line parameters are defined in the \\\"kernelopts\\\" variable of the /boot/grub2/grubenv file for all kernel boot entries. The command \\\"fips-mode-setup\\\" modifies the \\\"kernelopts\\\" variable, which in turn updates all kernel boot entries. \\n\\nThe fips=1 kernel option needs to be added to the kernel command line during system installation so that key generation is done with FIPS-approved algorithms and continuous monitoring tests in place. Users must also ensure the system has plenty of entropy during the installation process by moving the mouse around, or if no mouse is available, ensuring that many keystrokes are typed. The recommended amount of keystrokes is 256 and more. Less than 256 keystrokes may generate a non-unique key.\\n\\nSatisfies: SRG-OS-000033-GPOS-00014, SRG-OS-000125-GPOS-00065, SRG-OS-000396-GPOS-00176, SRG-OS-000423-GPOS-00187, SRG-OS-000478-GPOS-00223\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230223", + "group_title": "SRG-OS-000033-GPOS-00014", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230223r792855_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:101", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32867r567416_fix", + "fixtext_fixref": "F-32867r567416_fix", + "ident": { + "text": "CCI-000068", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-010020", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230221r743913_rule", + "role": "full", + "time": "2021-11-12T11:37:26-05:00", + "severity": "high", + "version": "RHEL-08-010000", + "weight": "10.000000", + "result": "pass", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:100", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must implement NIST FIPS-validated cryptography for the following: to provision digital signatures, to generate cryptographic hashes, and to protect data requiring data-at-rest protections in accordance with applicable federal laws, Executive Orders, directives, policies, regulations, and standards.", + "id": "V-230223", + "desc": "Use of weak or untested encryption algorithms undermines the purposes of using encryption to protect data. The operating system must implement cryptographic modules adhering to the higher standards approved by the Federal Government since this provides assurance they have been tested and validated.\n\nRHEL 8 utilizes GRUB 2 as the default bootloader. Note that GRUB 2 command-line parameters are defined in the \"kernelopts\" variable of the /boot/grub2/grubenv file for all kernel boot entries. The command \"fips-mode-setup\" modifies the \"kernelopts\" variable, which in turn updates all kernel boot entries. \n\nThe fips=1 kernel option needs to be added to the kernel command line during system installation so that key generation is done with FIPS-approved algorithms and continuous monitoring tests in place. Users must also ensure the system has plenty of entropy during the installation process by moving the mouse around, or if no mouse is available, ensuring that many keystrokes are typed. The recommended amount of keystrokes is 256 and more. Less than 256 keystrokes may generate a non-unique key.\n\nSatisfies: SRG-OS-000033-GPOS-00014, SRG-OS-000125-GPOS-00065, SRG-OS-000396-GPOS-00176, SRG-OS-000423-GPOS-00187, SRG-OS-000478-GPOS-00223", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:101", + "label": "check" + }, + { + "data": "Configure the operating system to implement DoD-approved encryption by following the steps below:\n\nTo enable strict FIPS compliance, the fips=1 kernel option needs to be added to the kernel boot parameters during system installation so key generation is done with FIPS-approved algorithms and continuous monitoring tests in place.\n\nEnable FIPS mode after installation (not strict FIPS compliant) with the following command:\n\n$ sudo fips-mode-setup --enable\n\nReboot the system for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.7, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230223\",\n \"title\": {\n \"text\": \"SRG-OS-000033-GPOS-00014\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230223r792855_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"high\",\n \"version\": {\n \"text\": \"RHEL-08-010020\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must implement NIST FIPS-validated cryptography for the following: to provision digital signatures, to generate cryptographic hashes, and to protect data requiring data-at-rest protections in accordance with applicable federal laws, Executive Orders, directives, policies, regulations, and standards.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Use of weak or untested encryption algorithms undermines the purposes of using encryption to protect data. The operating system must implement cryptographic modules adhering to the higher standards approved by the Federal Government since this provides assurance they have been tested and validated.\\n\\nRHEL 8 utilizes GRUB 2 as the default bootloader. Note that GRUB 2 command-line parameters are defined in the \\\"kernelopts\\\" variable of the /boot/grub2/grubenv file for all kernel boot entries. The command \\\"fips-mode-setup\\\" modifies the \\\"kernelopts\\\" variable, which in turn updates all kernel boot entries. \\n\\nThe fips=1 kernel option needs to be added to the kernel command line during system installation so that key generation is done with FIPS-approved algorithms and continuous monitoring tests in place. Users must also ensure the system has plenty of entropy during the installation process by moving the mouse around, or if no mouse is available, ensuring that many keystrokes are typed. The recommended amount of keystrokes is 256 and more. Less than 256 keystrokes may generate a non-unique key.\\n\\nSatisfies: SRG-OS-000033-GPOS-00014, SRG-OS-000125-GPOS-00065, SRG-OS-000396-GPOS-00176, SRG-OS-000423-GPOS-00187, SRG-OS-000478-GPOS-00223</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000068\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the operating system to implement DoD-approved encryption by following the steps below:\\n\\nTo enable strict FIPS compliance, the fips=1 kernel option needs to be added to the kernel boot parameters during system installation so key generation is done with FIPS-approved algorithms and continuous monitoring tests in place.\\n\\nEnable FIPS mode after installation (not strict FIPS compliant) with the following command:\\n\\n$ sudo fips-mode-setup --enable\\n\\nReboot the system for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-32867r567416_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-32867r567416_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:101\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:26-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000196" + ], + "nist": [ + "IA-5 (1) (c)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Passwords need to be protected at all times, and encryption is the standard method for protecting passwords. If passwords are not encrypted, they can be plainly read (i.e., clear text) and easily compromised.\\n\\nUnapproved mechanisms that are used for authentication to the cryptographic module are not verified and therefore cannot be relied upon to provide confidentiality or integrity, and DoD data may be compromised.\\n\\nFIPS 140-2 is the current standard for validating that mechanisms used to access cryptographic modules utilize authentication that meets DoD requirements.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230231", + "group_title": "SRG-OS-000073-GPOS-00041", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230231r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:103", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32875r567440_fix", + "fixtext_fixref": "F-32875r567440_fix", + "ident": { + "text": "CCI-000196", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-010110", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230223r792855_rule", + "role": "full", + "time": "2021-11-12T11:37:26-05:00", + "severity": "high", + "version": "RHEL-08-010020", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000068", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:101", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must encrypt all stored passwords with a FIPS 140-2 approved cryptographic hashing algorithm.", + "id": "V-230231", + "desc": "Passwords need to be protected at all times, and encryption is the standard method for protecting passwords. If passwords are not encrypted, they can be plainly read (i.e., clear text) and easily compromised.\n\nUnapproved mechanisms that are used for authentication to the cryptographic module are not verified and therefore cannot be relied upon to provide confidentiality or integrity, and DoD data may be compromised.\n\nFIPS 140-2 is the current standard for validating that mechanisms used to access cryptographic modules utilize authentication that meets DoD requirements.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:103", + "label": "check" + }, + { + "data": "Configure RHEL 8 to encrypt all stored passwords. \n\nEdit/Modify the following line in the \"/etc/login.defs\" file and set \"[ENCRYPT_METHOD]\" to SHA512.\n\nENCRYPT_METHOD SHA512", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230231\",\n \"title\": {\n \"text\": \"SRG-OS-000073-GPOS-00041\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230231r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-010110\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must encrypt all stored passwords with a FIPS 140-2 approved cryptographic hashing algorithm.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Passwords need to be protected at all times, and encryption is the standard method for protecting passwords. If passwords are not encrypted, they can be plainly read (i.e., clear text) and easily compromised.\\n\\nUnapproved mechanisms that are used for authentication to the cryptographic module are not verified and therefore cannot be relied upon to provide confidentiality or integrity, and DoD data may be compromised.\\n\\nFIPS 140-2 is the current standard for validating that mechanisms used to access cryptographic modules utilize authentication that meets DoD requirements.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000196\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure RHEL 8 to encrypt all stored passwords. \\n\\nEdit/Modify the following line in the \\\"/etc/login.defs\\\" file and set \\\"[ENCRYPT_METHOD]\\\" to SHA512.\\n\\nENCRYPT_METHOD SHA512\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-32875r567440_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-32875r567440_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:103\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-11-12T11:37:26-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000196" + ], + "nist": [ + "IA-5 (1) (c)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"The system must use a strong hashing algorithm to store the password.\\n\\nPasswords need to be protected at all times, and encryption is the standard method for protecting passwords. If passwords are not encrypted, they can be plainly read (i.e., clear text) and easily compromised.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230232", + "group_title": "SRG-OS-000073-GPOS-00041", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230232r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:104", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32876r567443_fix", + "fixtext_fixref": "F-32876r567443_fix", + "ident": { + "text": "CCI-000196", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-010120", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230231r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:26-05:00", + "severity": "medium", + "version": "RHEL-08-010110", + "weight": "10.000000", + "result": "pass", + "ident": { + "text": "CCI-000196", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:103", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must employ FIPS 140-2 approved cryptographic hashing algorithms for all stored passwords.", + "id": "V-230232", + "desc": "The system must use a strong hashing algorithm to store the password.\n\nPasswords need to be protected at all times, and encryption is the standard method for protecting passwords. If passwords are not encrypted, they can be plainly read (i.e., clear text) and easily compromised.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:104", + "label": "check" + }, + { + "data": "Lock all interactive user accounts not using SHA-512 hashing until the passwords can be regenerated with SHA-512.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230232\",\n \"title\": {\n \"text\": \"SRG-OS-000073-GPOS-00041\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230232r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-010120\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must employ FIPS 140-2 approved cryptographic hashing algorithms for all stored passwords.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>The system must use a strong hashing algorithm to store the password.\\n\\nPasswords need to be protected at all times, and encryption is the standard method for protecting passwords. If passwords are not encrypted, they can be plainly read (i.e., clear text) and easily compromised.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000196\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Lock all interactive user accounts not using SHA-512 hashing until the passwords can be regenerated with SHA-512.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-32876r567443_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-32876r567443_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:104\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:26-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000196" + ], + "nist": [ + "IA-5 (1) (c)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"The system must use a strong hashing algorithm to store the password. The system must use a sufficient number of hashing rounds to ensure the required level of entropy.\\n\\nPasswords need to be protected at all times, and encryption is the standard method for protecting passwords. If passwords are not encrypted, they can be plainly read (i.e., clear text) and easily compromised.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230233", + "group_title": "SRG-OS-000073-GPOS-00041", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230233r743919_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:105", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32877r743918_fix", + "fixtext_fixref": "F-32877r743918_fix", + "ident": { + "text": "CCI-000196", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-010130", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230232r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:26-05:00", + "severity": "medium", + "version": "RHEL-08-010120", + "weight": "10.000000", + "result": "error", + "ident": { + "text": "CCI-000196", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:104", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The RHEL 8 password-auth file must be configured to use a sufficient number of hashing rounds.", + "id": "V-230233", + "desc": "The system must use a strong hashing algorithm to store the password. The system must use a sufficient number of hashing rounds to ensure the required level of entropy.\n\nPasswords need to be protected at all times, and encryption is the standard method for protecting passwords. If passwords are not encrypted, they can be plainly read (i.e., clear text) and easily compromised.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:105", + "label": "check" + }, + { + "data": "Configure RHEL 8 to encrypt all stored passwords with a strong cryptographic hash.\n\nEdit/modify the following line in the \"/etc/pam.d/password-auth\" file and set \"rounds\" to a value no lower than \"5000\":\n\npassword sufficient pam_unix.so sha512 rounds=5000", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230233\",\n \"title\": {\n \"text\": \"SRG-OS-000073-GPOS-00041\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230233r743919_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-010130\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The RHEL 8 password-auth file must be configured to use a sufficient number of hashing rounds.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>The system must use a strong hashing algorithm to store the password. The system must use a sufficient number of hashing rounds to ensure the required level of entropy.\\n\\nPasswords need to be protected at all times, and encryption is the standard method for protecting passwords. If passwords are not encrypted, they can be plainly read (i.e., clear text) and easily compromised.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000196\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure RHEL 8 to encrypt all stored passwords with a strong cryptographic hash.\\n\\nEdit/modify the following line in the \\\"/etc/pam.d/password-auth\\\" file and set \\\"rounds\\\" to a value no lower than \\\"5000\\\":\\n\\npassword sufficient pam_unix.so sha512 rounds=5000\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-32877r743918_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-32877r743918_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:105\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:26-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000213" + ], + "nist": [ + "AC-3" + ], + "severity": "high", + "description": "{\"VulnDiscussion\":\"If the system does not require valid authentication before it boots into single-user or maintenance mode, anyone who invokes single-user or maintenance mode is granted privileged access to all files on the system. GRUB 2 is the default boot loader for RHEL 8 and is designed to require a password to boot into single-user mode or make modifications to the boot menu.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230234", + "group_title": "SRG-OS-000080-GPOS-00048", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230234r743922_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:106", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32878r743921_fix", + "fixtext_fixref": "F-32878r743921_fix", + "ident": { + "text": "CCI-000213", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-010140", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230233r743919_rule", + "role": "full", + "time": "2021-11-12T11:37:26-05:00", + "severity": "medium", + "version": "RHEL-08-010130", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000196", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:105", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 operating systems booted with United Extensible Firmware Interface (UEFI) must require authentication upon booting into single-user mode and maintenance.", + "id": "V-230234", + "desc": "If the system does not require valid authentication before it boots into single-user or maintenance mode, anyone who invokes single-user or maintenance mode is granted privileged access to all files on the system. GRUB 2 is the default boot loader for RHEL 8 and is designed to require a password to boot into single-user mode or make modifications to the boot menu.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:106", + "label": "check" + }, + { + "data": "Configure the system to require a grub bootloader password for the grub superusers account with the grub2-setpassword command, which creates/overwrites the /boot/efi/EFI/redhat/user.cfg file.\n\nGenerate an encrypted grub2 password for the grub superusers account with the following command:\n\n$ sudo grub2-setpassword\nEnter password:\nConfirm password:", + "label": "fix" + } + ], + "impact": 0.7, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230234\",\n \"title\": {\n \"text\": \"SRG-OS-000080-GPOS-00048\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230234r743922_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"high\",\n \"version\": {\n \"text\": \"RHEL-08-010140\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 operating systems booted with United Extensible Firmware Interface (UEFI) must require authentication upon booting into single-user mode and maintenance.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>If the system does not require valid authentication before it boots into single-user or maintenance mode, anyone who invokes single-user or maintenance mode is granted privileged access to all files on the system. GRUB 2 is the default boot loader for RHEL 8 and is designed to require a password to boot into single-user mode or make modifications to the boot menu.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000213\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the system to require a grub bootloader password for the grub superusers account with the grub2-setpassword command, which creates/overwrites the /boot/efi/EFI/redhat/user.cfg file.\\n\\nGenerate an encrypted grub2 password for the grub superusers account with the following command:\\n\\n$ sudo grub2-setpassword\\nEnter password:\\nConfirm password:\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-32878r743921_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-32878r743921_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:106\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-11-12T11:37:26-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000213" + ], + "nist": [ + "AC-3" + ], + "severity": "high", + "description": "{\"VulnDiscussion\":\"If the system does not require valid authentication before it boots into single-user or maintenance mode, anyone who invokes single-user or maintenance mode is granted privileged access to all files on the system. GRUB 2 is the default boot loader for RHEL 8 and is designed to require a password to boot into single-user mode or make modifications to the boot menu.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230235", + "group_title": "SRG-OS-000080-GPOS-00048", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230235r743925_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:107", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32879r743924_fix", + "fixtext_fixref": "F-32879r743924_fix", + "ident": { + "text": "CCI-000213", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-010150", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230234r743922_rule", + "role": "full", + "time": "2021-11-12T11:37:26-05:00", + "severity": "high", + "version": "RHEL-08-010140", + "weight": "10.000000", + "result": "pass", + "ident": { + "text": "CCI-000213", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:106", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 operating systems booted with a BIOS must require authentication upon booting into single-user and maintenance modes.", + "id": "V-230235", + "desc": "If the system does not require valid authentication before it boots into single-user or maintenance mode, anyone who invokes single-user or maintenance mode is granted privileged access to all files on the system. GRUB 2 is the default boot loader for RHEL 8 and is designed to require a password to boot into single-user mode or make modifications to the boot menu.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:107", + "label": "check" + }, + { + "data": "Configure the system to require a grub bootloader password for the grub superusers account with the grub2-setpassword command, which creates/overwrites the /boot/grub2/user.cfg file.\n\nGenerate an encrypted grub2 password for the grub superusers account with the following command:\n\n$ sudo grub2-setpassword\nEnter password:\nConfirm password:", + "label": "fix" + } + ], + "impact": 0.7, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230235\",\n \"title\": {\n \"text\": \"SRG-OS-000080-GPOS-00048\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230235r743925_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"high\",\n \"version\": {\n \"text\": \"RHEL-08-010150\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 operating systems booted with a BIOS must require authentication upon booting into single-user and maintenance modes.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>If the system does not require valid authentication before it boots into single-user or maintenance mode, anyone who invokes single-user or maintenance mode is granted privileged access to all files on the system. GRUB 2 is the default boot loader for RHEL 8 and is designed to require a password to boot into single-user mode or make modifications to the boot menu.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000213\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the system to require a grub bootloader password for the grub superusers account with the grub2-setpassword command, which creates/overwrites the /boot/grub2/user.cfg file.\\n\\nGenerate an encrypted grub2 password for the grub superusers account with the following command:\\n\\n$ sudo grub2-setpassword\\nEnter password:\\nConfirm password:\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-32879r743924_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-32879r743924_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:107\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-11-12T11:37:26-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000213" + ], + "nist": [ + "AC-3" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"If the system does not require valid root authentication before it boots into emergency or rescue mode, anyone who invokes emergency or rescue mode is granted privileged access to all files on the system.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230236", + "group_title": "SRG-OS-000080-GPOS-00048", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230236r743928_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:108", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32880r743927_fix", + "fixtext_fixref": "F-32880r743927_fix", + "ident": { + "text": "CCI-000213", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-010151", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230235r743925_rule", + "role": "full", + "time": "2021-11-12T11:37:26-05:00", + "severity": "high", + "version": "RHEL-08-010150", + "weight": "10.000000", + "result": "pass", + "ident": { + "text": "CCI-000213", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:107", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 operating systems must require authentication upon booting into rescue mode.", + "id": "V-230236", + "desc": "If the system does not require valid root authentication before it boots into emergency or rescue mode, anyone who invokes emergency or rescue mode is granted privileged access to all files on the system.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:108", + "label": "check" + }, + { + "data": "Configure the system to require authentication upon booting into rescue mode by adding the following line to the \"/usr/lib/systemd/system/rescue.service\" file.\n\nExecStart=-/usr/lib/systemd/systemd-sulogin-shell rescue", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230236\",\n \"title\": {\n \"text\": \"SRG-OS-000080-GPOS-00048\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230236r743928_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-010151\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 operating systems must require authentication upon booting into rescue mode.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>If the system does not require valid root authentication before it boots into emergency or rescue mode, anyone who invokes emergency or rescue mode is granted privileged access to all files on the system.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000213\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the system to require authentication upon booting into rescue mode by adding the following line to the \\\"/usr/lib/systemd/system/rescue.service\\\" file.\\n\\nExecStart=-/usr/lib/systemd/systemd-sulogin-shell rescue\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-32880r743927_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-32880r743927_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:108\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-11-12T11:37:26-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000803" + ], + "nist": [ + "IA-7" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Unapproved mechanisms that are used for authentication to the cryptographic module are not verified and therefore cannot be relied upon to provide confidentiality or integrity, and DoD data may be compromised.\\n\\nRHEL 8 systems utilizing encryption are required to use FIPS-compliant mechanisms for authenticating to cryptographic modules. \\n\\nFIPS 140-2 is the current standard for validating that mechanisms used to access cryptographic modules utilize authentication that meets DoD requirements. This allows for Security Levels 1, 2, 3, or 4 for use on a general-purpose computing system.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230237", + "group_title": "SRG-OS-000120-GPOS-00061", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230237r743931_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:109", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32881r743930_fix", + "fixtext_fixref": "F-32881r743930_fix", + "ident": { + "text": "CCI-000803", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-010160", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230236r743928_rule", + "role": "full", + "time": "2021-11-12T11:37:26-05:00", + "severity": "medium", + "version": "RHEL-08-010151", + "weight": "10.000000", + "result": "pass", + "ident": { + "text": "CCI-000213", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:108", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The RHEL 8 pam_unix.so module must be configured in the password-auth file to use a FIPS 140-2 approved cryptographic hashing algorithm for system authentication.", + "id": "V-230237", + "desc": "Unapproved mechanisms that are used for authentication to the cryptographic module are not verified and therefore cannot be relied upon to provide confidentiality or integrity, and DoD data may be compromised.\n\nRHEL 8 systems utilizing encryption are required to use FIPS-compliant mechanisms for authenticating to cryptographic modules. \n\nFIPS 140-2 is the current standard for validating that mechanisms used to access cryptographic modules utilize authentication that meets DoD requirements. This allows for Security Levels 1, 2, 3, or 4 for use on a general-purpose computing system.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:109", + "label": "check" + }, + { + "data": "Configure RHEL 8 to use a FIPS 140-2 approved cryptographic hashing algorithm for system authentication.\n\nEdit/modify the following line in the \"/etc/pam.d/password-auth\" file to include the sha512 option for pam_unix.so:\n\npassword sufficient pam_unix.so sha512 rounds=5000", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230237\",\n \"title\": {\n \"text\": \"SRG-OS-000120-GPOS-00061\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230237r743931_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-010160\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The RHEL 8 pam_unix.so module must be configured in the password-auth file to use a FIPS 140-2 approved cryptographic hashing algorithm for system authentication.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Unapproved mechanisms that are used for authentication to the cryptographic module are not verified and therefore cannot be relied upon to provide confidentiality or integrity, and DoD data may be compromised.\\n\\nRHEL 8 systems utilizing encryption are required to use FIPS-compliant mechanisms for authenticating to cryptographic modules. \\n\\nFIPS 140-2 is the current standard for validating that mechanisms used to access cryptographic modules utilize authentication that meets DoD requirements. This allows for Security Levels 1, 2, 3, or 4 for use on a general-purpose computing system.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000803\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure RHEL 8 to use a FIPS 140-2 approved cryptographic hashing algorithm for system authentication.\\n\\nEdit/modify the following line in the \\\"/etc/pam.d/password-auth\\\" file to include the sha512 option for pam_unix.so:\\n\\npassword sufficient pam_unix.so sha512 rounds=5000\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-32881r743930_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-32881r743930_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:109\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-11-12T11:37:26-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000803" + ], + "nist": [ + "IA-7" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Unapproved mechanisms that are used for authentication to the cryptographic module are not verified and therefore cannot be relied upon to provide confidentiality or integrity, and DoD data may be compromised.\\n\\nRHEL 8 systems utilizing encryption are required to use FIPS-compliant mechanisms for authenticating to cryptographic modules.\\n\\nThe key derivation function (KDF) in Kerberos is not FIPS compatible. Ensuring the system does not have any keytab files present prevents system daemons from using Kerberos for authentication. A keytab is a file containing pairs of Kerberos principals and encrypted keys.\\n\\nFIPS 140-2 is the current standard for validating that mechanisms used to access cryptographic modules utilize authentication that meets DoD requirements. This allows for Security Levels 1, 2, 3, or 4 for use on a general-purpose computing system.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230238", + "group_title": "SRG-OS-000120-GPOS-00061", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230238r646862_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:110", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32882r567461_fix", + "fixtext_fixref": "F-32882r567461_fix", + "ident": { + "text": "CCI-000803", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-010161", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230237r743931_rule", + "role": "full", + "time": "2021-11-12T11:37:26-05:00", + "severity": "medium", + "version": "RHEL-08-010160", + "weight": "10.000000", + "result": "pass", + "ident": { + "text": "CCI-000803", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:109", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must prevent system daemons from using Kerberos for authentication.", + "id": "V-230238", + "desc": "Unapproved mechanisms that are used for authentication to the cryptographic module are not verified and therefore cannot be relied upon to provide confidentiality or integrity, and DoD data may be compromised.\n\nRHEL 8 systems utilizing encryption are required to use FIPS-compliant mechanisms for authenticating to cryptographic modules.\n\nThe key derivation function (KDF) in Kerberos is not FIPS compatible. Ensuring the system does not have any keytab files present prevents system daemons from using Kerberos for authentication. A keytab is a file containing pairs of Kerberos principals and encrypted keys.\n\nFIPS 140-2 is the current standard for validating that mechanisms used to access cryptographic modules utilize authentication that meets DoD requirements. This allows for Security Levels 1, 2, 3, or 4 for use on a general-purpose computing system.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:110", + "label": "check" + }, + { + "data": "Configure RHEL 8 to prevent system daemons from using Kerberos for authentication.\n\nRemove any files with the .keytab extension from the operating system.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230238\",\n \"title\": {\n \"text\": \"SRG-OS-000120-GPOS-00061\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230238r646862_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-010161\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must prevent system daemons from using Kerberos for authentication.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Unapproved mechanisms that are used for authentication to the cryptographic module are not verified and therefore cannot be relied upon to provide confidentiality or integrity, and DoD data may be compromised.\\n\\nRHEL 8 systems utilizing encryption are required to use FIPS-compliant mechanisms for authenticating to cryptographic modules.\\n\\nThe key derivation function (KDF) in Kerberos is not FIPS compatible. Ensuring the system does not have any keytab files present prevents system daemons from using Kerberos for authentication. A keytab is a file containing pairs of Kerberos principals and encrypted keys.\\n\\nFIPS 140-2 is the current standard for validating that mechanisms used to access cryptographic modules utilize authentication that meets DoD requirements. This allows for Security Levels 1, 2, 3, or 4 for use on a general-purpose computing system.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000803\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure RHEL 8 to prevent system daemons from using Kerberos for authentication.\\n\\nRemove any files with the .keytab extension from the operating system.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-32882r567461_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-32882r567461_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:110\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-11-12T11:37:26-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000803" + ], + "nist": [ + "IA-7" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Unapproved mechanisms that are used for authentication to the cryptographic module are not verified and therefore cannot be relied upon to provide confidentiality or integrity, and DoD data may be compromised.\\n\\nRHEL 8 systems utilizing encryption are required to use FIPS-compliant mechanisms for authenticating to cryptographic modules.\\n\\nCurrently, Kerberos does not utilize FIPS 140-2 cryptography.\\n\\nFIPS 140-2 is the current standard for validating that mechanisms used to access cryptographic modules utilize authentication that meets DoD requirements. This allows for Security Levels 1, 2, 3, or 4 for use on a general-purpose computing system.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230239", + "group_title": "SRG-OS-000120-GPOS-00061", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230239r646864_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:111", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32883r567464_fix", + "fixtext_fixref": "F-32883r567464_fix", + "ident": { + "text": "CCI-000803", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-010162", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230238r646862_rule", + "role": "full", + "time": "2021-11-12T11:37:26-05:00", + "severity": "medium", + "version": "RHEL-08-010161", + "weight": "10.000000", + "result": "pass", + "ident": { + "text": "CCI-000803", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:110", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The krb5-workstation package must not be installed on RHEL 8.", + "id": "V-230239", + "desc": "Unapproved mechanisms that are used for authentication to the cryptographic module are not verified and therefore cannot be relied upon to provide confidentiality or integrity, and DoD data may be compromised.\n\nRHEL 8 systems utilizing encryption are required to use FIPS-compliant mechanisms for authenticating to cryptographic modules.\n\nCurrently, Kerberos does not utilize FIPS 140-2 cryptography.\n\nFIPS 140-2 is the current standard for validating that mechanisms used to access cryptographic modules utilize authentication that meets DoD requirements. This allows for Security Levels 1, 2, 3, or 4 for use on a general-purpose computing system.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:111", + "label": "check" + }, + { + "data": "Document the krb5-workstation package with the ISSO as an operational requirement or remove it from the system with the following command:\n\n$ sudo yum remove krb5-workstation", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230239\",\n \"title\": {\n \"text\": \"SRG-OS-000120-GPOS-00061\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230239r646864_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-010162\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The krb5-workstation package must not be installed on RHEL 8.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Unapproved mechanisms that are used for authentication to the cryptographic module are not verified and therefore cannot be relied upon to provide confidentiality or integrity, and DoD data may be compromised.\\n\\nRHEL 8 systems utilizing encryption are required to use FIPS-compliant mechanisms for authenticating to cryptographic modules.\\n\\nCurrently, Kerberos does not utilize FIPS 140-2 cryptography.\\n\\nFIPS 140-2 is the current standard for validating that mechanisms used to access cryptographic modules utilize authentication that meets DoD requirements. This allows for Security Levels 1, 2, 3, or 4 for use on a general-purpose computing system.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000803\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Document the krb5-workstation package with the ISSO as an operational requirement or remove it from the system with the following command:\\n\\n$ sudo yum remove krb5-workstation\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-32883r567464_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-32883r567464_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:111\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-11-12T11:37:26-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001084" + ], + "nist": [ + "SC-3" + ], + "severity": "low", + "description": "{\"VulnDiscussion\":\"Without verification of the security functions, security functions may not operate correctly and the failure may go unnoticed. Security function is defined as the hardware, software, and/or firmware of the information system responsible for enforcing the system security policy and supporting the isolation of code and data on which the protection is based. Security functionality includes, but is not limited to, establishing system accounts, configuring access authorizations (i.e., permissions, privileges), setting events to be audited, and setting intrusion detection parameters.\\n\\nPolicycoreutils contains the policy core utilities that are required for basic operation of an SELinux-enabled system. These utilities include load_policy to load SELinux policies, setfile to label filesystems, newrole to switch roles, and run_init to run /etc/init.d scripts in the proper context.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230241", + "group_title": "SRG-OS-000134-GPOS-00068", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230241r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:112", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32885r567470_fix", + "fixtext_fixref": "F-32885r567470_fix", + "ident": { + "text": "CCI-001084", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-010171", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230239r646864_rule", + "role": "full", + "time": "2021-11-12T11:37:26-05:00", + "severity": "medium", + "version": "RHEL-08-010162", + "weight": "10.000000", + "result": "pass", + "ident": { + "text": "CCI-000803", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:111", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must have policycoreutils package installed.", + "id": "V-230241", + "desc": "Without verification of the security functions, security functions may not operate correctly and the failure may go unnoticed. Security function is defined as the hardware, software, and/or firmware of the information system responsible for enforcing the system security policy and supporting the isolation of code and data on which the protection is based. Security functionality includes, but is not limited to, establishing system accounts, configuring access authorizations (i.e., permissions, privileges), setting events to be audited, and setting intrusion detection parameters.\n\nPolicycoreutils contains the policy core utilities that are required for basic operation of an SELinux-enabled system. These utilities include load_policy to load SELinux policies, setfile to label filesystems, newrole to switch roles, and run_init to run /etc/init.d scripts in the proper context.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:112", + "label": "check" + }, + { + "data": "Configure the operating system to have the policycoreutils package installed with the following command:\n\n$ sudo yum install policycoreutils", + "label": "fix" + } + ], + "impact": 0.3, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230241\",\n \"title\": {\n \"text\": \"SRG-OS-000134-GPOS-00068\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230241r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"low\",\n \"version\": {\n \"text\": \"RHEL-08-010171\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must have policycoreutils package installed.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without verification of the security functions, security functions may not operate correctly and the failure may go unnoticed. Security function is defined as the hardware, software, and/or firmware of the information system responsible for enforcing the system security policy and supporting the isolation of code and data on which the protection is based. Security functionality includes, but is not limited to, establishing system accounts, configuring access authorizations (i.e., permissions, privileges), setting events to be audited, and setting intrusion detection parameters.\\n\\nPolicycoreutils contains the policy core utilities that are required for basic operation of an SELinux-enabled system. These utilities include load_policy to load SELinux policies, setfile to label filesystems, newrole to switch roles, and run_init to run /etc/init.d scripts in the proper context.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-001084\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the operating system to have the policycoreutils package installed with the following command:\\n\\n$ sudo yum install policycoreutils\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-32885r567470_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-32885r567470_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:112\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-11-12T11:37:26-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001133" + ], + "nist": [ + "SC-10" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Terminating an idle SSH session within a short time period reduces the window of opportunity for unauthorized personnel to take control of a management session enabled on the console or console port that has been left unattended. In addition, quickly terminating an idle SSH session will also free up resources committed by the managed network element.\\n\\nTerminating network connections associated with communications sessions includes, for example, de-allocating associated TCP/IP address/port pairs at the operating system level and de-allocating networking assignments at the application level if multiple application sessions are using a single operating system-level network connection. This does not mean that the operating system terminates all sessions or network access; it only ends the inactive session and releases the resources associated with that session.\\n\\nRHEL 8 utilizes /etc/ssh/sshd_config for configurations of OpenSSH. Within the sshd_config the product of the values of \\\"ClientAliveInterval\\\" and \\\"ClientAliveCountMax\\\" are used to establish the inactivity threshold. The \\\"ClientAliveInterval\\\" is a timeout interval in seconds after which if no data has been received from the client, sshd will send a message through the encrypted channel to request a response from the client. The \\\"ClientAliveCountMax\\\" is the number of client alive messages that may be sent without sshd receiving any messages back from the client. If this threshold is met, sshd will disconnect the client. For more information on these settings and others, refer to the sshd_config man pages.\\n\\nSatisfies: SRG-OS-000163-GPOS-00072, SRG-OS-000126-GPOS-00066, SRG-OS-000279-GPOS-00109\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230244", + "group_title": "SRG-OS-000163-GPOS-00072", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230244r743934_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:115", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32888r743933_fix", + "fixtext_fixref": "F-32888r743933_fix", + "ident": { + "text": "CCI-001133", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-010200", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230241r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:26-05:00", + "severity": "low", + "version": "RHEL-08-010171", + "weight": "10.000000", + "result": "pass", + "ident": { + "text": "CCI-001084", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:112", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must be configured so that all network connections associated with SSH traffic are terminated at the end of the session or after 10 minutes of inactivity, except to fulfill documented and validated mission requirements.", + "id": "V-230244", + "desc": "Terminating an idle SSH session within a short time period reduces the window of opportunity for unauthorized personnel to take control of a management session enabled on the console or console port that has been left unattended. In addition, quickly terminating an idle SSH session will also free up resources committed by the managed network element.\n\nTerminating network connections associated with communications sessions includes, for example, de-allocating associated TCP/IP address/port pairs at the operating system level and de-allocating networking assignments at the application level if multiple application sessions are using a single operating system-level network connection. This does not mean that the operating system terminates all sessions or network access; it only ends the inactive session and releases the resources associated with that session.\n\nRHEL 8 utilizes /etc/ssh/sshd_config for configurations of OpenSSH. Within the sshd_config the product of the values of \"ClientAliveInterval\" and \"ClientAliveCountMax\" are used to establish the inactivity threshold. The \"ClientAliveInterval\" is a timeout interval in seconds after which if no data has been received from the client, sshd will send a message through the encrypted channel to request a response from the client. The \"ClientAliveCountMax\" is the number of client alive messages that may be sent without sshd receiving any messages back from the client. If this threshold is met, sshd will disconnect the client. For more information on these settings and others, refer to the sshd_config man pages.\n\nSatisfies: SRG-OS-000163-GPOS-00072, SRG-OS-000126-GPOS-00066, SRG-OS-000279-GPOS-00109", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:115", + "label": "check" + }, + { + "data": "Configure RHEL 8 to automatically terminate all network connections associated with SSH traffic at the end of a session or after 10 minutes of inactivity.\n\nModify or append the following lines in the \"/etc/ssh/sshd_config\" file:\n\nClientAliveCountMax 0\n\nIn order for the changes to take effect, the SSH daemon must be restarted.\n\n$ sudo systemctl restart sshd.service", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230244\",\n \"title\": {\n \"text\": \"SRG-OS-000163-GPOS-00072\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230244r743934_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-010200\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must be configured so that all network connections associated with SSH traffic are terminated at the end of the session or after 10 minutes of inactivity, except to fulfill documented and validated mission requirements.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Terminating an idle SSH session within a short time period reduces the window of opportunity for unauthorized personnel to take control of a management session enabled on the console or console port that has been left unattended. In addition, quickly terminating an idle SSH session will also free up resources committed by the managed network element.\\n\\nTerminating network connections associated with communications sessions includes, for example, de-allocating associated TCP/IP address/port pairs at the operating system level and de-allocating networking assignments at the application level if multiple application sessions are using a single operating system-level network connection. This does not mean that the operating system terminates all sessions or network access; it only ends the inactive session and releases the resources associated with that session.\\n\\nRHEL 8 utilizes /etc/ssh/sshd_config for configurations of OpenSSH. Within the sshd_config the product of the values of \\\"ClientAliveInterval\\\" and \\\"ClientAliveCountMax\\\" are used to establish the inactivity threshold. The \\\"ClientAliveInterval\\\" is a timeout interval in seconds after which if no data has been received from the client, sshd will send a message through the encrypted channel to request a response from the client. The \\\"ClientAliveCountMax\\\" is the number of client alive messages that may be sent without sshd receiving any messages back from the client. If this threshold is met, sshd will disconnect the client. For more information on these settings and others, refer to the sshd_config man pages.\\n\\nSatisfies: SRG-OS-000163-GPOS-00072, SRG-OS-000126-GPOS-00066, SRG-OS-000279-GPOS-00109</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-001133\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure RHEL 8 to automatically terminate all network connections associated with SSH traffic at the end of a session or after 10 minutes of inactivity.\\n\\nModify or append the following lines in the \\\"/etc/ssh/sshd_config\\\" file:\\n\\nClientAliveCountMax 0\\n\\nIn order for the changes to take effect, the SSH daemon must be restarted.\\n\\n$ sudo systemctl restart sshd.service\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-32888r743933_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-32888r743933_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:115\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:26-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001314" + ], + "nist": [ + "SI-11 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\\n\\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230245", + "group_title": "SRG-OS-000206-GPOS-00084", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230245r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:116", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32889r567482_fix", + "fixtext_fixref": "F-32889r567482_fix", + "ident": { + "text": "CCI-001314", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-010210", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230244r743934_rule", + "role": "full", + "time": "2021-11-12T11:37:26-05:00", + "severity": "medium", + "version": "RHEL-08-010200", + "weight": "10.000000", + "result": "error", + "ident": { + "text": "CCI-001133", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:115", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The RHEL 8 /var/log/messages file must have mode 0640 or less permissive.", + "id": "V-230245", + "desc": "Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\n\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:116", + "label": "check" + }, + { + "data": "Change the permissions of the file \"/var/log/messages\" to \"0640\" by running the following command:\n\n$ sudo chmod 0640 /var/log/messages", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230245\",\n \"title\": {\n \"text\": \"SRG-OS-000206-GPOS-00084\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230245r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-010210\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The RHEL 8 /var/log/messages file must have mode 0640 or less permissive.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\\n\\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-001314\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Change the permissions of the file \\\"/var/log/messages\\\" to \\\"0640\\\" by running the following command:\\n\\n$ sudo chmod 0640 /var/log/messages\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-32889r567482_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-32889r567482_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:116\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-11-12T11:37:26-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001314" + ], + "nist": [ + "SI-11 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\\n\\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230246", + "group_title": "SRG-OS-000206-GPOS-00084", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230246r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:117", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32890r567485_fix", + "fixtext_fixref": "F-32890r567485_fix", + "ident": { + "text": "CCI-001314", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-010220", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230245r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:26-05:00", + "severity": "medium", + "version": "RHEL-08-010210", + "weight": "10.000000", + "result": "pass", + "ident": { + "text": "CCI-001314", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:116", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The RHEL 8 /var/log/messages file must be owned by root.", + "id": "V-230246", + "desc": "Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\n\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:117", + "label": "check" + }, + { + "data": "Change the owner of the file /var/log/messages to root by running the following command:\n\n$ sudo chown root /var/log/messages", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230246\",\n \"title\": {\n \"text\": \"SRG-OS-000206-GPOS-00084\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230246r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-010220\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The RHEL 8 /var/log/messages file must be owned by root.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\\n\\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-001314\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Change the owner of the file /var/log/messages to root by running the following command:\\n\\n$ sudo chown root /var/log/messages\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-32890r567485_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-32890r567485_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:117\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-11-12T11:37:26-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001314" + ], + "nist": [ + "SI-11 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\\n\\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230247", + "group_title": "SRG-OS-000206-GPOS-00084", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230247r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:118", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32891r567488_fix", + "fixtext_fixref": "F-32891r567488_fix", + "ident": { + "text": "CCI-001314", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-010230", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230246r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:26-05:00", + "severity": "medium", + "version": "RHEL-08-010220", + "weight": "10.000000", + "result": "pass", + "ident": { + "text": "CCI-001314", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:117", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The RHEL 8 /var/log/messages file must be group-owned by root.", + "id": "V-230247", + "desc": "Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\n\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:118", + "label": "check" + }, + { + "data": "Change the group of the file \"/var/log/messages\" to \"root\" by running the following command:\n\n$ sudo chgrp root /var/log/messages", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230247\",\n \"title\": {\n \"text\": \"SRG-OS-000206-GPOS-00084\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230247r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-010230\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The RHEL 8 /var/log/messages file must be group-owned by root.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\\n\\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-001314\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Change the group of the file \\\"/var/log/messages\\\" to \\\"root\\\" by running the following command:\\n\\n$ sudo chgrp root /var/log/messages\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-32891r567488_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-32891r567488_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:118\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-11-12T11:37:26-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001314" + ], + "nist": [ + "SI-11 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\\n\\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230248", + "group_title": "SRG-OS-000206-GPOS-00084", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230248r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:119", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32892r567491_fix", + "fixtext_fixref": "F-32892r567491_fix", + "ident": { + "text": "CCI-001314", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-010240", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230247r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:26-05:00", + "severity": "medium", + "version": "RHEL-08-010230", + "weight": "10.000000", + "result": "pass", + "ident": { + "text": "CCI-001314", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:118", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The RHEL 8 /var/log directory must have mode 0755 or less permissive.", + "id": "V-230248", + "desc": "Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\n\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:119", + "label": "check" + }, + { + "data": "Change the permissions of the directory \"/var/log\" to \"0755\" by running the following command:\n\n$ sudo chmod 0755 /var/log", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230248\",\n \"title\": {\n \"text\": \"SRG-OS-000206-GPOS-00084\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230248r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-010240\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The RHEL 8 /var/log directory must have mode 0755 or less permissive.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\\n\\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-001314\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Change the permissions of the directory \\\"/var/log\\\" to \\\"0755\\\" by running the following command:\\n\\n$ sudo chmod 0755 /var/log\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-32892r567491_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-32892r567491_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:119\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-11-12T11:37:26-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001314" + ], + "nist": [ + "SI-11 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\\n\\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230249", + "group_title": "SRG-OS-000206-GPOS-00084", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230249r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:120", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32893r567494_fix", + "fixtext_fixref": "F-32893r567494_fix", + "ident": { + "text": "CCI-001314", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-010250", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230248r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:26-05:00", + "severity": "medium", + "version": "RHEL-08-010240", + "weight": "10.000000", + "result": "pass", + "ident": { + "text": "CCI-001314", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:119", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The RHEL 8 /var/log directory must be owned by root.", + "id": "V-230249", + "desc": "Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\n\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:120", + "label": "check" + }, + { + "data": "Change the owner of the directory /var/log to root by running the following command:\n\n$ sudo chown root /var/log", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230249\",\n \"title\": {\n \"text\": \"SRG-OS-000206-GPOS-00084\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230249r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-010250\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The RHEL 8 /var/log directory must be owned by root.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\\n\\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-001314\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Change the owner of the directory /var/log to root by running the following command:\\n\\n$ sudo chown root /var/log\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-32893r567494_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-32893r567494_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:120\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-11-12T11:37:26-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001314" + ], + "nist": [ + "SI-11 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\\n\\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230250", + "group_title": "SRG-OS-000206-GPOS-00084", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230250r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:121", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32894r567497_fix", + "fixtext_fixref": "F-32894r567497_fix", + "ident": { + "text": "CCI-001314", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-010260", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230249r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:26-05:00", + "severity": "medium", + "version": "RHEL-08-010250", + "weight": "10.000000", + "result": "pass", + "ident": { + "text": "CCI-001314", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:120", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The RHEL 8 /var/log directory must be group-owned by root.", + "id": "V-230250", + "desc": "Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\n\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:121", + "label": "check" + }, + { + "data": "Change the group of the directory \"/var/log\" to \"root\" by running the following command:\n\n$ sudo chgrp root /var/log", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230250\",\n \"title\": {\n \"text\": \"SRG-OS-000206-GPOS-00084\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230250r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-010260\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The RHEL 8 /var/log directory must be group-owned by root.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\\n\\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-001314\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Change the group of the directory \\\"/var/log\\\" to \\\"root\\\" by running the following command:\\n\\n$ sudo chgrp root /var/log\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-32894r567497_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-32894r567497_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:121\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-11-12T11:37:26-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "low", + "description": "{\"VulnDiscussion\":\"The most important characteristic of a random number generator is its randomness, namely its ability to deliver random numbers that are impossible to predict. Entropy in computer security is associated with the unpredictability of a source of randomness. The random source with high entropy tends to achieve a uniform distribution of random values. Random number generators are one of the most important building blocks of cryptosystems.\\n\\nThe SSH implementation in RHEL8 uses the OPENSSL library, which does not use high-entropy sources by default. By using the SSH_USE_STRONG_RNG environment variable the OPENSSL random generator is reseeded from /dev/random. This setting is not recommended on computers without the hardware random generator because insufficient entropy causes the connection to be blocked until enough entropy is available.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230253", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230253r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:122", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32897r567506_fix", + "fixtext_fixref": "F-32897r567506_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-010292", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230250r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:26-05:00", + "severity": "medium", + "version": "RHEL-08-010260", + "weight": "10.000000", + "result": "pass", + "ident": { + "text": "CCI-001314", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:121", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must ensure the SSH server uses strong entropy.", + "id": "V-230253", + "desc": "The most important characteristic of a random number generator is its randomness, namely its ability to deliver random numbers that are impossible to predict. Entropy in computer security is associated with the unpredictability of a source of randomness. The random source with high entropy tends to achieve a uniform distribution of random values. Random number generators are one of the most important building blocks of cryptosystems.\n\nThe SSH implementation in RHEL8 uses the OPENSSL library, which does not use high-entropy sources by default. By using the SSH_USE_STRONG_RNG environment variable the OPENSSL random generator is reseeded from /dev/random. This setting is not recommended on computers without the hardware random generator because insufficient entropy causes the connection to be blocked until enough entropy is available.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:122", + "label": "check" + }, + { + "data": "Configure the operating system SSH server to use strong entropy.\n\nAdd or modify the following line in the \"/etc/sysconfig/sshd\" file.\n\nSSH_USE_STRONG_RNG=32\n\nThe SSH service must be restarted for changes to take effect.", + "label": "fix" + } + ], + "impact": 0.3, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230253\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230253r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"low\",\n \"version\": {\n \"text\": \"RHEL-08-010292\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must ensure the SSH server uses strong entropy.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>The most important characteristic of a random number generator is its randomness, namely its ability to deliver random numbers that are impossible to predict. Entropy in computer security is associated with the unpredictability of a source of randomness. The random source with high entropy tends to achieve a uniform distribution of random values. Random number generators are one of the most important building blocks of cryptosystems.\\n\\nThe SSH implementation in RHEL8 uses the OPENSSL library, which does not use high-entropy sources by default. By using the SSH_USE_STRONG_RNG environment variable the OPENSSL random generator is reseeded from /dev/random. This setting is not recommended on computers without the hardware random generator because insufficient entropy causes the connection to be blocked until enough entropy is available.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the operating system SSH server to use strong entropy.\\n\\nAdd or modify the following line in the \\\"/etc/sysconfig/sshd\\\" file.\\n\\nSSH_USE_STRONG_RNG=32\\n\\nThe SSH service must be restarted for changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-32897r567506_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-32897r567506_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:122\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:26-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001453" + ], + "nist": [ + "AC-17 (2)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without cryptographic integrity protections, information can be altered by unauthorized users without detection.\\n\\nRemote access (e.g., RDP) is access to DoD nonpublic information systems by an authorized user (or an information system) communicating through an external, non-organization-controlled network. Remote access methods include, for example, dial-up, broadband, and wireless.\\n\\nCryptographic mechanisms used for protecting the integrity of information include, for example, signed hash functions using asymmetric cryptography enabling distribution of the public key to verify the hash information while maintaining the confidentiality of the secret key used to generate the hash.\\n\\nRHEL 8 incorporates system-wide crypto policies by default. The employed algorithms can be viewed in the /etc/crypto-policies/back-ends/openssl.config file.\\n\\nSatisfies: SRG-OS-000250-GPOS-00093, SRG-OS-000393-GPOS-00173, SRG-OS-000394-GPOS-00174, SRG-OS-000125-GPOS-00065\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230255", + "group_title": "SRG-OS-000250-GPOS-00093", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230255r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:123", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32899r567512_fix", + "fixtext_fixref": "F-32899r567512_fix", + "ident": { + "text": "CCI-001453", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-010294", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230253r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:26-05:00", + "severity": "low", + "version": "RHEL-08-010292", + "weight": "10.000000", + "result": "error", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:122", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The RHEL 8 operating system must implement DoD-approved TLS encryption in the OpenSSL package.", + "id": "V-230255", + "desc": "Without cryptographic integrity protections, information can be altered by unauthorized users without detection.\n\nRemote access (e.g., RDP) is access to DoD nonpublic information systems by an authorized user (or an information system) communicating through an external, non-organization-controlled network. Remote access methods include, for example, dial-up, broadband, and wireless.\n\nCryptographic mechanisms used for protecting the integrity of information include, for example, signed hash functions using asymmetric cryptography enabling distribution of the public key to verify the hash information while maintaining the confidentiality of the secret key used to generate the hash.\n\nRHEL 8 incorporates system-wide crypto policies by default. The employed algorithms can be viewed in the /etc/crypto-policies/back-ends/openssl.config file.\n\nSatisfies: SRG-OS-000250-GPOS-00093, SRG-OS-000393-GPOS-00173, SRG-OS-000394-GPOS-00174, SRG-OS-000125-GPOS-00065", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:123", + "label": "check" + }, + { + "data": "Configure the RHEL 8 OpenSSL library to use only DoD-approved TLS encryption by editing the following line in the \"/etc/crypto-policies/back-ends/opensslcnf.config\" file:\n\nMinProtocol = TLSv1.2\n\nA reboot is required for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230255\",\n \"title\": {\n \"text\": \"SRG-OS-000250-GPOS-00093\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230255r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-010294\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The RHEL 8 operating system must implement DoD-approved TLS encryption in the OpenSSL package.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without cryptographic integrity protections, information can be altered by unauthorized users without detection.\\n\\nRemote access (e.g., RDP) is access to DoD nonpublic information systems by an authorized user (or an information system) communicating through an external, non-organization-controlled network. Remote access methods include, for example, dial-up, broadband, and wireless.\\n\\nCryptographic mechanisms used for protecting the integrity of information include, for example, signed hash functions using asymmetric cryptography enabling distribution of the public key to verify the hash information while maintaining the confidentiality of the secret key used to generate the hash.\\n\\nRHEL 8 incorporates system-wide crypto policies by default. The employed algorithms can be viewed in the /etc/crypto-policies/back-ends/openssl.config file.\\n\\nSatisfies: SRG-OS-000250-GPOS-00093, SRG-OS-000393-GPOS-00173, SRG-OS-000394-GPOS-00174, SRG-OS-000125-GPOS-00065</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-001453\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the RHEL 8 OpenSSL library to use only DoD-approved TLS encryption by editing the following line in the \\\"/etc/crypto-policies/back-ends/opensslcnf.config\\\" file:\\n\\nMinProtocol = TLSv1.2\\n\\nA reboot is required for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-32899r567512_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-32899r567512_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:123\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-11-12T11:37:26-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001499" + ], + "nist": [ + "CM-5 (6)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"If RHEL 8 were to allow any user to make changes to software libraries, then those changes might be implemented without undergoing the appropriate testing and approvals that are part of a robust change management process.\\n\\nThis requirement applies to RHEL 8 with software libraries that are accessible and configurable, as in the case of interpreted languages. Software libraries also include privileged programs that execute with escalated privileges. Only qualified and authorized individuals will be allowed to obtain access to information system components for purposes of initiating changes, including upgrades and modifications.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230257", + "group_title": "SRG-OS-000259-GPOS-00100", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230257r792862_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:124", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32901r792861_fix", + "fixtext_fixref": "F-32901r792861_fix", + "ident": { + "text": "CCI-001499", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-010300", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230255r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:26-05:00", + "severity": "medium", + "version": "RHEL-08-010294", + "weight": "10.000000", + "result": "pass", + "ident": { + "text": "CCI-001453", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:123", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 system commands must have mode 755 or less permissive.", + "id": "V-230257", + "desc": "If RHEL 8 were to allow any user to make changes to software libraries, then those changes might be implemented without undergoing the appropriate testing and approvals that are part of a robust change management process.\n\nThis requirement applies to RHEL 8 with software libraries that are accessible and configurable, as in the case of interpreted languages. Software libraries also include privileged programs that execute with escalated privileges. Only qualified and authorized individuals will be allowed to obtain access to information system components for purposes of initiating changes, including upgrades and modifications.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:124", + "label": "check" + }, + { + "data": "Configure the system commands to be protected from unauthorized access.\n\nRun the following command, replacing \"[FILE]\" with any system command with a mode more permissive than \"755\".\n\n$ sudo chmod 755 [FILE]", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230257\",\n \"title\": {\n \"text\": \"SRG-OS-000259-GPOS-00100\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230257r792862_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-010300\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 system commands must have mode 755 or less permissive.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>If RHEL 8 were to allow any user to make changes to software libraries, then those changes might be implemented without undergoing the appropriate testing and approvals that are part of a robust change management process.\\n\\nThis requirement applies to RHEL 8 with software libraries that are accessible and configurable, as in the case of interpreted languages. Software libraries also include privileged programs that execute with escalated privileges. Only qualified and authorized individuals will be allowed to obtain access to information system components for purposes of initiating changes, including upgrades and modifications.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-001499\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the system commands to be protected from unauthorized access.\\n\\nRun the following command, replacing \\\"[FILE]\\\" with any system command with a mode more permissive than \\\"755\\\".\\n\\n$ sudo chmod 755 [FILE]\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-32901r792861_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-32901r792861_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:124\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-11-12T11:37:26-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001499" + ], + "nist": [ + "CM-5 (6)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"If RHEL 8 were to allow any user to make changes to software libraries, then those changes might be implemented without undergoing the appropriate testing and approvals that are part of a robust change management process.\\n\\nThis requirement applies to RHEL 8 with software libraries that are accessible and configurable, as in the case of interpreted languages. Software libraries also include privileged programs that execute with escalated privileges. Only qualified and authorized individuals will be allowed to obtain access to information system components for purposes of initiating changes, including upgrades and modifications.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230258", + "group_title": "SRG-OS-000259-GPOS-00100", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230258r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:125", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32902r567521_fix", + "fixtext_fixref": "F-32902r567521_fix", + "ident": { + "text": "CCI-001499", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-010310", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230257r792862_rule", + "role": "full", + "time": "2021-11-12T11:37:26-05:00", + "severity": "medium", + "version": "RHEL-08-010300", + "weight": "10.000000", + "result": "pass", + "ident": { + "text": "CCI-001499", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:124", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 system commands must be owned by root.", + "id": "V-230258", + "desc": "If RHEL 8 were to allow any user to make changes to software libraries, then those changes might be implemented without undergoing the appropriate testing and approvals that are part of a robust change management process.\n\nThis requirement applies to RHEL 8 with software libraries that are accessible and configurable, as in the case of interpreted languages. Software libraries also include privileged programs that execute with escalated privileges. Only qualified and authorized individuals will be allowed to obtain access to information system components for purposes of initiating changes, including upgrades and modifications.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:125", + "label": "check" + }, + { + "data": "Configure the system commands to be protected from unauthorized access.\n\nRun the following command, replacing \"[FILE]\" with any system command file not owned by \"root\".\n\n$ sudo chown root [FILE]", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230258\",\n \"title\": {\n \"text\": \"SRG-OS-000259-GPOS-00100\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230258r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-010310\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 system commands must be owned by root.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>If RHEL 8 were to allow any user to make changes to software libraries, then those changes might be implemented without undergoing the appropriate testing and approvals that are part of a robust change management process.\\n\\nThis requirement applies to RHEL 8 with software libraries that are accessible and configurable, as in the case of interpreted languages. Software libraries also include privileged programs that execute with escalated privileges. Only qualified and authorized individuals will be allowed to obtain access to information system components for purposes of initiating changes, including upgrades and modifications.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-001499\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the system commands to be protected from unauthorized access.\\n\\nRun the following command, replacing \\\"[FILE]\\\" with any system command file not owned by \\\"root\\\".\\n\\n$ sudo chown root [FILE]\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-32902r567521_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-32902r567521_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:125\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-11-12T11:37:26-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001499" + ], + "nist": [ + "CM-5 (6)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"If RHEL 8 were to allow any user to make changes to software libraries, then those changes might be implemented without undergoing the appropriate testing and approvals that are part of a robust change management process.\\n\\nThis requirement applies to RHEL 8 with software libraries that are accessible and configurable, as in the case of interpreted languages. Software libraries also include privileged programs that execute with escalated privileges. Only qualified and authorized individuals will be allowed to obtain access to information system components for purposes of initiating changes, including upgrades and modifications.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230259", + "group_title": "SRG-OS-000259-GPOS-00100", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230259r792864_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:126", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32903r567524_fix", + "fixtext_fixref": "F-32903r567524_fix", + "ident": { + "text": "CCI-001499", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-010320", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230258r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:26-05:00", + "severity": "medium", + "version": "RHEL-08-010310", + "weight": "10.000000", + "result": "pass", + "ident": { + "text": "CCI-001499", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:125", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 system commands must be group-owned by root or a system account.", + "id": "V-230259", + "desc": "If RHEL 8 were to allow any user to make changes to software libraries, then those changes might be implemented without undergoing the appropriate testing and approvals that are part of a robust change management process.\n\nThis requirement applies to RHEL 8 with software libraries that are accessible and configurable, as in the case of interpreted languages. Software libraries also include privileged programs that execute with escalated privileges. Only qualified and authorized individuals will be allowed to obtain access to information system components for purposes of initiating changes, including upgrades and modifications.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:126", + "label": "check" + }, + { + "data": "Configure the system commands to be protected from unauthorized access.\n\nRun the following command, replacing \"[FILE]\" with any system command file not group-owned by \"root\" or a required system account.\n\n$ sudo chgrp root [FILE]", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230259\",\n \"title\": {\n \"text\": \"SRG-OS-000259-GPOS-00100\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230259r792864_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-010320\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 system commands must be group-owned by root or a system account.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>If RHEL 8 were to allow any user to make changes to software libraries, then those changes might be implemented without undergoing the appropriate testing and approvals that are part of a robust change management process.\\n\\nThis requirement applies to RHEL 8 with software libraries that are accessible and configurable, as in the case of interpreted languages. Software libraries also include privileged programs that execute with escalated privileges. Only qualified and authorized individuals will be allowed to obtain access to information system components for purposes of initiating changes, including upgrades and modifications.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-001499\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the system commands to be protected from unauthorized access.\\n\\nRun the following command, replacing \\\"[FILE]\\\" with any system command file not group-owned by \\\"root\\\" or a required system account.\\n\\n$ sudo chgrp root [FILE]\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-32903r567524_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-32903r567524_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:126\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-11-12T11:37:26-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001749" + ], + "nist": [ + "CM-5 (3)" + ], + "severity": "high", + "description": "{\"VulnDiscussion\":\"Changes to any software components can have significant effects on the overall security of the operating system. This requirement ensures the software has not been tampered with and that it has been provided by a trusted vendor.\\n\\nAccordingly, patches, service packs, device drivers, or operating system components must be signed with a certificate recognized and approved by the organization.\\n\\nVerifying the authenticity of the software prior to installation validates the integrity of the patch or upgrade received from a vendor. This verifies the software has not been tampered with and that it has been provided by a trusted vendor. Self-signed certificates are disallowed by this requirement. The operating system should not have to verify the software again. This requirement does not mandate DoD certificates for this purpose; however, the certificate used to verify the software must be from an approved CA.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230264", + "group_title": "SRG-OS-000366-GPOS-00153", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230264r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:130", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32908r567539_fix", + "fixtext_fixref": "F-32908r567539_fix", + "ident": { + "text": "CCI-001749", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-010370", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230259r792864_rule", + "role": "full", + "time": "2021-11-12T11:37:26-05:00", + "severity": "medium", + "version": "RHEL-08-010320", + "weight": "10.000000", + "result": "pass", + "ident": { + "text": "CCI-001499", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:126", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must prevent the installation of software, patches, service packs, device drivers, or operating system components from a repository without verification they have been digitally signed using a certificate that is issued by a Certificate Authority (CA) that is recognized and approved by the organization.", + "id": "V-230264", + "desc": "Changes to any software components can have significant effects on the overall security of the operating system. This requirement ensures the software has not been tampered with and that it has been provided by a trusted vendor.\n\nAccordingly, patches, service packs, device drivers, or operating system components must be signed with a certificate recognized and approved by the organization.\n\nVerifying the authenticity of the software prior to installation validates the integrity of the patch or upgrade received from a vendor. This verifies the software has not been tampered with and that it has been provided by a trusted vendor. Self-signed certificates are disallowed by this requirement. The operating system should not have to verify the software again. This requirement does not mandate DoD certificates for this purpose; however, the certificate used to verify the software must be from an approved CA.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:130", + "label": "check" + }, + { + "data": "Configure the operating system to verify the signature of packages from a repository prior to install by setting the following option in the \"/etc/yum.repos.d/[your_repo_name].repo\" file:\n\ngpgcheck=1", + "label": "fix" + } + ], + "impact": 0.7, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230264\",\n \"title\": {\n \"text\": \"SRG-OS-000366-GPOS-00153\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230264r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"high\",\n \"version\": {\n \"text\": \"RHEL-08-010370\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must prevent the installation of software, patches, service packs, device drivers, or operating system components from a repository without verification they have been digitally signed using a certificate that is issued by a Certificate Authority (CA) that is recognized and approved by the organization.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Changes to any software components can have significant effects on the overall security of the operating system. This requirement ensures the software has not been tampered with and that it has been provided by a trusted vendor.\\n\\nAccordingly, patches, service packs, device drivers, or operating system components must be signed with a certificate recognized and approved by the organization.\\n\\nVerifying the authenticity of the software prior to installation validates the integrity of the patch or upgrade received from a vendor. This verifies the software has not been tampered with and that it has been provided by a trusted vendor. Self-signed certificates are disallowed by this requirement. The operating system should not have to verify the software again. This requirement does not mandate DoD certificates for this purpose; however, the certificate used to verify the software must be from an approved CA.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-001749\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the operating system to verify the signature of packages from a repository prior to install by setting the following option in the \\\"/etc/yum.repos.d/[your_repo_name].repo\\\" file:\\n\\ngpgcheck=1\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-32908r567539_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-32908r567539_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:130\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-11-12T11:37:26-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001749" + ], + "nist": [ + "CM-5 (3)" + ], + "severity": "high", + "description": "{\"VulnDiscussion\":\"Changes to any software components can have significant effects on the overall security of the operating system. This requirement ensures the software has not been tampered with and that it has been provided by a trusted vendor.\\n\\nAccordingly, patches, service packs, device drivers, or operating system components must be signed with a certificate recognized and approved by the organization.\\n\\nVerifying the authenticity of the software prior to installation validates the integrity of the patch or upgrade received from a vendor. This verifies the software has not been tampered with and that it has been provided by a trusted vendor. Self-signed certificates are disallowed by this requirement. The operating system should not have to verify the software again. This requirement does not mandate DoD certificates for this purpose; however, the certificate used to verify the software must be from an approved CA.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230265", + "group_title": "SRG-OS-000366-GPOS-00153", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230265r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:131", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32909r567542_fix", + "fixtext_fixref": "F-32909r567542_fix", + "ident": { + "text": "CCI-001749", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-010371", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230264r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:26-05:00", + "severity": "high", + "version": "RHEL-08-010370", + "weight": "10.000000", + "result": "pass", + "ident": { + "text": "CCI-001749", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:130", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must prevent the installation of software, patches, service packs, device drivers, or operating system components of local packages without verification they have been digitally signed using a certificate that is issued by a Certificate Authority (CA) that is recognized and approved by the organization.", + "id": "V-230265", + "desc": "Changes to any software components can have significant effects on the overall security of the operating system. This requirement ensures the software has not been tampered with and that it has been provided by a trusted vendor.\n\nAccordingly, patches, service packs, device drivers, or operating system components must be signed with a certificate recognized and approved by the organization.\n\nVerifying the authenticity of the software prior to installation validates the integrity of the patch or upgrade received from a vendor. This verifies the software has not been tampered with and that it has been provided by a trusted vendor. Self-signed certificates are disallowed by this requirement. The operating system should not have to verify the software again. This requirement does not mandate DoD certificates for this purpose; however, the certificate used to verify the software must be from an approved CA.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:131", + "label": "check" + }, + { + "data": "Configure the operating system to remove all software components after updated versions have been installed.\n\nSet the \"localpkg_gpgcheck\" option to \"True\" in the \"/etc/dnf/dnf.conf\" file:\n\nlocalpkg_gpgcheck=True", + "label": "fix" + } + ], + "impact": 0.7, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230265\",\n \"title\": {\n \"text\": \"SRG-OS-000366-GPOS-00153\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230265r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"high\",\n \"version\": {\n \"text\": \"RHEL-08-010371\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must prevent the installation of software, patches, service packs, device drivers, or operating system components of local packages without verification they have been digitally signed using a certificate that is issued by a Certificate Authority (CA) that is recognized and approved by the organization.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Changes to any software components can have significant effects on the overall security of the operating system. This requirement ensures the software has not been tampered with and that it has been provided by a trusted vendor.\\n\\nAccordingly, patches, service packs, device drivers, or operating system components must be signed with a certificate recognized and approved by the organization.\\n\\nVerifying the authenticity of the software prior to installation validates the integrity of the patch or upgrade received from a vendor. This verifies the software has not been tampered with and that it has been provided by a trusted vendor. Self-signed certificates are disallowed by this requirement. The operating system should not have to verify the software again. This requirement does not mandate DoD certificates for this purpose; however, the certificate used to verify the software must be from an approved CA.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-001749\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the operating system to remove all software components after updated versions have been installed.\\n\\nSet the \\\"localpkg_gpgcheck\\\" option to \\\"True\\\" in the \\\"/etc/dnf/dnf.conf\\\" file:\\n\\nlocalpkg_gpgcheck=True\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-32909r567542_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-32909r567542_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:131\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:26-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001749" + ], + "nist": [ + "CM-5 (3)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Changes to any software components can have significant effects on the overall security of the operating system. This requirement ensures the software has not been tampered with and that it has been provided by a trusted vendor.\\n\\nDisabling kexec_load prevents an unsigned kernel image (that could be a windows kernel or modified vulnerable kernel) from being loaded. Kexec can be used subvert the entire secureboot process and should be avoided at all costs especially since it can load unsigned kernel images.\\n\\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\\n/etc/sysctl.d/*.conf\\n/run/sysctl.d/*.conf\\n/usr/local/lib/sysctl.d/*.conf\\n/usr/lib/sysctl.d/*.conf\\n/lib/sysctl.d/*.conf\\n/etc/sysctl.conf\\nBased on the information above, if a configuration file that begins with \\\"99-\\\" is created in the \\\"/etc/sysctl.d/\\\" directory, it will take precedence over any other configuration file on the system.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230266", + "group_title": "SRG-OS-000366-GPOS-00153", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230266r792870_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:132", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32910r792869_fix", + "fixtext_fixref": "F-32910r792869_fix", + "ident": { + "text": "CCI-001749", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-010372", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230265r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:26-05:00", + "severity": "high", + "version": "RHEL-08-010371", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-001749", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:131", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must prevent the loading of a new kernel for later execution.", + "id": "V-230266", + "desc": "Changes to any software components can have significant effects on the overall security of the operating system. This requirement ensures the software has not been tampered with and that it has been provided by a trusted vendor.\n\nDisabling kexec_load prevents an unsigned kernel image (that could be a windows kernel or modified vulnerable kernel) from being loaded. Kexec can be used subvert the entire secureboot process and should be avoided at all costs especially since it can load unsigned kernel images.\n\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\n/etc/sysctl.d/*.conf\n/run/sysctl.d/*.conf\n/usr/local/lib/sysctl.d/*.conf\n/usr/lib/sysctl.d/*.conf\n/lib/sysctl.d/*.conf\n/etc/sysctl.conf\nBased on the information above, if a configuration file that begins with \"99-\" is created in the \"/etc/sysctl.d/\" directory, it will take precedence over any other configuration file on the system.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:132", + "label": "check" + }, + { + "data": "Configure the operating system to disable kernel image loading.\n\nAdd or edit the following line in a system configuration file, which begins with \"99-\", in the \"/etc/sysctl.d/\" directory:\n\nkernel.kexec_load_disabled = 1\n\nLoad settings from all system configuration files with the following command:\n\n$ sudo sysctl --system", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230266\",\n \"title\": {\n \"text\": \"SRG-OS-000366-GPOS-00153\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230266r792870_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-010372\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must prevent the loading of a new kernel for later execution.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Changes to any software components can have significant effects on the overall security of the operating system. This requirement ensures the software has not been tampered with and that it has been provided by a trusted vendor.\\n\\nDisabling kexec_load prevents an unsigned kernel image (that could be a windows kernel or modified vulnerable kernel) from being loaded. Kexec can be used subvert the entire secureboot process and should be avoided at all costs especially since it can load unsigned kernel images.\\n\\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\\n/etc/sysctl.d/*.conf\\n/run/sysctl.d/*.conf\\n/usr/local/lib/sysctl.d/*.conf\\n/usr/lib/sysctl.d/*.conf\\n/lib/sysctl.d/*.conf\\n/etc/sysctl.conf\\nBased on the information above, if a configuration file that begins with \\\"99-\\\" is created in the \\\"/etc/sysctl.d/\\\" directory, it will take precedence over any other configuration file on the system.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-001749\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the operating system to disable kernel image loading.\\n\\nAdd or edit the following line in a system configuration file, which begins with \\\"99-\\\", in the \\\"/etc/sysctl.d/\\\" directory:\\n\\nkernel.kexec_load_disabled = 1\\n\\nLoad settings from all system configuration files with the following command:\\n\\n$ sudo sysctl --system\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-32910r792869_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-32910r792869_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:132\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:26-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-002165" + ], + "nist": [ + "AC-3 (4)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Discretionary Access Control (DAC) is based on the notion that individual users are \\\"owners\\\" of objects and therefore have discretion over who should be authorized to access the object and in which mode (e.g., read or write). Ownership is usually acquired as a consequence of creating the object or via specified ownership assignment. DAC allows the owner to determine who will have access to objects they control. An example of DAC includes user-controlled file permissions.\\n\\nWhen discretionary access control policies are implemented, subjects are not constrained with regard to what actions they can take with information for which they have already been granted access. Thus, subjects that have been granted access to information are not prevented from passing (i.e., the subjects have the discretion to pass) the information to other subjects or objects. A subject that is constrained in its operation by Mandatory Access Control policies is still able to operate under the less rigorous constraints of this requirement. Thus, while Mandatory Access Control imposes constraints preventing a subject from passing information to another subject operating at a different sensitivity level, this requirement permits the subject to pass the information to any subject at the same sensitivity level. The policy is bounded by the information system boundary. Once the information is passed outside the control of the information system, additional means may be required to ensure the constraints remain in effect. While the older, more traditional definitions of discretionary access control require identity-based access control, that limitation is not required for this use of discretionary access control.\\n\\nBy enabling the fs.protected_symlinks kernel parameter, symbolic links are permitted to be followed only when outside a sticky world-writable directory, or when the UID of the link and follower match, or when the directory owner matches the symlink's owner. Disallowing such symlinks helps mitigate vulnerabilities based on insecure file system accessed by privileged programs, avoiding an exploitation vector exploiting unsafe use of open() or creat().\\n\\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\\n/etc/sysctl.d/*.conf\\n/run/sysctl.d/*.conf\\n/usr/local/lib/sysctl.d/*.conf\\n/usr/lib/sysctl.d/*.conf\\n/lib/sysctl.d/*.conf\\n/etc/sysctl.conf\\n\\nBased on the information above, if a configuration file that begins with \\\"99-\\\" is created in the \\\"/etc/sysctl.d/\\\" directory, it will take precedence over any other configuration file on the system.\\n\\nSatisfies: SRG-OS-000312-GPOS-00122, SRG-OS-000312-GPOS-00123, SRG-OS-000312-GPOS-00124, SRG-OS-000324-GPOS-00125\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230267", + "group_title": "SRG-OS-000312-GPOS-00122", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230267r792873_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:133", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32911r792872_fix", + "fixtext_fixref": "F-32911r792872_fix", + "ident": { + "text": "CCI-002165", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-010373", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230266r792870_rule", + "role": "full", + "time": "2021-11-12T11:37:26-05:00", + "severity": "medium", + "version": "RHEL-08-010372", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-001749", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:132", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must enable kernel parameters to enforce discretionary access control on symlinks.", + "id": "V-230267", + "desc": "Discretionary Access Control (DAC) is based on the notion that individual users are \"owners\" of objects and therefore have discretion over who should be authorized to access the object and in which mode (e.g., read or write). Ownership is usually acquired as a consequence of creating the object or via specified ownership assignment. DAC allows the owner to determine who will have access to objects they control. An example of DAC includes user-controlled file permissions.\n\nWhen discretionary access control policies are implemented, subjects are not constrained with regard to what actions they can take with information for which they have already been granted access. Thus, subjects that have been granted access to information are not prevented from passing (i.e., the subjects have the discretion to pass) the information to other subjects or objects. A subject that is constrained in its operation by Mandatory Access Control policies is still able to operate under the less rigorous constraints of this requirement. Thus, while Mandatory Access Control imposes constraints preventing a subject from passing information to another subject operating at a different sensitivity level, this requirement permits the subject to pass the information to any subject at the same sensitivity level. The policy is bounded by the information system boundary. Once the information is passed outside the control of the information system, additional means may be required to ensure the constraints remain in effect. While the older, more traditional definitions of discretionary access control require identity-based access control, that limitation is not required for this use of discretionary access control.\n\nBy enabling the fs.protected_symlinks kernel parameter, symbolic links are permitted to be followed only when outside a sticky world-writable directory, or when the UID of the link and follower match, or when the directory owner matches the symlink's owner. Disallowing such symlinks helps mitigate vulnerabilities based on insecure file system accessed by privileged programs, avoiding an exploitation vector exploiting unsafe use of open() or creat().\n\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\n/etc/sysctl.d/*.conf\n/run/sysctl.d/*.conf\n/usr/local/lib/sysctl.d/*.conf\n/usr/lib/sysctl.d/*.conf\n/lib/sysctl.d/*.conf\n/etc/sysctl.conf\n\nBased on the information above, if a configuration file that begins with \"99-\" is created in the \"/etc/sysctl.d/\" directory, it will take precedence over any other configuration file on the system.\n\nSatisfies: SRG-OS-000312-GPOS-00122, SRG-OS-000312-GPOS-00123, SRG-OS-000312-GPOS-00124, SRG-OS-000324-GPOS-00125", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:133", + "label": "check" + }, + { + "data": "Configure the operating system to enable DAC on symlinks.\n\nAdd or edit the following line in a system configuration file, which begins with \"99-\", in the \"/etc/sysctl.d/\" directory:\n\nfs.protected_symlinks = 1\n\nLoad settings from all system configuration files with the following command:\n\n$ sudo sysctl --system", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230267\",\n \"title\": {\n \"text\": \"SRG-OS-000312-GPOS-00122\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230267r792873_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-010373\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must enable kernel parameters to enforce discretionary access control on symlinks.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Discretionary Access Control (DAC) is based on the notion that individual users are \\\"owners\\\" of objects and therefore have discretion over who should be authorized to access the object and in which mode (e.g., read or write). Ownership is usually acquired as a consequence of creating the object or via specified ownership assignment. DAC allows the owner to determine who will have access to objects they control. An example of DAC includes user-controlled file permissions.\\n\\nWhen discretionary access control policies are implemented, subjects are not constrained with regard to what actions they can take with information for which they have already been granted access. Thus, subjects that have been granted access to information are not prevented from passing (i.e., the subjects have the discretion to pass) the information to other subjects or objects. A subject that is constrained in its operation by Mandatory Access Control policies is still able to operate under the less rigorous constraints of this requirement. Thus, while Mandatory Access Control imposes constraints preventing a subject from passing information to another subject operating at a different sensitivity level, this requirement permits the subject to pass the information to any subject at the same sensitivity level. The policy is bounded by the information system boundary. Once the information is passed outside the control of the information system, additional means may be required to ensure the constraints remain in effect. While the older, more traditional definitions of discretionary access control require identity-based access control, that limitation is not required for this use of discretionary access control.\\n\\nBy enabling the fs.protected_symlinks kernel parameter, symbolic links are permitted to be followed only when outside a sticky world-writable directory, or when the UID of the link and follower match, or when the directory owner matches the symlink's owner. Disallowing such symlinks helps mitigate vulnerabilities based on insecure file system accessed by privileged programs, avoiding an exploitation vector exploiting unsafe use of open() or creat().\\n\\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\\n/etc/sysctl.d/*.conf\\n/run/sysctl.d/*.conf\\n/usr/local/lib/sysctl.d/*.conf\\n/usr/lib/sysctl.d/*.conf\\n/lib/sysctl.d/*.conf\\n/etc/sysctl.conf\\n\\nBased on the information above, if a configuration file that begins with \\\"99-\\\" is created in the \\\"/etc/sysctl.d/\\\" directory, it will take precedence over any other configuration file on the system.\\n\\nSatisfies: SRG-OS-000312-GPOS-00122, SRG-OS-000312-GPOS-00123, SRG-OS-000312-GPOS-00124, SRG-OS-000324-GPOS-00125</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-002165\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the operating system to enable DAC on symlinks.\\n\\nAdd or edit the following line in a system configuration file, which begins with \\\"99-\\\", in the \\\"/etc/sysctl.d/\\\" directory:\\n\\nfs.protected_symlinks = 1\\n\\nLoad settings from all system configuration files with the following command:\\n\\n$ sudo sysctl --system\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-32911r792872_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-32911r792872_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:133\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:26-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-002165" + ], + "nist": [ + "AC-3 (4)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Discretionary Access Control (DAC) is based on the notion that individual users are \\\"owners\\\" of objects and therefore have discretion over who should be authorized to access the object and in which mode (e.g., read or write). Ownership is usually acquired as a consequence of creating the object or via specified ownership assignment. DAC allows the owner to determine who will have access to objects they control. An example of DAC includes user-controlled file permissions.\\n\\nWhen discretionary access control policies are implemented, subjects are not constrained with regard to what actions they can take with information for which they have already been granted access. Thus, subjects that have been granted access to information are not prevented from passing (i.e., the subjects have the discretion to pass) the information to other subjects or objects. A subject that is constrained in its operation by Mandatory Access Control policies is still able to operate under the less rigorous constraints of this requirement. Thus, while Mandatory Access Control imposes constraints preventing a subject from passing information to another subject operating at a different sensitivity level, this requirement permits the subject to pass the information to any subject at the same sensitivity level. The policy is bounded by the information system boundary. Once the information is passed outside the control of the information system, additional means may be required to ensure the constraints remain in effect. While the older, more traditional definitions of discretionary access control require identity-based access control, that limitation is not required for this use of discretionary access control.\\n\\nBy enabling the fs.protected_hardlinks kernel parameter, users can no longer create soft or hard links to files they do not own. Disallowing such hardlinks mitigate vulnerabilities based on insecure file system accessed by privileged programs, avoiding an exploitation vector exploiting unsafe use of open() or creat().\\n\\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\\n/etc/sysctl.d/*.conf\\n/run/sysctl.d/*.conf\\n/usr/local/lib/sysctl.d/*.conf\\n/usr/lib/sysctl.d/*.conf\\n/lib/sysctl.d/*.conf\\n/etc/sysctl.conf\\n\\nBased on the information above, if a configuration file that begins with \\\"99-\\\" is created in the \\\"/etc/sysctl.d/\\\" directory, it will take precedence over any other configuration file on the system.\\n\\nSatisfies: SRG-OS-000312-GPOS-00122, SRG-OS-000312-GPOS-00123, SRG-OS-000312-GPOS-00124, SRG-OS-000324-GPOS-00125\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230268", + "group_title": "SRG-OS-000312-GPOS-00122", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230268r792876_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:134", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32912r792875_fix", + "fixtext_fixref": "F-32912r792875_fix", + "ident": { + "text": "CCI-002165", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-010374", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230267r792873_rule", + "role": "full", + "time": "2021-11-12T11:37:26-05:00", + "severity": "medium", + "version": "RHEL-08-010373", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-002165", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:133", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must enable kernel parameters to enforce discretionary access control on hardlinks.", + "id": "V-230268", + "desc": "Discretionary Access Control (DAC) is based on the notion that individual users are \"owners\" of objects and therefore have discretion over who should be authorized to access the object and in which mode (e.g., read or write). Ownership is usually acquired as a consequence of creating the object or via specified ownership assignment. DAC allows the owner to determine who will have access to objects they control. An example of DAC includes user-controlled file permissions.\n\nWhen discretionary access control policies are implemented, subjects are not constrained with regard to what actions they can take with information for which they have already been granted access. Thus, subjects that have been granted access to information are not prevented from passing (i.e., the subjects have the discretion to pass) the information to other subjects or objects. A subject that is constrained in its operation by Mandatory Access Control policies is still able to operate under the less rigorous constraints of this requirement. Thus, while Mandatory Access Control imposes constraints preventing a subject from passing information to another subject operating at a different sensitivity level, this requirement permits the subject to pass the information to any subject at the same sensitivity level. The policy is bounded by the information system boundary. Once the information is passed outside the control of the information system, additional means may be required to ensure the constraints remain in effect. While the older, more traditional definitions of discretionary access control require identity-based access control, that limitation is not required for this use of discretionary access control.\n\nBy enabling the fs.protected_hardlinks kernel parameter, users can no longer create soft or hard links to files they do not own. Disallowing such hardlinks mitigate vulnerabilities based on insecure file system accessed by privileged programs, avoiding an exploitation vector exploiting unsafe use of open() or creat().\n\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\n/etc/sysctl.d/*.conf\n/run/sysctl.d/*.conf\n/usr/local/lib/sysctl.d/*.conf\n/usr/lib/sysctl.d/*.conf\n/lib/sysctl.d/*.conf\n/etc/sysctl.conf\n\nBased on the information above, if a configuration file that begins with \"99-\" is created in the \"/etc/sysctl.d/\" directory, it will take precedence over any other configuration file on the system.\n\nSatisfies: SRG-OS-000312-GPOS-00122, SRG-OS-000312-GPOS-00123, SRG-OS-000312-GPOS-00124, SRG-OS-000324-GPOS-00125", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:134", + "label": "check" + }, + { + "data": "Configure the operating system to enable DAC on hardlinks.\n\nAdd or edit the following line in a system configuration file, which begins with \"99-\", in the \"/etc/sysctl.d/\" directory:\n\nfs.protected_hardlinks = 1\n\nLoad settings from all system configuration files with the following command:\n\n$ sudo sysctl --system", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230268\",\n \"title\": {\n \"text\": \"SRG-OS-000312-GPOS-00122\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230268r792876_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-010374\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must enable kernel parameters to enforce discretionary access control on hardlinks.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Discretionary Access Control (DAC) is based on the notion that individual users are \\\"owners\\\" of objects and therefore have discretion over who should be authorized to access the object and in which mode (e.g., read or write). Ownership is usually acquired as a consequence of creating the object or via specified ownership assignment. DAC allows the owner to determine who will have access to objects they control. An example of DAC includes user-controlled file permissions.\\n\\nWhen discretionary access control policies are implemented, subjects are not constrained with regard to what actions they can take with information for which they have already been granted access. Thus, subjects that have been granted access to information are not prevented from passing (i.e., the subjects have the discretion to pass) the information to other subjects or objects. A subject that is constrained in its operation by Mandatory Access Control policies is still able to operate under the less rigorous constraints of this requirement. Thus, while Mandatory Access Control imposes constraints preventing a subject from passing information to another subject operating at a different sensitivity level, this requirement permits the subject to pass the information to any subject at the same sensitivity level. The policy is bounded by the information system boundary. Once the information is passed outside the control of the information system, additional means may be required to ensure the constraints remain in effect. While the older, more traditional definitions of discretionary access control require identity-based access control, that limitation is not required for this use of discretionary access control.\\n\\nBy enabling the fs.protected_hardlinks kernel parameter, users can no longer create soft or hard links to files they do not own. Disallowing such hardlinks mitigate vulnerabilities based on insecure file system accessed by privileged programs, avoiding an exploitation vector exploiting unsafe use of open() or creat().\\n\\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\\n/etc/sysctl.d/*.conf\\n/run/sysctl.d/*.conf\\n/usr/local/lib/sysctl.d/*.conf\\n/usr/lib/sysctl.d/*.conf\\n/lib/sysctl.d/*.conf\\n/etc/sysctl.conf\\n\\nBased on the information above, if a configuration file that begins with \\\"99-\\\" is created in the \\\"/etc/sysctl.d/\\\" directory, it will take precedence over any other configuration file on the system.\\n\\nSatisfies: SRG-OS-000312-GPOS-00122, SRG-OS-000312-GPOS-00123, SRG-OS-000312-GPOS-00124, SRG-OS-000324-GPOS-00125</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-002165\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the operating system to enable DAC on hardlinks.\\n\\nAdd or edit the following line in a system configuration file, which begins with \\\"99-\\\", in the \\\"/etc/sysctl.d/\\\" directory:\\n\\nfs.protected_hardlinks = 1\\n\\nLoad settings from all system configuration files with the following command:\\n\\n$ sudo sysctl --system\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-32912r792875_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-32912r792875_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:134\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:26-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001090" + ], + "nist": [ + "SC-4" + ], + "severity": "low", + "description": "{\"VulnDiscussion\":\"Preventing unauthorized information transfers mitigates the risk of information, including encrypted representations of information, produced by the actions of prior users/roles (or the actions of processes acting on behalf of prior users/roles) from being available to any current users/roles (or current processes) that obtain access to shared system resources (e.g., registers, main memory, hard disks) after those resources have been released back to information systems. The control of information in shared resources is also commonly referred to as object reuse and residual information protection.\\n\\nThis requirement generally applies to the design of an information technology product, but it can also apply to the configuration of particular information system components that are, or use, such products. This can be verified by acceptance/validation processes in DoD or other government agencies.\\n\\nThere may be shared resources with configurable protections (e.g., files in storage) that may be assessed on specific information system components.\\n\\nRestricting access to the kernel message buffer limits access to only root. This prevents attackers from gaining additional system information as a non-privileged user.\\n\\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\\n/etc/sysctl.d/*.conf\\n/run/sysctl.d/*.conf\\n/usr/local/lib/sysctl.d/*.conf\\n/usr/lib/sysctl.d/*.conf\\n/lib/sysctl.d/*.conf\\n/etc/sysctl.conf\\n\\nBased on the information above, if a configuration file that begins with \\\"99-\\\" is created in the \\\"/etc/sysctl.d/\\\" directory, it will take precedence over any other configuration file on the system.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230269", + "group_title": "SRG-OS-000138-GPOS-00069", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230269r792879_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:135", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32913r792878_fix", + "fixtext_fixref": "F-32913r792878_fix", + "ident": { + "text": "CCI-001090", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-010375", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230268r792876_rule", + "role": "full", + "time": "2021-11-12T11:37:26-05:00", + "severity": "medium", + "version": "RHEL-08-010374", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-002165", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:134", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must restrict access to the kernel message buffer.", + "id": "V-230269", + "desc": "Preventing unauthorized information transfers mitigates the risk of information, including encrypted representations of information, produced by the actions of prior users/roles (or the actions of processes acting on behalf of prior users/roles) from being available to any current users/roles (or current processes) that obtain access to shared system resources (e.g., registers, main memory, hard disks) after those resources have been released back to information systems. The control of information in shared resources is also commonly referred to as object reuse and residual information protection.\n\nThis requirement generally applies to the design of an information technology product, but it can also apply to the configuration of particular information system components that are, or use, such products. This can be verified by acceptance/validation processes in DoD or other government agencies.\n\nThere may be shared resources with configurable protections (e.g., files in storage) that may be assessed on specific information system components.\n\nRestricting access to the kernel message buffer limits access to only root. This prevents attackers from gaining additional system information as a non-privileged user.\n\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\n/etc/sysctl.d/*.conf\n/run/sysctl.d/*.conf\n/usr/local/lib/sysctl.d/*.conf\n/usr/lib/sysctl.d/*.conf\n/lib/sysctl.d/*.conf\n/etc/sysctl.conf\n\nBased on the information above, if a configuration file that begins with \"99-\" is created in the \"/etc/sysctl.d/\" directory, it will take precedence over any other configuration file on the system.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:135", + "label": "check" + }, + { + "data": "Configure the operating system to restrict access to the kernel message buffer.\n\nAdd or edit the following line in a system configuration file, which begins with \"99-\", in the \"/etc/sysctl.d/\" directory:\n\nkernel.dmesg_restrict = 1\n\nLoad settings from all system configuration files with the following command:\n\n$ sudo sysctl --system", + "label": "fix" + } + ], + "impact": 0.3, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230269\",\n \"title\": {\n \"text\": \"SRG-OS-000138-GPOS-00069\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230269r792879_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"low\",\n \"version\": {\n \"text\": \"RHEL-08-010375\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must restrict access to the kernel message buffer.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Preventing unauthorized information transfers mitigates the risk of information, including encrypted representations of information, produced by the actions of prior users/roles (or the actions of processes acting on behalf of prior users/roles) from being available to any current users/roles (or current processes) that obtain access to shared system resources (e.g., registers, main memory, hard disks) after those resources have been released back to information systems. The control of information in shared resources is also commonly referred to as object reuse and residual information protection.\\n\\nThis requirement generally applies to the design of an information technology product, but it can also apply to the configuration of particular information system components that are, or use, such products. This can be verified by acceptance/validation processes in DoD or other government agencies.\\n\\nThere may be shared resources with configurable protections (e.g., files in storage) that may be assessed on specific information system components.\\n\\nRestricting access to the kernel message buffer limits access to only root. This prevents attackers from gaining additional system information as a non-privileged user.\\n\\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\\n/etc/sysctl.d/*.conf\\n/run/sysctl.d/*.conf\\n/usr/local/lib/sysctl.d/*.conf\\n/usr/lib/sysctl.d/*.conf\\n/lib/sysctl.d/*.conf\\n/etc/sysctl.conf\\n\\nBased on the information above, if a configuration file that begins with \\\"99-\\\" is created in the \\\"/etc/sysctl.d/\\\" directory, it will take precedence over any other configuration file on the system.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-001090\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the operating system to restrict access to the kernel message buffer.\\n\\nAdd or edit the following line in a system configuration file, which begins with \\\"99-\\\", in the \\\"/etc/sysctl.d/\\\" directory:\\n\\nkernel.dmesg_restrict = 1\\n\\nLoad settings from all system configuration files with the following command:\\n\\n$ sudo sysctl --system\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-32913r792878_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-32913r792878_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:135\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:26-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001090" + ], + "nist": [ + "SC-4" + ], + "severity": "low", + "description": "{\"VulnDiscussion\":\"Preventing unauthorized information transfers mitigates the risk of information, including encrypted representations of information, produced by the actions of prior users/roles (or the actions of processes acting on behalf of prior users/roles) from being available to any current users/roles (or current processes) that obtain access to shared system resources (e.g., registers, main memory, hard disks) after those resources have been released back to information systems. The control of information in shared resources is also commonly referred to as object reuse and residual information protection.\\n\\nThis requirement generally applies to the design of an information technology product, but it can also apply to the configuration of particular information system components that are, or use, such products. This can be verified by acceptance/validation processes in DoD or other government agencies.\\n\\nThere may be shared resources with configurable protections (e.g., files in storage) that may be assessed on specific information system components.\\n\\nSetting the kernel.perf_event_paranoid kernel parameter to \\\"2\\\" prevents attackers from gaining additional system information as a non-privileged user.\\n\\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\\n/etc/sysctl.d/*.conf\\n/run/sysctl.d/*.conf\\n/usr/local/lib/sysctl.d/*.conf\\n/usr/lib/sysctl.d/*.conf\\n/lib/sysctl.d/*.conf\\n/etc/sysctl.conf\\n\\nBased on the information above, if a configuration file that begins with \\\"99-\\\" is created in the \\\"/etc/sysctl.d/\\\" directory, it will take precedence over any other configuration file on the system.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230270", + "group_title": "SRG-OS-000138-GPOS-00069", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230270r792882_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:136", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32914r792881_fix", + "fixtext_fixref": "F-32914r792881_fix", + "ident": { + "text": "CCI-001090", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-010376", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230269r792879_rule", + "role": "full", + "time": "2021-11-12T11:37:26-05:00", + "severity": "low", + "version": "RHEL-08-010375", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-001090", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:135", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must prevent kernel profiling by unprivileged users.", + "id": "V-230270", + "desc": "Preventing unauthorized information transfers mitigates the risk of information, including encrypted representations of information, produced by the actions of prior users/roles (or the actions of processes acting on behalf of prior users/roles) from being available to any current users/roles (or current processes) that obtain access to shared system resources (e.g., registers, main memory, hard disks) after those resources have been released back to information systems. The control of information in shared resources is also commonly referred to as object reuse and residual information protection.\n\nThis requirement generally applies to the design of an information technology product, but it can also apply to the configuration of particular information system components that are, or use, such products. This can be verified by acceptance/validation processes in DoD or other government agencies.\n\nThere may be shared resources with configurable protections (e.g., files in storage) that may be assessed on specific information system components.\n\nSetting the kernel.perf_event_paranoid kernel parameter to \"2\" prevents attackers from gaining additional system information as a non-privileged user.\n\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\n/etc/sysctl.d/*.conf\n/run/sysctl.d/*.conf\n/usr/local/lib/sysctl.d/*.conf\n/usr/lib/sysctl.d/*.conf\n/lib/sysctl.d/*.conf\n/etc/sysctl.conf\n\nBased on the information above, if a configuration file that begins with \"99-\" is created in the \"/etc/sysctl.d/\" directory, it will take precedence over any other configuration file on the system.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:136", + "label": "check" + }, + { + "data": "Configure the operating system to prevent kernel profiling by unprivileged users.\n\nAdd or edit the following line in a system configuration file, which begins with \"99-\", in the \"/etc/sysctl.d/\" directory:\n\nkernel.perf_event_paranoid = 2\n\nLoad settings from all system configuration files with the following command:\n\n$ sudo sysctl --system", + "label": "fix" + } + ], + "impact": 0.3, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230270\",\n \"title\": {\n \"text\": \"SRG-OS-000138-GPOS-00069\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230270r792882_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"low\",\n \"version\": {\n \"text\": \"RHEL-08-010376\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must prevent kernel profiling by unprivileged users.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Preventing unauthorized information transfers mitigates the risk of information, including encrypted representations of information, produced by the actions of prior users/roles (or the actions of processes acting on behalf of prior users/roles) from being available to any current users/roles (or current processes) that obtain access to shared system resources (e.g., registers, main memory, hard disks) after those resources have been released back to information systems. The control of information in shared resources is also commonly referred to as object reuse and residual information protection.\\n\\nThis requirement generally applies to the design of an information technology product, but it can also apply to the configuration of particular information system components that are, or use, such products. This can be verified by acceptance/validation processes in DoD or other government agencies.\\n\\nThere may be shared resources with configurable protections (e.g., files in storage) that may be assessed on specific information system components.\\n\\nSetting the kernel.perf_event_paranoid kernel parameter to \\\"2\\\" prevents attackers from gaining additional system information as a non-privileged user.\\n\\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\\n/etc/sysctl.d/*.conf\\n/run/sysctl.d/*.conf\\n/usr/local/lib/sysctl.d/*.conf\\n/usr/lib/sysctl.d/*.conf\\n/lib/sysctl.d/*.conf\\n/etc/sysctl.conf\\n\\nBased on the information above, if a configuration file that begins with \\\"99-\\\" is created in the \\\"/etc/sysctl.d/\\\" directory, it will take precedence over any other configuration file on the system.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-001090\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the operating system to prevent kernel profiling by unprivileged users.\\n\\nAdd or edit the following line in a system configuration file, which begins with \\\"99-\\\", in the \\\"/etc/sysctl.d/\\\" directory:\\n\\nkernel.perf_event_paranoid = 2\\n\\nLoad settings from all system configuration files with the following command:\\n\\n$ sudo sysctl --system\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-32914r792881_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-32914r792881_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:136\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:26-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-002038" + ], + "nist": [ + "IA-11" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without reauthentication, users may access resources or perform tasks for which they do not have authorization.\\n\\nWhen operating systems provide the capability to escalate a functional capability, it is critical the user reauthenticate.\\n\\nSatisfies: SRG-OS-000373-GPOS-00156, SRG-OS-000373-GPOS-00157, SRG-OS-000373-GPOS-00158\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230271", + "group_title": "SRG-OS-000373-GPOS-00156", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230271r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:137", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32915r567560_fix", + "fixtext_fixref": "F-32915r567560_fix", + "ident": { + "text": "CCI-002038", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-010380", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230270r792882_rule", + "role": "full", + "time": "2021-11-12T11:37:26-05:00", + "severity": "low", + "version": "RHEL-08-010376", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-001090", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:136", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must require users to provide a password for privilege escalation.", + "id": "V-230271", + "desc": "Without reauthentication, users may access resources or perform tasks for which they do not have authorization.\n\nWhen operating systems provide the capability to escalate a functional capability, it is critical the user reauthenticate.\n\nSatisfies: SRG-OS-000373-GPOS-00156, SRG-OS-000373-GPOS-00157, SRG-OS-000373-GPOS-00158", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:137", + "label": "check" + }, + { + "data": "Remove any occurrence of \"NOPASSWD\" found in \"/etc/sudoers\" file or files in the \"/etc/sudoers.d\" directory.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230271\",\n \"title\": {\n \"text\": \"SRG-OS-000373-GPOS-00156\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230271r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-010380\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must require users to provide a password for privilege escalation.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without reauthentication, users may access resources or perform tasks for which they do not have authorization.\\n\\nWhen operating systems provide the capability to escalate a functional capability, it is critical the user reauthenticate.\\n\\nSatisfies: SRG-OS-000373-GPOS-00156, SRG-OS-000373-GPOS-00157, SRG-OS-000373-GPOS-00158</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-002038\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Remove any occurrence of \\\"NOPASSWD\\\" found in \\\"/etc/sudoers\\\" file or files in the \\\"/etc/sudoers.d\\\" directory.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-32915r567560_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-32915r567560_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:137\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:26-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-002038" + ], + "nist": [ + "IA-11" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without reauthentication, users may access resources or perform tasks for which they do not have authorization.\\n\\nWhen operating systems provide the capability to escalate a functional capability, it is critical the user reauthenticate.\\n\\nSatisfies: SRG-OS-000373-GPOS-00156, SRG-OS-000373-GPOS-00157, SRG-OS-000373-GPOS-00158\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230272", + "group_title": "SRG-OS-000373-GPOS-00156", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230272r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:138", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32916r567563_fix", + "fixtext_fixref": "F-32916r567563_fix", + "ident": { + "text": "CCI-002038", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-010381", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230271r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:26-05:00", + "severity": "medium", + "version": "RHEL-08-010380", + "weight": "10.000000", + "result": "error", + "ident": { + "text": "CCI-002038", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:137", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must require users to reauthenticate for privilege escalation.", + "id": "V-230272", + "desc": "Without reauthentication, users may access resources or perform tasks for which they do not have authorization.\n\nWhen operating systems provide the capability to escalate a functional capability, it is critical the user reauthenticate.\n\nSatisfies: SRG-OS-000373-GPOS-00156, SRG-OS-000373-GPOS-00157, SRG-OS-000373-GPOS-00158", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:138", + "label": "check" + }, + { + "data": "Remove any occurrence of \"!authenticate\" found in \"/etc/sudoers\" file or files in the \"/etc/sudoers.d\" directory.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230272\",\n \"title\": {\n \"text\": \"SRG-OS-000373-GPOS-00156\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230272r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-010381\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must require users to reauthenticate for privilege escalation.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without reauthentication, users may access resources or perform tasks for which they do not have authorization.\\n\\nWhen operating systems provide the capability to escalate a functional capability, it is critical the user reauthenticate.\\n\\nSatisfies: SRG-OS-000373-GPOS-00156, SRG-OS-000373-GPOS-00157, SRG-OS-000373-GPOS-00158</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-002038\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Remove any occurrence of \\\"!authenticate\\\" found in \\\"/etc/sudoers\\\" file or files in the \\\"/etc/sudoers.d\\\" directory.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-32916r567563_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-32916r567563_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:138\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:26-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001948" + ], + "nist": [ + "IA-2 (11)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Using an authentication device, such as a DoD Common Access Card (CAC) or token that is separate from the information system, ensures that even if the information system is compromised, credentials stored on the authentication device will not be affected.\\n\\nMultifactor solutions that require devices separate from information systems gaining access include, for example, hardware tokens providing time-based or challenge-response authenticators and smart cards such as the U.S. Government Personal Identity Verification (PIV) card and the DoD CAC.\\n\\nA privileged account is defined as an information system account with authorizations of a privileged user.\\n\\nRemote access is access to DoD nonpublic information systems by an authorized user (or an information system) communicating through an external, non-organization-controlled network. Remote access methods include, for example, dial-up, broadband, and wireless.\\n\\nThis requirement only applies to components where this is specific to the function of the device or has the concept of an organizational user (e.g., VPN, proxy capability). This does not apply to authentication for the purpose of configuring the device itself (management).\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230273", + "group_title": "SRG-OS-000375-GPOS-00160", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230273r743943_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:139", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32917r743942_fix", + "fixtext_fixref": "F-32917r743942_fix", + "ident": { + "text": "CCI-001948", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-010390", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230272r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:26-05:00", + "severity": "medium", + "version": "RHEL-08-010381", + "weight": "10.000000", + "result": "error", + "ident": { + "text": "CCI-002038", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:138", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must have the packages required for multifactor authentication installed.", + "id": "V-230273", + "desc": "Using an authentication device, such as a DoD Common Access Card (CAC) or token that is separate from the information system, ensures that even if the information system is compromised, credentials stored on the authentication device will not be affected.\n\nMultifactor solutions that require devices separate from information systems gaining access include, for example, hardware tokens providing time-based or challenge-response authenticators and smart cards such as the U.S. Government Personal Identity Verification (PIV) card and the DoD CAC.\n\nA privileged account is defined as an information system account with authorizations of a privileged user.\n\nRemote access is access to DoD nonpublic information systems by an authorized user (or an information system) communicating through an external, non-organization-controlled network. Remote access methods include, for example, dial-up, broadband, and wireless.\n\nThis requirement only applies to components where this is specific to the function of the device or has the concept of an organizational user (e.g., VPN, proxy capability). This does not apply to authentication for the purpose of configuring the device itself (management).", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:139", + "label": "check" + }, + { + "data": "Configure the operating system to implement multifactor authentication by installing the required package with the following command:\n\n$ sudo yum install openssl-pkcs11", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230273\",\n \"title\": {\n \"text\": \"SRG-OS-000375-GPOS-00160\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230273r743943_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-010390\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must have the packages required for multifactor authentication installed.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Using an authentication device, such as a DoD Common Access Card (CAC) or token that is separate from the information system, ensures that even if the information system is compromised, credentials stored on the authentication device will not be affected.\\n\\nMultifactor solutions that require devices separate from information systems gaining access include, for example, hardware tokens providing time-based or challenge-response authenticators and smart cards such as the U.S. Government Personal Identity Verification (PIV) card and the DoD CAC.\\n\\nA privileged account is defined as an information system account with authorizations of a privileged user.\\n\\nRemote access is access to DoD nonpublic information systems by an authorized user (or an information system) communicating through an external, non-organization-controlled network. Remote access methods include, for example, dial-up, broadband, and wireless.\\n\\nThis requirement only applies to components where this is specific to the function of the device or has the concept of an organizational user (e.g., VPN, proxy capability). This does not apply to authentication for the purpose of configuring the device itself (management).</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-001948\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the operating system to implement multifactor authentication by installing the required package with the following command:\\n\\n$ sudo yum install openssl-pkcs11\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-32917r743942_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-32917r743942_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:139\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-11-12T11:37:26-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-002617" + ], + "nist": [ + "SI-2 (6)" + ], + "severity": "low", + "description": "{\"VulnDiscussion\":\"Previous versions of software components that are not removed from the information system after updates have been installed may be exploited by adversaries. Some information technology products may remove older versions of software automatically from the information system.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230281", + "group_title": "SRG-OS-000437-GPOS-00194", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230281r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:145", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32925r567590_fix", + "fixtext_fixref": "F-32925r567590_fix", + "ident": { + "text": "CCI-002617", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-010440", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230273r743943_rule", + "role": "full", + "time": "2021-11-12T11:37:26-05:00", + "severity": "medium", + "version": "RHEL-08-010390", + "weight": "10.000000", + "result": "pass", + "ident": { + "text": "CCI-001948", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:139", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "YUM must remove all software components after updated versions have been installed on RHEL 8.", + "id": "V-230281", + "desc": "Previous versions of software components that are not removed from the information system after updates have been installed may be exploited by adversaries. Some information technology products may remove older versions of software automatically from the information system.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:145", + "label": "check" + }, + { + "data": "Configure the operating system to remove all software components after updated versions have been installed.\n\nSet the \"clean_requirements_on_remove\" option to \"True\" in the \"/etc/dnf/dnf.conf\" file:\n\nclean_requirements_on_remove=True", + "label": "fix" + } + ], + "impact": 0.3, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230281\",\n \"title\": {\n \"text\": \"SRG-OS-000437-GPOS-00194\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230281r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"low\",\n \"version\": {\n \"text\": \"RHEL-08-010440\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"YUM must remove all software components after updated versions have been installed on RHEL 8.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Previous versions of software components that are not removed from the information system after updates have been installed may be exploited by adversaries. Some information technology products may remove older versions of software automatically from the information system.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-002617\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the operating system to remove all software components after updated versions have been installed.\\n\\nSet the \\\"clean_requirements_on_remove\\\" option to \\\"True\\\" in the \\\"/etc/dnf/dnf.conf\\\" file:\\n\\nclean_requirements_on_remove=True\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-32925r567590_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-32925r567590_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:145\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-11-12T11:37:26-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-002696" + ], + "nist": [ + "SI-6 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without verification of the security functions, security functions may not operate correctly and the failure may go unnoticed. Security function is defined as the hardware, software, and/or firmware of the information system responsible for enforcing the system security policy and supporting the isolation of code and data on which the protection is based. Security functionality includes, but is not limited to, establishing system accounts, configuring access authorizations (i.e., permissions, privileges), setting events to be audited, and setting intrusion detection parameters.\\n\\nThis requirement applies to operating systems performing security function verification/testing and/or systems and environments that require this functionality.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230282", + "group_title": "SRG-OS-000445-GPOS-00199", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230282r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:146", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32926r567593_fix", + "fixtext_fixref": "F-32926r567593_fix", + "ident": { + "text": "CCI-002696", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-010450", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230281r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:26-05:00", + "severity": "low", + "version": "RHEL-08-010440", + "weight": "10.000000", + "result": "pass", + "ident": { + "text": "CCI-002617", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:145", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must enable the SELinux targeted policy.", + "id": "V-230282", + "desc": "Without verification of the security functions, security functions may not operate correctly and the failure may go unnoticed. Security function is defined as the hardware, software, and/or firmware of the information system responsible for enforcing the system security policy and supporting the isolation of code and data on which the protection is based. Security functionality includes, but is not limited to, establishing system accounts, configuring access authorizations (i.e., permissions, privileges), setting events to be audited, and setting intrusion detection parameters.\n\nThis requirement applies to operating systems performing security function verification/testing and/or systems and environments that require this functionality.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:146", + "label": "check" + }, + { + "data": "Configure the operating system to verify correct operation of all security functions.\n\nSet the \"SELinuxtype\" to the \"targeted\" policy by modifying the \"/etc/selinux/config\" file to have the following line:\n\nSELINUXTYPE=targeted\n\nA reboot is required for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230282\",\n \"title\": {\n \"text\": \"SRG-OS-000445-GPOS-00199\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230282r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-010450\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must enable the SELinux targeted policy.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without verification of the security functions, security functions may not operate correctly and the failure may go unnoticed. Security function is defined as the hardware, software, and/or firmware of the information system responsible for enforcing the system security policy and supporting the isolation of code and data on which the protection is based. Security functionality includes, but is not limited to, establishing system accounts, configuring access authorizations (i.e., permissions, privileges), setting events to be audited, and setting intrusion detection parameters.\\n\\nThis requirement applies to operating systems performing security function verification/testing and/or systems and environments that require this functionality.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-002696\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the operating system to verify correct operation of all security functions.\\n\\nSet the \\\"SELinuxtype\\\" to the \\\"targeted\\\" policy by modifying the \\\"/etc/selinux/config\\\" file to have the following line:\\n\\nSELINUXTYPE=targeted\\n\\nA reboot is required for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-32926r567593_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-32926r567593_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:146\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-11-12T11:37:26-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "high", + "description": "{\"VulnDiscussion\":\"The \\\"shosts.equiv\\\" files are used to configure host-based authentication for the system via SSH. Host-based authentication is not sufficient for preventing unauthorized access to the system, as it does not require interactive identification and authentication of a connection request, or for the use of two-factor authentication.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230283", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230283r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:147", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32927r567596_fix", + "fixtext_fixref": "F-32927r567596_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-010460", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230282r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:26-05:00", + "severity": "medium", + "version": "RHEL-08-010450", + "weight": "10.000000", + "result": "pass", + "ident": { + "text": "CCI-002696", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:146", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "There must be no shosts.equiv files on the RHEL 8 operating system.", + "id": "V-230283", + "desc": "The \"shosts.equiv\" files are used to configure host-based authentication for the system via SSH. Host-based authentication is not sufficient for preventing unauthorized access to the system, as it does not require interactive identification and authentication of a connection request, or for the use of two-factor authentication.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:147", + "label": "check" + }, + { + "data": "Remove any found \"shosts.equiv\" files from the system.\n\n$ sudo rm /etc/ssh/shosts.equiv", + "label": "fix" + } + ], + "impact": 0.7, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230283\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230283r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"high\",\n \"version\": {\n \"text\": \"RHEL-08-010460\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"There must be no shosts.equiv files on the RHEL 8 operating system.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>The \\\"shosts.equiv\\\" files are used to configure host-based authentication for the system via SSH. Host-based authentication is not sufficient for preventing unauthorized access to the system, as it does not require interactive identification and authentication of a connection request, or for the use of two-factor authentication.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Remove any found \\\"shosts.equiv\\\" files from the system.\\n\\n$ sudo rm /etc/ssh/shosts.equiv\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-32927r567596_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-32927r567596_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:147\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-11-12T11:37:28-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "high", + "description": "{\"VulnDiscussion\":\"The \\\".shosts\\\" files are used to configure host-based authentication for individual users or the system via SSH. Host-based authentication is not sufficient for preventing unauthorized access to the system, as it does not require interactive identification and authentication of a connection request, or for the use of two-factor authentication.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230284", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230284r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:148", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32928r567599_fix", + "fixtext_fixref": "F-32928r567599_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-010470", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230283r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:28-05:00", + "severity": "high", + "version": "RHEL-08-010460", + "weight": "10.000000", + "result": "pass", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:147", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "There must be no .shosts files on the RHEL 8 operating system.", + "id": "V-230284", + "desc": "The \".shosts\" files are used to configure host-based authentication for individual users or the system via SSH. Host-based authentication is not sufficient for preventing unauthorized access to the system, as it does not require interactive identification and authentication of a connection request, or for the use of two-factor authentication.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:148", + "label": "check" + }, + { + "data": "Remove any found \".shosts\" files from the system.\n\n$ sudo rm /[path]/[to]/[file]/.shosts", + "label": "fix" + } + ], + "impact": 0.7, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230284\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230284r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"high\",\n \"version\": {\n \"text\": \"RHEL-08-010470\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"There must be no .shosts files on the RHEL 8 operating system.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>The \\\".shosts\\\" files are used to configure host-based authentication for individual users or the system via SSH. Host-based authentication is not sufficient for preventing unauthorized access to the system, as it does not require interactive identification and authentication of a connection request, or for the use of two-factor authentication.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Remove any found \\\".shosts\\\" files from the system.\\n\\n$ sudo rm /[path]/[to]/[file]/.shosts\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-32928r567599_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-32928r567599_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:148\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"If a public host key file is modified by an unauthorized user, the SSH service may be compromised.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230286", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230286r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:149", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32930r567605_fix", + "fixtext_fixref": "F-32930r567605_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-010480", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230284r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "high", + "version": "RHEL-08-010470", + "weight": "10.000000", + "result": "pass", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:148", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The RHEL 8 SSH public host key files must have mode 0644 or less permissive.", + "id": "V-230286", + "desc": "If a public host key file is modified by an unauthorized user, the SSH service may be compromised.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:149", + "label": "check" + }, + { + "data": "Change the mode of public host key files under \"/etc/ssh\" to \"0644\" with the following command:\n\n$ sudo chmod 0644 /etc/ssh/*key.pub\n\nThe SSH daemon must be restarted for the changes to take effect. To restart the SSH daemon, run the following command:\n\n$ sudo systemctl restart sshd.service", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230286\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230286r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-010480\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The RHEL 8 SSH public host key files must have mode 0644 or less permissive.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>If a public host key file is modified by an unauthorized user, the SSH service may be compromised.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Change the mode of public host key files under \\\"/etc/ssh\\\" to \\\"0644\\\" with the following command:\\n\\n$ sudo chmod 0644 /etc/ssh/*key.pub\\n\\nThe SSH daemon must be restarted for the changes to take effect. To restart the SSH daemon, run the following command:\\n\\n$ sudo systemctl restart sshd.service\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-32930r567605_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-32930r567605_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:149\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"If an unauthorized user obtains the private SSH host key file, the host could be impersonated.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230287", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230287r743951_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:150", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32931r743950_fix", + "fixtext_fixref": "F-32931r743950_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-010490", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230286r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-010480", + "weight": "10.000000", + "result": "pass", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:149", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The RHEL 8 SSH private host key files must have mode 0600 or less permissive.", + "id": "V-230287", + "desc": "If an unauthorized user obtains the private SSH host key file, the host could be impersonated.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:150", + "label": "check" + }, + { + "data": "Configure the mode of SSH private host key files under \"/etc/ssh\" to \"0600\" with the following command:\n\n$ sudo chmod 0600 /etc/ssh/ssh_host*key\n\nThe SSH daemon must be restarted for the changes to take effect. To restart the SSH daemon, run the following command:\n\n$ sudo systemctl restart sshd.service", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230287\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230287r743951_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-010490\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The RHEL 8 SSH private host key files must have mode 0600 or less permissive.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>If an unauthorized user obtains the private SSH host key file, the host could be impersonated.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the mode of SSH private host key files under \\\"/etc/ssh\\\" to \\\"0600\\\" with the following command:\\n\\n$ sudo chmod 0600 /etc/ssh/ssh_host*key\\n\\nThe SSH daemon must be restarted for the changes to take effect. To restart the SSH daemon, run the following command:\\n\\n$ sudo systemctl restart sshd.service\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-32931r743950_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-32931r743950_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:150\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"If other users have access to modify user-specific SSH configuration files, they may be able to log on to the system as another user.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230288", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230288r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:151", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32932r567611_fix", + "fixtext_fixref": "F-32932r567611_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-010500", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230287r743951_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-010490", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:150", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The RHEL 8 SSH daemon must perform strict mode checking of home directory configuration files.", + "id": "V-230288", + "desc": "If other users have access to modify user-specific SSH configuration files, they may be able to log on to the system as another user.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:151", + "label": "check" + }, + { + "data": "Configure SSH to perform strict mode checking of home directory configuration files. Uncomment the \"StrictModes\" keyword in \"/etc/ssh/sshd_config\" and set the value to \"yes\":\n\nStrictModes yes\n\nThe SSH daemon must be restarted for the changes to take effect. To restart the SSH daemon, run the following command:\n\n$ sudo systemctl restart sshd.service", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230288\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230288r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-010500\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The RHEL 8 SSH daemon must perform strict mode checking of home directory configuration files.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>If other users have access to modify user-specific SSH configuration files, they may be able to log on to the system as another user.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure SSH to perform strict mode checking of home directory configuration files. Uncomment the \\\"StrictModes\\\" keyword in \\\"/etc/ssh/sshd_config\\\" and set the value to \\\"yes\\\":\\n\\nStrictModes yes\\n\\nThe SSH daemon must be restarted for the changes to take effect. To restart the SSH daemon, run the following command:\\n\\n$ sudo systemctl restart sshd.service\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-32932r567611_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-32932r567611_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:151\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"If compression is allowed in an SSH connection prior to authentication, vulnerabilities in the compression software could result in compromise of the system from an unauthenticated connection, potentially with root privileges.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230289", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230289r743954_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:152", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32933r743953_fix", + "fixtext_fixref": "F-32933r743953_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-010510", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230288r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-010500", + "weight": "10.000000", + "result": "error", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:151", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The RHEL 8 SSH daemon must not allow compression or must only allow compression after successful authentication.", + "id": "V-230289", + "desc": "If compression is allowed in an SSH connection prior to authentication, vulnerabilities in the compression software could result in compromise of the system from an unauthenticated connection, potentially with root privileges.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:152", + "label": "check" + }, + { + "data": "Uncomment the \"Compression\" keyword in \"/etc/ssh/sshd_config\" (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor) on the system and set the value to \"delayed\" or \"no\":\n\nCompression no\n\nThe SSH service must be restarted for changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230289\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230289r743954_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-010510\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The RHEL 8 SSH daemon must not allow compression or must only allow compression after successful authentication.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>If compression is allowed in an SSH connection prior to authentication, vulnerabilities in the compression software could result in compromise of the system from an unauthenticated connection, potentially with root privileges.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Uncomment the \\\"Compression\\\" keyword in \\\"/etc/ssh/sshd_config\\\" (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor) on the system and set the value to \\\"delayed\\\" or \\\"no\\\":\\n\\nCompression no\\n\\nThe SSH service must be restarted for changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-32933r743953_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-32933r743953_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:152\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Configuring this setting for the SSH daemon provides additional assurance that remote logon via SSH will require a password, even in the event of misconfiguration elsewhere.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230290", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230290r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:153", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32934r567617_fix", + "fixtext_fixref": "F-32934r567617_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-010520", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230289r743954_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-010510", + "weight": "10.000000", + "result": "error", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:152", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The RHEL 8 SSH daemon must not allow authentication using known host’s authentication.", + "id": "V-230290", + "desc": "Configuring this setting for the SSH daemon provides additional assurance that remote logon via SSH will require a password, even in the event of misconfiguration elsewhere.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:153", + "label": "check" + }, + { + "data": "Configure the SSH daemon to not allow authentication using known host’s authentication.\n\nAdd the following line in \"/etc/ssh/sshd_config\", or uncomment the line and set the value to \"yes\":\n\nIgnoreUserKnownHosts yes\n\nThe SSH daemon must be restarted for the changes to take effect. To restart the SSH daemon, run the following command:\n\n$ sudo systemctl restart sshd.service", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230290\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230290r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-010520\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The RHEL 8 SSH daemon must not allow authentication using known host’s authentication.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Configuring this setting for the SSH daemon provides additional assurance that remote logon via SSH will require a password, even in the event of misconfiguration elsewhere.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the SSH daemon to not allow authentication using known host’s authentication.\\n\\nAdd the following line in \\\"/etc/ssh/sshd_config\\\", or uncomment the line and set the value to \\\"yes\\\":\\n\\nIgnoreUserKnownHosts yes\\n\\nThe SSH daemon must be restarted for the changes to take effect. To restart the SSH daemon, run the following command:\\n\\n$ sudo systemctl restart sshd.service\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-32934r567617_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-32934r567617_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:153\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Configuring these settings for the SSH daemon provides additional assurance that remote logon via SSH will not use unused methods of authentication, even in the event of misconfiguration elsewhere.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230291", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230291r743957_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:154", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32935r743956_fix", + "fixtext_fixref": "F-32935r743956_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-010521", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230290r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-010520", + "weight": "10.000000", + "result": "error", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:153", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The RHEL 8 SSH daemon must not allow Kerberos authentication, except to fulfill documented and validated mission requirements.", + "id": "V-230291", + "desc": "Configuring these settings for the SSH daemon provides additional assurance that remote logon via SSH will not use unused methods of authentication, even in the event of misconfiguration elsewhere.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:154", + "label": "check" + }, + { + "data": "Configure the SSH daemon to not allow Kerberos authentication.\n\nAdd the following line in \"/etc/ssh/sshd_config\", or uncomment the line and set the value to \"no\":\n\nKerberosAuthentication no\n\nThe SSH daemon must be restarted for the changes to take effect. To restart the SSH daemon, run the following command:\n\n$ sudo systemctl restart sshd.service", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230291\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230291r743957_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-010521\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The RHEL 8 SSH daemon must not allow Kerberos authentication, except to fulfill documented and validated mission requirements.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Configuring these settings for the SSH daemon provides additional assurance that remote logon via SSH will not use unused methods of authentication, even in the event of misconfiguration elsewhere.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the SSH daemon to not allow Kerberos authentication.\\n\\nAdd the following line in \\\"/etc/ssh/sshd_config\\\", or uncomment the line and set the value to \\\"no\\\":\\n\\nKerberosAuthentication no\\n\\nThe SSH daemon must be restarted for the changes to take effect. To restart the SSH daemon, run the following command:\\n\\n$ sudo systemctl restart sshd.service\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-32935r743956_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-32935r743956_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:154\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "low", + "description": "{\"VulnDiscussion\":\"The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230292", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230292r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:155", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32936r567623_fix", + "fixtext_fixref": "F-32936r567623_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-010540", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230291r743957_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-010521", + "weight": "10.000000", + "result": "error", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:154", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must use a separate file system for /var.", + "id": "V-230292", + "desc": "The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:155", + "label": "check" + }, + { + "data": "Migrate the \"/var\" path onto a separate file system.", + "label": "fix" + } + ], + "impact": 0.3, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230292\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230292r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"low\",\n \"version\": {\n \"text\": \"RHEL-08-010540\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must use a separate file system for /var.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Migrate the \\\"/var\\\" path onto a separate file system.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-32936r567623_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-32936r567623_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:155\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "low", + "description": "{\"VulnDiscussion\":\"The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230293", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230293r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:156", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32937r567626_fix", + "fixtext_fixref": "F-32937r567626_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-010541", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230292r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "low", + "version": "RHEL-08-010540", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:155", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must use a separate file system for /var/log.", + "id": "V-230293", + "desc": "The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:156", + "label": "check" + }, + { + "data": "Migrate the \"/var/log\" path onto a separate file system.", + "label": "fix" + } + ], + "impact": 0.3, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230293\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230293r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"low\",\n \"version\": {\n \"text\": \"RHEL-08-010541\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must use a separate file system for /var/log.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Migrate the \\\"/var/log\\\" path onto a separate file system.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-32937r567626_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-32937r567626_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:156\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "low", + "description": "{\"VulnDiscussion\":\"The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230294", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230294r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:157", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32938r567629_fix", + "fixtext_fixref": "F-32938r567629_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-010542", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230293r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "low", + "version": "RHEL-08-010541", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:156", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must use a separate file system for the system audit data path.", + "id": "V-230294", + "desc": "The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:157", + "label": "check" + }, + { + "data": "Migrate the system audit data path onto a separate file system.", + "label": "fix" + } + ], + "impact": 0.3, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230294\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230294r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"low\",\n \"version\": {\n \"text\": \"RHEL-08-010542\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must use a separate file system for the system audit data path.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Migrate the system audit data path onto a separate file system.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-32938r567629_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-32938r567629_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:157\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230295", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230295r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:158", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32939r567632_fix", + "fixtext_fixref": "F-32939r567632_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-010543", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230294r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "low", + "version": "RHEL-08-010542", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:157", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "A separate RHEL 8 filesystem must be used for the /tmp directory.", + "id": "V-230295", + "desc": "The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:158", + "label": "check" + }, + { + "data": "Migrate the \"/tmp\" directory onto a separate file system/partition.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230295\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230295r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-010543\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"A separate RHEL 8 filesystem must be used for the /tmp directory.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Migrate the \\\"/tmp\\\" directory onto a separate file system/partition.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-32939r567632_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-32939r567632_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:158\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000770" + ], + "nist": [ + "IA-2 (5)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Even though the communications channel may be encrypted, an additional layer of security is gained by extending the policy of not logging on directly as root. In addition, logging on with a user-specific account provides individual accountability of actions performed on the system.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230296", + "group_title": "SRG-OS-000109-GPOS-00056", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230296r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:159", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32940r567635_fix", + "fixtext_fixref": "F-32940r567635_fix", + "ident": { + "text": "CCI-000770", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-010550", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230295r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-010543", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:158", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must not permit direct logons to the root account using remote access via SSH.", + "id": "V-230296", + "desc": "Even though the communications channel may be encrypted, an additional layer of security is gained by extending the policy of not logging on directly as root. In addition, logging on with a user-specific account provides individual accountability of actions performed on the system.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:159", + "label": "check" + }, + { + "data": "Configure RHEL 8 to stop users from logging on remotely as the \"root\" user via SSH.\n\nEdit the appropriate \"/etc/ssh/sshd_config\" file to uncomment or add the line for the \"PermitRootLogin\" keyword and set its value to \"no\":\n\nPermitRootLogin no\n\nThe SSH daemon must be restarted for the changes to take effect. To restart the SSH daemon, run the following command:\n\n$ sudo systemctl restart sshd.service", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230296\",\n \"title\": {\n \"text\": \"SRG-OS-000109-GPOS-00056\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230296r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-010550\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must not permit direct logons to the root account using remote access via SSH.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Even though the communications channel may be encrypted, an additional layer of security is gained by extending the policy of not logging on directly as root. In addition, logging on with a user-specific account provides individual accountability of actions performed on the system.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000770\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure RHEL 8 to stop users from logging on remotely as the \\\"root\\\" user via SSH.\\n\\nEdit the appropriate \\\"/etc/ssh/sshd_config\\\" file to uncomment or add the line for the \\\"PermitRootLogin\\\" keyword and set its value to \\\"no\\\":\\n\\nPermitRootLogin no\\n\\nThe SSH daemon must be restarted for the changes to take effect. To restart the SSH daemon, run the following command:\\n\\n$ sudo systemctl restart sshd.service\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-32940r567635_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-32940r567635_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:159\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Configuring RHEL 8 to implement organization-wide security implementation guides and security checklists ensures compliance with federal standards and establishes a common security baseline across the DoD that reflects the most restrictive security posture consistent with operational requirements.\\n\\nConfiguration settings are the set of parameters that can be changed in hardware, software, or firmware components of the system that affect the security posture and/or functionality of the system. Security-related parameters are those parameters impacting the security state of the system, including the parameters required to satisfy other security control requirements. Security-related parameters include, for example: registry settings; account, file, directory permission settings; and settings for functions, ports, protocols, services, and remote connections.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230297", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230297r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:160", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32941r567638_fix", + "fixtext_fixref": "F-32941r567638_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-010560", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230296r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-010550", + "weight": "10.000000", + "result": "error", + "ident": { + "text": "CCI-000770", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:159", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The auditd service must be running in RHEL 8.", + "id": "V-230297", + "desc": "Configuring RHEL 8 to implement organization-wide security implementation guides and security checklists ensures compliance with federal standards and establishes a common security baseline across the DoD that reflects the most restrictive security posture consistent with operational requirements.\n\nConfiguration settings are the set of parameters that can be changed in hardware, software, or firmware components of the system that affect the security posture and/or functionality of the system. Security-related parameters are those parameters impacting the security state of the system, including the parameters required to satisfy other security control requirements. Security-related parameters include, for example: registry settings; account, file, directory permission settings; and settings for functions, ports, protocols, services, and remote connections.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:160", + "label": "check" + }, + { + "data": "Start the auditd service, and enable the auditd service with the following commands:\n\n$ sudo systemctl start auditd.service\n\n$ sudo systemctl enable auditd.service", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230297\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230297r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-010560\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The auditd service must be running in RHEL 8.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Configuring RHEL 8 to implement organization-wide security implementation guides and security checklists ensures compliance with federal standards and establishes a common security baseline across the DoD that reflects the most restrictive security posture consistent with operational requirements.\\n\\nConfiguration settings are the set of parameters that can be changed in hardware, software, or firmware components of the system that affect the security posture and/or functionality of the system. Security-related parameters are those parameters impacting the security state of the system, including the parameters required to satisfy other security control requirements. Security-related parameters include, for example: registry settings; account, file, directory permission settings; and settings for functions, ports, protocols, services, and remote connections.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Start the auditd service, and enable the auditd service with the following commands:\\n\\n$ sudo systemctl start auditd.service\\n\\n$ sudo systemctl enable auditd.service\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-32941r567638_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-32941r567638_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:160\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Configuring RHEL 8 to implement organization-wide security implementation guides and security checklists ensures compliance with federal standards and establishes a common security baseline across the DoD that reflects the most restrictive security posture consistent with operational requirements.\\n\\nConfiguration settings are the set of parameters that can be changed in hardware, software, or firmware components of the system that affect the security posture and/or functionality of the system. Security-related parameters are those parameters impacting the security state of the system, including the parameters required to satisfy other security control requirements. Security-related parameters include, for example: registry settings; account, file, directory permission settings; and settings for functions, ports, protocols, services, and remote connections.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230298", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230298r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:161", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32942r567641_fix", + "fixtext_fixref": "F-32942r567641_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-010561", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230297r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-010560", + "weight": "10.000000", + "result": "pass", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:160", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The rsyslog service must be running in RHEL 8.", + "id": "V-230298", + "desc": "Configuring RHEL 8 to implement organization-wide security implementation guides and security checklists ensures compliance with federal standards and establishes a common security baseline across the DoD that reflects the most restrictive security posture consistent with operational requirements.\n\nConfiguration settings are the set of parameters that can be changed in hardware, software, or firmware components of the system that affect the security posture and/or functionality of the system. Security-related parameters are those parameters impacting the security state of the system, including the parameters required to satisfy other security control requirements. Security-related parameters include, for example: registry settings; account, file, directory permission settings; and settings for functions, ports, protocols, services, and remote connections.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:161", + "label": "check" + }, + { + "data": "Start the auditd service, and enable the rsyslog service with the following commands:\n\n$ sudo systemctl start rsyslog.service\n\n$ sudo systemctl enable rsyslog.service", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230298\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230298r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-010561\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The rsyslog service must be running in RHEL 8.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Configuring RHEL 8 to implement organization-wide security implementation guides and security checklists ensures compliance with federal standards and establishes a common security baseline across the DoD that reflects the most restrictive security posture consistent with operational requirements.\\n\\nConfiguration settings are the set of parameters that can be changed in hardware, software, or firmware components of the system that affect the security posture and/or functionality of the system. Security-related parameters are those parameters impacting the security state of the system, including the parameters required to satisfy other security control requirements. Security-related parameters include, for example: registry settings; account, file, directory permission settings; and settings for functions, ports, protocols, services, and remote connections.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Start the auditd service, and enable the rsyslog service with the following commands:\\n\\n$ sudo systemctl start rsyslog.service\\n\\n$ sudo systemctl enable rsyslog.service\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-32942r567641_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-32942r567641_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:161\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"The \\\"nosuid\\\" mount option causes the system not to execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230300", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230300r743959_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:162", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32944r567647_fix", + "fixtext_fixref": "F-32944r567647_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-010571", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230298r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-010561", + "weight": "10.000000", + "result": "pass", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:161", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must prevent files with the setuid and setgid bit set from being executed on the /boot directory.", + "id": "V-230300", + "desc": "The \"nosuid\" mount option causes the system not to execute \"setuid\" and \"setgid\" files with owner privileges. This option must be used for mounting any file system not containing approved \"setuid\" and \"setguid\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:162", + "label": "check" + }, + { + "data": "Configure the \"/etc/fstab\" to use the \"nosuid\" option on the /boot directory.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230300\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230300r743959_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-010571\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must prevent files with the setuid and setgid bit set from being executed on the /boot directory.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>The \\\"nosuid\\\" mount option causes the system not to execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the \\\"/etc/fstab\\\" to use the \\\"nosuid\\\" option on the /boot directory.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-32944r567647_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-32944r567647_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:162\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"The \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access. The only legitimate location for device files is the /dev directory located on the root partition.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230301", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230301r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:163", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32945r567650_fix", + "fixtext_fixref": "F-32945r567650_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-010580", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230300r743959_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-010571", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:162", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must prevent special devices on non-root local partitions.", + "id": "V-230301", + "desc": "The \"nodev\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access. The only legitimate location for device files is the /dev directory located on the root partition.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:163", + "label": "check" + }, + { + "data": "Configure the \"/etc/fstab\" to use the \"nodev\" option on all non-root local partitions.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230301\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230301r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-010580\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must prevent special devices on non-root local partitions.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>The \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access. The only legitimate location for device files is the /dev directory located on the root partition.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the \\\"/etc/fstab\\\" to use the \\\"nodev\\\" option on all non-root local partitions.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-32945r567650_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-32945r567650_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:163\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"The \\\"noexec\\\" mount option causes the system not to execute binary files. This option must be used for mounting any file system not containing approved binary as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230306", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230306r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:165", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32950r567665_fix", + "fixtext_fixref": "F-32950r567665_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-010630", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230301r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-010580", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:163", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must prevent code from being executed on file systems that are imported via Network File System (NFS).", + "id": "V-230306", + "desc": "The \"noexec\" mount option causes the system not to execute binary files. This option must be used for mounting any file system not containing approved binary as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:165", + "label": "check" + }, + { + "data": "Configure the \"/etc/fstab\" to use the \"noexec\" option on file systems that are being imported via NFS.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230306\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230306r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-010630\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must prevent code from being executed on file systems that are imported via Network File System (NFS).\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>The \\\"noexec\\\" mount option causes the system not to execute binary files. This option must be used for mounting any file system not containing approved binary as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the \\\"/etc/fstab\\\" to use the \\\"noexec\\\" option on file systems that are being imported via NFS.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-32950r567665_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-32950r567665_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:165\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"The \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230307", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230307r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:166", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32951r567668_fix", + "fixtext_fixref": "F-32951r567668_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-010640", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230306r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-010630", + "weight": "10.000000", + "result": "pass", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:165", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must prevent special devices on file systems that are imported via Network File System (NFS).", + "id": "V-230307", + "desc": "The \"nodev\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:166", + "label": "check" + }, + { + "data": "Configure the \"/etc/fstab\" to use the \"nodev\" option on file systems that are being imported via NFS.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230307\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230307r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-010640\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must prevent special devices on file systems that are imported via Network File System (NFS).\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>The \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the \\\"/etc/fstab\\\" to use the \\\"nodev\\\" option on file systems that are being imported via NFS.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-32951r567668_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-32951r567668_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:166\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"The \\\"nosuid\\\" mount option causes the system not to execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230308", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230308r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:167", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32952r567671_fix", + "fixtext_fixref": "F-32952r567671_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-010650", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230307r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-010640", + "weight": "10.000000", + "result": "pass", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:166", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must prevent files with the setuid and setgid bit set from being executed on file systems that are imported via Network File System (NFS).", + "id": "V-230308", + "desc": "The \"nosuid\" mount option causes the system not to execute \"setuid\" and \"setgid\" files with owner privileges. This option must be used for mounting any file system not containing approved \"setuid\" and \"setguid\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:167", + "label": "check" + }, + { + "data": "Configure the \"/etc/fstab\" to use the \"nosuid\" option on file systems that are being imported via NFS.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230308\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230308r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-010650\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must prevent files with the setuid and setgid bit set from being executed on file systems that are imported via Network File System (NFS).\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>The \\\"nosuid\\\" mount option causes the system not to execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the \\\"/etc/fstab\\\" to use the \\\"nosuid\\\" option on file systems that are being imported via NFS.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-32952r567671_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-32952r567671_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:167\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\\n/etc/sysctl.d/*.conf\\n/run/sysctl.d/*.conf\\n/usr/local/lib/sysctl.d/*.conf\\n/usr/lib/sysctl.d/*.conf\\n/lib/sysctl.d/*.conf\\n/etc/sysctl.conf\\n\\nBased on the information above, if a configuration file that begins with \\\"99-\\\" is created in the \\\"/etc/sysctl.d/\\\" directory, it will take precedence over any other configuration file on the system.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230311", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230311r792894_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:168", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32955r792893_fix", + "fixtext_fixref": "F-32955r792893_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-010671", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230308r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-010650", + "weight": "10.000000", + "result": "pass", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:167", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must disable the kernel.core_pattern.", + "id": "V-230311", + "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\n/etc/sysctl.d/*.conf\n/run/sysctl.d/*.conf\n/usr/local/lib/sysctl.d/*.conf\n/usr/lib/sysctl.d/*.conf\n/lib/sysctl.d/*.conf\n/etc/sysctl.conf\n\nBased on the information above, if a configuration file that begins with \"99-\" is created in the \"/etc/sysctl.d/\" directory, it will take precedence over any other configuration file on the system.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:168", + "label": "check" + }, + { + "data": "Configure RHEL 8 to disable storing core dumps.\n\nAdd or edit the following line in a system configuration file, which begins with \"99-\", in the \"/etc/sysctl.d/\" directory:\n\nkernel.core_pattern = |/bin/false\n\nThe system configuration files need to be reloaded for the changes to take effect. To reload the contents of the files, run the following command:\n\n$ sudo sysctl --system", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230311\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230311r792894_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-010671\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must disable the kernel.core_pattern.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\\n/etc/sysctl.d/*.conf\\n/run/sysctl.d/*.conf\\n/usr/local/lib/sysctl.d/*.conf\\n/usr/lib/sysctl.d/*.conf\\n/lib/sysctl.d/*.conf\\n/etc/sysctl.conf\\n\\nBased on the information above, if a configuration file that begins with \\\"99-\\\" is created in the \\\"/etc/sysctl.d/\\\" directory, it will take precedence over any other configuration file on the system.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure RHEL 8 to disable storing core dumps.\\n\\nAdd or edit the following line in a system configuration file, which begins with \\\"99-\\\", in the \\\"/etc/sysctl.d/\\\" directory:\\n\\nkernel.core_pattern = |/bin/false\\n\\nThe system configuration files need to be reloaded for the changes to take effect. To reload the contents of the files, run the following command:\\n\\n$ sudo sysctl --system\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-32955r792893_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-32955r792893_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:168\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nA core dump includes a memory image taken at the time the operating system terminates an application. The memory image could contain sensitive data and is generally useful only for developers trying to debug problems.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230313", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230313r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:169", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32957r619861_fix", + "fixtext_fixref": "F-32957r619861_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-010673", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230311r792894_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-010671", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:168", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must disable core dumps for all users.", + "id": "V-230313", + "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nA core dump includes a memory image taken at the time the operating system terminates an application. The memory image could contain sensitive data and is generally useful only for developers trying to debug problems.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:169", + "label": "check" + }, + { + "data": "Configure the operating system to disable core dumps for all users.\n\nAdd the following line to the top of the /etc/security/limits.conf or in a \".conf\" file defined in /etc/security/limits.d/:\n\n* hard core 0", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230313\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230313r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-010673\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must disable core dumps for all users.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nA core dump includes a memory image taken at the time the operating system terminates an application. The memory image could contain sensitive data and is generally useful only for developers trying to debug problems.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the operating system to disable core dumps for all users.\\n\\nAdd the following line to the top of the /etc/security/limits.conf or in a \\\".conf\\\" file defined in /etc/security/limits.d/:\\n\\n* hard core 0\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-32957r619861_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-32957r619861_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:169\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nA core dump includes a memory image taken at the time the operating system terminates an application. The memory image could contain sensitive data and is generally useful only for developers trying to debug problems.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230314", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230314r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:170", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32958r567689_fix", + "fixtext_fixref": "F-32958r567689_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-010674", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230313r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-010673", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:169", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must disable storing core dumps.", + "id": "V-230314", + "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nA core dump includes a memory image taken at the time the operating system terminates an application. The memory image could contain sensitive data and is generally useful only for developers trying to debug problems.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:170", + "label": "check" + }, + { + "data": "Configure the operating system to disable storing core dumps for all users.\n\nAdd or modify the following line in /etc/systemd/coredump.conf:\n\nStorage=none", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230314\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230314r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-010674\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must disable storing core dumps.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nA core dump includes a memory image taken at the time the operating system terminates an application. The memory image could contain sensitive data and is generally useful only for developers trying to debug problems.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the operating system to disable storing core dumps for all users.\\n\\nAdd or modify the following line in /etc/systemd/coredump.conf:\\n\\nStorage=none\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-32958r567689_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-32958r567689_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:170\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nA core dump includes a memory image taken at the time the operating system terminates an application. The memory image could contain sensitive data and is generally useful only for developers trying to debug problems.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230315", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230315r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:171", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32959r567692_fix", + "fixtext_fixref": "F-32959r567692_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-010675", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230314r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-010674", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:170", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must disable core dump backtraces.", + "id": "V-230315", + "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nA core dump includes a memory image taken at the time the operating system terminates an application. The memory image could contain sensitive data and is generally useful only for developers trying to debug problems.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:171", + "label": "check" + }, + { + "data": "Configure the operating system to disable core dump backtraces.\n\nAdd or modify the following line in /etc/systemd/coredump.conf:\n\nProcessSizeMax=0", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230315\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230315r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-010675\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must disable core dump backtraces.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nA core dump includes a memory image taken at the time the operating system terminates an application. The memory image could contain sensitive data and is generally useful only for developers trying to debug problems.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the operating system to disable core dump backtraces.\\n\\nAdd or modify the following line in /etc/systemd/coredump.conf:\\n\\nProcessSizeMax=0\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-32959r567692_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-32959r567692_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:171\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"If local interactive users are not assigned a valid home directory, there is no place for the storage and control of files they should own.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230324", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230324r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:177", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32968r567719_fix", + "fixtext_fixref": "F-32968r567719_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-010760", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230315r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-010675", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:171", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "All RHEL 8 local interactive user accounts must be assigned a home directory upon creation.", + "id": "V-230324", + "desc": "If local interactive users are not assigned a valid home directory, there is no place for the storage and control of files they should own.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:177", + "label": "check" + }, + { + "data": "Configure RHEL 8 to assign home directories to all new local interactive users by setting the \"CREATE_HOME\" parameter in \"/etc/login.defs\" to \"yes\" as follows.\n\nCREATE_HOME yes", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230324\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230324r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-010760\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"All RHEL 8 local interactive user accounts must be assigned a home directory upon creation.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>If local interactive users are not assigned a valid home directory, there is no place for the storage and control of files they should own.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure RHEL 8 to assign home directories to all new local interactive users by setting the \\\"CREATE_HOME\\\" parameter in \\\"/etc/login.defs\\\" to \\\"yes\\\" as follows.\\n\\nCREATE_HOME yes\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-32968r567719_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-32968r567719_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:177\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"SSH environment options potentially allow users to bypass access restriction in some configurations.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230330", + "group_title": "SRG-OS-000480-GPOS-00229", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230330r646870_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:179", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32974r567737_fix", + "fixtext_fixref": "F-32974r567737_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-010830", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230324r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-010760", + "weight": "10.000000", + "result": "pass", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:177", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must not allow users to override SSH environment variables.", + "id": "V-230330", + "desc": "SSH environment options potentially allow users to bypass access restriction in some configurations.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:179", + "label": "check" + }, + { + "data": "Configure RHEL 8 to allow the SSH daemon to not allow unattended or automatic logon to the system.\n\nAdd or edit the following line in the \"/etc/ssh/sshd_config\" file:\n\nPermitUserEnvironment no\n\nThe SSH daemon must be restarted for the changes to take effect. To restart the SSH daemon, run the following command:\n\n$ sudo systemctl restart sshd.service", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230330\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00229\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230330r646870_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-010830\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must not allow users to override SSH environment variables.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>SSH environment options potentially allow users to bypass access restriction in some configurations.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure RHEL 8 to allow the SSH daemon to not allow unattended or automatic logon to the system.\\n\\nAdd or edit the following line in the \\\"/etc/ssh/sshd_config\\\" file:\\n\\nPermitUserEnvironment no\\n\\nThe SSH daemon must be restarted for the changes to take effect. To restart the SSH daemon, run the following command:\\n\\n$ sudo systemctl restart sshd.service\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-32974r567737_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-32974r567737_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:179\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000044" + ], + "nist": [ + "AC-7 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\\n\\nRHEL 8 can utilize the \\\"pam_faillock.so\\\" for this purpose. Note that manual changes to the listed files may be overwritten by the \\\"authselect\\\" program.\\n\\nFrom \\\"Pam_Faillock\\\" man pages: Note that the default directory that \\\"pam_faillock\\\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \\\"dir\\\" option.\\n\\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230332", + "group_title": "SRG-OS-000021-GPOS-00005", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230332r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:180", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32976r567743_fix", + "fixtext_fixref": "F-32976r567743_fix", + "ident": { + "text": "CCI-000044", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-020010", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230330r646870_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-010830", + "weight": "10.000000", + "result": "error", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:179", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must automatically lock an account when three unsuccessful logon attempts occur.", + "id": "V-230332", + "desc": "By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\n\nRHEL 8 can utilize the \"pam_faillock.so\" for this purpose. Note that manual changes to the listed files may be overwritten by the \"authselect\" program.\n\nFrom \"Pam_Faillock\" man pages: Note that the default directory that \"pam_faillock\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \"dir\" option.\n\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:180", + "label": "check" + }, + { + "data": "Configure the operating system to lock an account when three unsuccessful logon attempts occur.\n\nAdd/Modify the appropriate sections of the \"/etc/pam.d/system-auth\" and \"/etc/pam.d/password-auth\" files to match the following lines:\n\nauth required pam_faillock.so preauth dir=/var/log/faillock silent audit deny=3 even_deny_root fail_interval=900 unlock_time=0\nauth required pam_faillock.so authfail dir=/var/log/faillock unlock_time=0\naccount required pam_faillock.so\n\nThe \"sssd\" service must be restarted for the changes to take effect. To restart the \"sssd\" service, run the following command:\n\n$ sudo systemctl restart sssd.service", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230332\",\n \"title\": {\n \"text\": \"SRG-OS-000021-GPOS-00005\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230332r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-020010\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must automatically lock an account when three unsuccessful logon attempts occur.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\\n\\nRHEL 8 can utilize the \\\"pam_faillock.so\\\" for this purpose. Note that manual changes to the listed files may be overwritten by the \\\"authselect\\\" program.\\n\\nFrom \\\"Pam_Faillock\\\" man pages: Note that the default directory that \\\"pam_faillock\\\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \\\"dir\\\" option.\\n\\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000044\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the operating system to lock an account when three unsuccessful logon attempts occur.\\n\\nAdd/Modify the appropriate sections of the \\\"/etc/pam.d/system-auth\\\" and \\\"/etc/pam.d/password-auth\\\" files to match the following lines:\\n\\nauth required pam_faillock.so preauth dir=/var/log/faillock silent audit deny=3 even_deny_root fail_interval=900 unlock_time=0\\nauth required pam_faillock.so authfail dir=/var/log/faillock unlock_time=0\\naccount required pam_faillock.so\\n\\nThe \\\"sssd\\\" service must be restarted for the changes to take effect. To restart the \\\"sssd\\\" service, run the following command:\\n\\n$ sudo systemctl restart sssd.service\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-32976r567743_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-32976r567743_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:180\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000044" + ], + "nist": [ + "AC-7 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\\n\\nIn RHEL 8.2 the \\\"/etc/security/faillock.conf\\\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \\\"local_users_only\\\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\\n\\nFrom \\\"faillock.conf\\\" man pages: Note that the default directory that \\\"pam_faillock\\\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \\\"dir\\\" option.\\n\\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230333", + "group_title": "SRG-OS-000021-GPOS-00005", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230333r743966_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:181", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32977r743965_fix", + "fixtext_fixref": "F-32977r743965_fix", + "ident": { + "text": "CCI-000044", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-020011", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230332r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-020010", + "weight": "10.000000", + "result": "pass", + "ident": { + "text": "CCI-000044", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:180", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must automatically lock an account when three unsuccessful logon attempts occur.", + "id": "V-230333", + "desc": "By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\n\nIn RHEL 8.2 the \"/etc/security/faillock.conf\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \"local_users_only\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\n\nFrom \"faillock.conf\" man pages: Note that the default directory that \"pam_faillock\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \"dir\" option.\n\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:181", + "label": "check" + }, + { + "data": "Configure the operating system to lock an account when three unsuccessful logon attempts occur.\n\nAdd/Modify the \"/etc/security/faillock.conf\" file to match the following line:\n\ndeny = 3", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230333\",\n \"title\": {\n \"text\": \"SRG-OS-000021-GPOS-00005\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230333r743966_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-020011\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must automatically lock an account when three unsuccessful logon attempts occur.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\\n\\nIn RHEL 8.2 the \\\"/etc/security/faillock.conf\\\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \\\"local_users_only\\\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\\n\\nFrom \\\"faillock.conf\\\" man pages: Note that the default directory that \\\"pam_faillock\\\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \\\"dir\\\" option.\\n\\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000044\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the operating system to lock an account when three unsuccessful logon attempts occur.\\n\\nAdd/Modify the \\\"/etc/security/faillock.conf\\\" file to match the following line:\\n\\ndeny = 3\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-32977r743965_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-32977r743965_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:181\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000044" + ], + "nist": [ + "AC-7 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\\n\\nRHEL 8 can utilize the \\\"pam_faillock.so\\\" for this purpose. Note that manual changes to the listed files may be overwritten by the \\\"authselect\\\" program.\\n\\nFrom \\\"Pam_Faillock\\\" man pages: Note that the default directory that \\\"pam_faillock\\\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \\\"dir\\\" option.\\n\\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230334", + "group_title": "SRG-OS-000021-GPOS-00005", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230334r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:182", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32978r567749_fix", + "fixtext_fixref": "F-32978r567749_fix", + "ident": { + "text": "CCI-000044", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-020012", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230333r743966_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-020011", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000044", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:181", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must automatically lock an account when three unsuccessful logon attempts occur during a 15-minute time period.", + "id": "V-230334", + "desc": "By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\n\nRHEL 8 can utilize the \"pam_faillock.so\" for this purpose. Note that manual changes to the listed files may be overwritten by the \"authselect\" program.\n\nFrom \"Pam_Faillock\" man pages: Note that the default directory that \"pam_faillock\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \"dir\" option.\n\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:182", + "label": "check" + }, + { + "data": "Configure the operating system to lock an account when three unsuccessful logon attempts occur in 15 minutes.\n\nAdd/Modify the appropriate sections of the \"/etc/pam.d/system-auth\" and \"/etc/pam.d/password-auth\" files to match the following lines:\n\nauth required pam_faillock.so preauth dir=/var/log/faillock silent audit deny=3 even_deny_root fail_interval=900 unlock_time=0\nauth required pam_faillock.so authfail dir=/var/log/faillock unlock_time=0\naccount required pam_faillock.so\n\nThe \"sssd\" service must be restarted for the changes to take effect. To restart the \"sssd\" service, run the following command:\n\n$ sudo systemctl restart sssd.service", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230334\",\n \"title\": {\n \"text\": \"SRG-OS-000021-GPOS-00005\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230334r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-020012\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must automatically lock an account when three unsuccessful logon attempts occur during a 15-minute time period.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\\n\\nRHEL 8 can utilize the \\\"pam_faillock.so\\\" for this purpose. Note that manual changes to the listed files may be overwritten by the \\\"authselect\\\" program.\\n\\nFrom \\\"Pam_Faillock\\\" man pages: Note that the default directory that \\\"pam_faillock\\\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \\\"dir\\\" option.\\n\\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000044\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the operating system to lock an account when three unsuccessful logon attempts occur in 15 minutes.\\n\\nAdd/Modify the appropriate sections of the \\\"/etc/pam.d/system-auth\\\" and \\\"/etc/pam.d/password-auth\\\" files to match the following lines:\\n\\nauth required pam_faillock.so preauth dir=/var/log/faillock silent audit deny=3 even_deny_root fail_interval=900 unlock_time=0\\nauth required pam_faillock.so authfail dir=/var/log/faillock unlock_time=0\\naccount required pam_faillock.so\\n\\nThe \\\"sssd\\\" service must be restarted for the changes to take effect. To restart the \\\"sssd\\\" service, run the following command:\\n\\n$ sudo systemctl restart sssd.service\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-32978r567749_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-32978r567749_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:182\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000044" + ], + "nist": [ + "AC-7 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\\n\\nIn RHEL 8.2 the \\\"/etc/security/faillock.conf\\\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \\\"local_users_only\\\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\\n\\nFrom \\\"faillock.conf\\\" man pages: Note that the default directory that \\\"pam_faillock\\\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \\\"dir\\\" option.\\n\\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230335", + "group_title": "SRG-OS-000021-GPOS-00005", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230335r743969_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:183", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32979r743968_fix", + "fixtext_fixref": "F-32979r743968_fix", + "ident": { + "text": "CCI-000044", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-020013", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230334r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-020012", + "weight": "10.000000", + "result": "pass", + "ident": { + "text": "CCI-000044", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:182", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must automatically lock an account when three unsuccessful logon attempts occur during a 15-minute time period.", + "id": "V-230335", + "desc": "By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\n\nIn RHEL 8.2 the \"/etc/security/faillock.conf\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \"local_users_only\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\n\nFrom \"faillock.conf\" man pages: Note that the default directory that \"pam_faillock\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \"dir\" option.\n\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:183", + "label": "check" + }, + { + "data": "Configure the operating system to lock an account when three unsuccessful logon attempts occur in 15 minutes.\n\nAdd/Modify the \"/etc/security/faillock.conf\" file to match the following line:\n\nfail_interval = 900", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230335\",\n \"title\": {\n \"text\": \"SRG-OS-000021-GPOS-00005\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230335r743969_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-020013\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must automatically lock an account when three unsuccessful logon attempts occur during a 15-minute time period.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\\n\\nIn RHEL 8.2 the \\\"/etc/security/faillock.conf\\\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \\\"local_users_only\\\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\\n\\nFrom \\\"faillock.conf\\\" man pages: Note that the default directory that \\\"pam_faillock\\\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \\\"dir\\\" option.\\n\\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000044\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the operating system to lock an account when three unsuccessful logon attempts occur in 15 minutes.\\n\\nAdd/Modify the \\\"/etc/security/faillock.conf\\\" file to match the following line:\\n\\nfail_interval = 900\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-32979r743968_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-32979r743968_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:183\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000044" + ], + "nist": [ + "AC-7 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\\n\\nRHEL 8 can utilize the \\\"pam_faillock.so\\\" for this purpose. Note that manual changes to the listed files may be overwritten by the \\\"authselect\\\" program.\\n\\nFrom \\\"Pam_Faillock\\\" man pages: Note that the default directory that \\\"pam_faillock\\\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \\\"dir\\\" option.\\n\\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230336", + "group_title": "SRG-OS-000021-GPOS-00005", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230336r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:184", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32980r567755_fix", + "fixtext_fixref": "F-32980r567755_fix", + "ident": { + "text": "CCI-000044", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-020014", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230335r743969_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-020013", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000044", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:183", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must automatically lock an account until the locked account is released by an administrator when three unsuccessful logon attempts occur during a 15-minute time period.", + "id": "V-230336", + "desc": "By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\n\nRHEL 8 can utilize the \"pam_faillock.so\" for this purpose. Note that manual changes to the listed files may be overwritten by the \"authselect\" program.\n\nFrom \"Pam_Faillock\" man pages: Note that the default directory that \"pam_faillock\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \"dir\" option.\n\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:184", + "label": "check" + }, + { + "data": "Configure the operating system to lock an account until released by an administrator when three unsuccessful logon attempts occur in 15 minutes.\n\nAdd/Modify the appropriate sections of the \"/etc/pam.d/system-auth\" and \"/etc/pam.d/password-auth\" files to match the following lines:\n\nauth required pam_faillock.so preauth dir=/var/log/faillock silent audit deny=3 even_deny_root fail_interval=900 unlock_time=0\nauth required pam_faillock.so authfail dir=/var/log/faillock unlock_time=0\naccount required pam_faillock.so\n\nThe \"sssd\" service must be restarted for the changes to take effect. To restart the \"sssd\" service, run the following command:\n\n$ sudo systemctl restart sssd.service", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230336\",\n \"title\": {\n \"text\": \"SRG-OS-000021-GPOS-00005\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230336r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-020014\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must automatically lock an account until the locked account is released by an administrator when three unsuccessful logon attempts occur during a 15-minute time period.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\\n\\nRHEL 8 can utilize the \\\"pam_faillock.so\\\" for this purpose. Note that manual changes to the listed files may be overwritten by the \\\"authselect\\\" program.\\n\\nFrom \\\"Pam_Faillock\\\" man pages: Note that the default directory that \\\"pam_faillock\\\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \\\"dir\\\" option.\\n\\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000044\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the operating system to lock an account until released by an administrator when three unsuccessful logon attempts occur in 15 minutes.\\n\\nAdd/Modify the appropriate sections of the \\\"/etc/pam.d/system-auth\\\" and \\\"/etc/pam.d/password-auth\\\" files to match the following lines:\\n\\nauth required pam_faillock.so preauth dir=/var/log/faillock silent audit deny=3 even_deny_root fail_interval=900 unlock_time=0\\nauth required pam_faillock.so authfail dir=/var/log/faillock unlock_time=0\\naccount required pam_faillock.so\\n\\nThe \\\"sssd\\\" service must be restarted for the changes to take effect. To restart the \\\"sssd\\\" service, run the following command:\\n\\n$ sudo systemctl restart sssd.service\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-32980r567755_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-32980r567755_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:184\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000044" + ], + "nist": [ + "AC-7 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\\n\\nIn RHEL 8.2 the \\\"/etc/security/faillock.conf\\\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \\\"local_users_only\\\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\\n\\nFrom \\\"faillock.conf\\\" man pages: Note that the default directory that \\\"pam_faillock\\\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \\\"dir\\\" option.\\n\\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230337", + "group_title": "SRG-OS-000021-GPOS-00005", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230337r743972_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:185", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32981r743971_fix", + "fixtext_fixref": "F-32981r743971_fix", + "ident": { + "text": "CCI-000044", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-020015", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230336r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-020014", + "weight": "10.000000", + "result": "pass", + "ident": { + "text": "CCI-000044", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:184", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must automatically lock an account until the locked account is released by an administrator when three unsuccessful logon attempts occur during a 15-minute time period.", + "id": "V-230337", + "desc": "By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\n\nIn RHEL 8.2 the \"/etc/security/faillock.conf\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \"local_users_only\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\n\nFrom \"faillock.conf\" man pages: Note that the default directory that \"pam_faillock\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \"dir\" option.\n\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:185", + "label": "check" + }, + { + "data": "Configure the operating system to lock an account until released by an administrator when three unsuccessful logon attempts occur in 15 minutes.\n\nAdd/Modify the \"/etc/security/faillock.conf\" file to match the following line:\n\nunlock_time = 0", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230337\",\n \"title\": {\n \"text\": \"SRG-OS-000021-GPOS-00005\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230337r743972_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-020015\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must automatically lock an account until the locked account is released by an administrator when three unsuccessful logon attempts occur during a 15-minute time period.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\\n\\nIn RHEL 8.2 the \\\"/etc/security/faillock.conf\\\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \\\"local_users_only\\\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\\n\\nFrom \\\"faillock.conf\\\" man pages: Note that the default directory that \\\"pam_faillock\\\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \\\"dir\\\" option.\\n\\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000044\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the operating system to lock an account until released by an administrator when three unsuccessful logon attempts occur in 15 minutes.\\n\\nAdd/Modify the \\\"/etc/security/faillock.conf\\\" file to match the following line:\\n\\nunlock_time = 0\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-32981r743971_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-32981r743971_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:185\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000044" + ], + "nist": [ + "AC-7 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\\n\\nRHEL 8 can utilize the \\\"pam_faillock.so\\\" for this purpose. Note that manual changes to the listed files may be overwritten by the \\\"authselect\\\" program.\\n\\nFrom \\\"Pam_Faillock\\\" man pages: Note that the default directory that \\\"pam_faillock\\\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \\\"dir\\\" option.\\n\\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230340", + "group_title": "SRG-OS-000021-GPOS-00005", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230340r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:186", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32984r567767_fix", + "fixtext_fixref": "F-32984r567767_fix", + "ident": { + "text": "CCI-000044", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-020018", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230337r743972_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-020015", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000044", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:185", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must prevent system messages from being presented when three unsuccessful logon attempts occur.", + "id": "V-230340", + "desc": "By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\n\nRHEL 8 can utilize the \"pam_faillock.so\" for this purpose. Note that manual changes to the listed files may be overwritten by the \"authselect\" program.\n\nFrom \"Pam_Faillock\" man pages: Note that the default directory that \"pam_faillock\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \"dir\" option.\n\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:186", + "label": "check" + }, + { + "data": "Configure the operating system to prevent informative messages from being presented at logon attempts.\n\nAdd/Modify the appropriate sections of the \"/etc/pam.d/system-auth\" and \"/etc/pam.d/password-auth\" files to match the following lines:\n\nauth required pam_faillock.so preauth dir=/var/log/faillock silent audit deny=3 even_deny_root fail_interval=900 unlock_time=0\nauth required pam_faillock.so authfail dir=/var/log/faillock unlock_time=0\naccount required pam_faillock.so\n\nThe \"sssd\" service must be restarted for the changes to take effect. To restart the \"sssd\" service, run the following command:\n\n$ sudo systemctl restart sssd.service", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230340\",\n \"title\": {\n \"text\": \"SRG-OS-000021-GPOS-00005\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230340r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-020018\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must prevent system messages from being presented when three unsuccessful logon attempts occur.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\\n\\nRHEL 8 can utilize the \\\"pam_faillock.so\\\" for this purpose. Note that manual changes to the listed files may be overwritten by the \\\"authselect\\\" program.\\n\\nFrom \\\"Pam_Faillock\\\" man pages: Note that the default directory that \\\"pam_faillock\\\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \\\"dir\\\" option.\\n\\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000044\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the operating system to prevent informative messages from being presented at logon attempts.\\n\\nAdd/Modify the appropriate sections of the \\\"/etc/pam.d/system-auth\\\" and \\\"/etc/pam.d/password-auth\\\" files to match the following lines:\\n\\nauth required pam_faillock.so preauth dir=/var/log/faillock silent audit deny=3 even_deny_root fail_interval=900 unlock_time=0\\nauth required pam_faillock.so authfail dir=/var/log/faillock unlock_time=0\\naccount required pam_faillock.so\\n\\nThe \\\"sssd\\\" service must be restarted for the changes to take effect. To restart the \\\"sssd\\\" service, run the following command:\\n\\n$ sudo systemctl restart sssd.service\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-32984r567767_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-32984r567767_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:186\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000044" + ], + "nist": [ + "AC-7 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\\n\\nIn RHEL 8.2 the \\\"/etc/security/faillock.conf\\\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \\\"local_users_only\\\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\\n\\nFrom \\\"faillock.conf\\\" man pages: Note that the default directory that \\\"pam_faillock\\\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \\\"dir\\\" option.\\n\\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230341", + "group_title": "SRG-OS-000021-GPOS-00005", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230341r743978_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:187", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32985r743977_fix", + "fixtext_fixref": "F-32985r743977_fix", + "ident": { + "text": "CCI-000044", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-020019", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230340r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-020018", + "weight": "10.000000", + "result": "pass", + "ident": { + "text": "CCI-000044", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:186", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must prevent system messages from being presented when three unsuccessful logon attempts occur.", + "id": "V-230341", + "desc": "By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\n\nIn RHEL 8.2 the \"/etc/security/faillock.conf\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \"local_users_only\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\n\nFrom \"faillock.conf\" man pages: Note that the default directory that \"pam_faillock\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \"dir\" option.\n\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:187", + "label": "check" + }, + { + "data": "Configure the operating system to prevent informative messages from being presented at logon attempts.\n\nAdd/Modify the \"/etc/security/faillock.conf\" file to match the following line:\n\nsilent", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230341\",\n \"title\": {\n \"text\": \"SRG-OS-000021-GPOS-00005\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230341r743978_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-020019\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must prevent system messages from being presented when three unsuccessful logon attempts occur.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\\n\\nIn RHEL 8.2 the \\\"/etc/security/faillock.conf\\\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \\\"local_users_only\\\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\\n\\nFrom \\\"faillock.conf\\\" man pages: Note that the default directory that \\\"pam_faillock\\\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \\\"dir\\\" option.\\n\\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000044\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the operating system to prevent informative messages from being presented at logon attempts.\\n\\nAdd/Modify the \\\"/etc/security/faillock.conf\\\" file to match the following line:\\n\\nsilent\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-32985r743977_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-32985r743977_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:187\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000044" + ], + "nist": [ + "AC-7 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\\n\\nRHEL 8 can utilize the \\\"pam_faillock.so\\\" for this purpose. Note that manual changes to the listed files may be overwritten by the \\\"authselect\\\" program.\\n\\nFrom \\\"Pam_Faillock\\\" man pages: Note that the default directory that \\\"pam_faillock\\\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \\\"dir\\\" option.\\n\\nIn RHEL 8.2 the \\\"/etc/security/faillock.conf\\\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \\\"local_users_only\\\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\\n\\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230342", + "group_title": "SRG-OS-000021-GPOS-00005", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230342r646872_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:188", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32986r567773_fix", + "fixtext_fixref": "F-32986r567773_fix", + "ident": { + "text": "CCI-000044", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-020020", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230341r743978_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-020019", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000044", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:187", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must log user name information when unsuccessful logon attempts occur.", + "id": "V-230342", + "desc": "By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\n\nRHEL 8 can utilize the \"pam_faillock.so\" for this purpose. Note that manual changes to the listed files may be overwritten by the \"authselect\" program.\n\nFrom \"Pam_Faillock\" man pages: Note that the default directory that \"pam_faillock\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \"dir\" option.\n\nIn RHEL 8.2 the \"/etc/security/faillock.conf\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \"local_users_only\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\n\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:188", + "label": "check" + }, + { + "data": "Configure the operating system to log user name information when unsuccessful logon attempts occur.\n\nAdd/Modify the appropriate sections of the \"/etc/pam.d/system-auth\" and \"/etc/pam.d/password-auth\" files to match the following lines:\n\nauth required pam_faillock.so preauth dir=/var/log/faillock silent audit deny=3 even_deny_root fail_interval=900 unlock_time=0\nauth required pam_faillock.so authfail dir=/var/log/faillock unlock_time=0\naccount required pam_faillock.so\n\nThe \"sssd\" service must be restarted for the changes to take effect. To restart the \"sssd\" service, run the following command:\n\n$ sudo systemctl restart sssd.service", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230342\",\n \"title\": {\n \"text\": \"SRG-OS-000021-GPOS-00005\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230342r646872_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-020020\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must log user name information when unsuccessful logon attempts occur.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\\n\\nRHEL 8 can utilize the \\\"pam_faillock.so\\\" for this purpose. Note that manual changes to the listed files may be overwritten by the \\\"authselect\\\" program.\\n\\nFrom \\\"Pam_Faillock\\\" man pages: Note that the default directory that \\\"pam_faillock\\\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \\\"dir\\\" option.\\n\\nIn RHEL 8.2 the \\\"/etc/security/faillock.conf\\\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \\\"local_users_only\\\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\\n\\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000044\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the operating system to log user name information when unsuccessful logon attempts occur.\\n\\nAdd/Modify the appropriate sections of the \\\"/etc/pam.d/system-auth\\\" and \\\"/etc/pam.d/password-auth\\\" files to match the following lines:\\n\\nauth required pam_faillock.so preauth dir=/var/log/faillock silent audit deny=3 even_deny_root fail_interval=900 unlock_time=0\\nauth required pam_faillock.so authfail dir=/var/log/faillock unlock_time=0\\naccount required pam_faillock.so\\n\\nThe \\\"sssd\\\" service must be restarted for the changes to take effect. To restart the \\\"sssd\\\" service, run the following command:\\n\\n$ sudo systemctl restart sssd.service\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-32986r567773_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-32986r567773_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:188\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000044" + ], + "nist": [ + "AC-7 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\\n\\nIn RHEL 8.2 the \\\"/etc/security/faillock.conf\\\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \\\"local_users_only\\\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\\n\\nFrom \\\"faillock.conf\\\" man pages: Note that the default directory that \\\"pam_faillock\\\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \\\"dir\\\" option.\\n\\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230343", + "group_title": "SRG-OS-000021-GPOS-00005", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230343r743981_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:189", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32987r743980_fix", + "fixtext_fixref": "F-32987r743980_fix", + "ident": { + "text": "CCI-000044", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-020021", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230342r646872_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-020020", + "weight": "10.000000", + "result": "pass", + "ident": { + "text": "CCI-000044", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:188", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must log user name information when unsuccessful logon attempts occur.", + "id": "V-230343", + "desc": "By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\n\nIn RHEL 8.2 the \"/etc/security/faillock.conf\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \"local_users_only\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\n\nFrom \"faillock.conf\" man pages: Note that the default directory that \"pam_faillock\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \"dir\" option.\n\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:189", + "label": "check" + }, + { + "data": "Configure the operating system to log user name information when unsuccessful logon attempts occur.\n\nAdd/Modify the \"/etc/security/faillock.conf\" file to match the following line:\n\naudit", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230343\",\n \"title\": {\n \"text\": \"SRG-OS-000021-GPOS-00005\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230343r743981_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-020021\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must log user name information when unsuccessful logon attempts occur.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\\n\\nIn RHEL 8.2 the \\\"/etc/security/faillock.conf\\\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \\\"local_users_only\\\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\\n\\nFrom \\\"faillock.conf\\\" man pages: Note that the default directory that \\\"pam_faillock\\\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \\\"dir\\\" option.\\n\\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000044\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the operating system to log user name information when unsuccessful logon attempts occur.\\n\\nAdd/Modify the \\\"/etc/security/faillock.conf\\\" file to match the following line:\\n\\naudit\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-32987r743980_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-32987r743980_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:189\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000044" + ], + "nist": [ + "AC-7 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\\n\\nRHEL 8 can utilize the \\\"pam_faillock.so\\\" for this purpose. Note that manual changes to the listed files may be overwritten by the \\\"authselect\\\" program.\\n\\nFrom \\\"Pam_Faillock\\\" man pages: Note that the default directory that \\\"pam_faillock\\\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \\\"dir\\\" option.\\n\\nIn RHEL 8.2 the \\\"/etc/security/faillock.conf\\\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \\\"local_users_only\\\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\\n\\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230344", + "group_title": "SRG-OS-000021-GPOS-00005", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230344r646874_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:190", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32988r567779_fix", + "fixtext_fixref": "F-32988r567779_fix", + "ident": { + "text": "CCI-000044", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-020022", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230343r743981_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-020021", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000044", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:189", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must include root when automatically locking an account until the locked account is released by an administrator when three unsuccessful logon attempts occur during a 15-minute time period.", + "id": "V-230344", + "desc": "By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\n\nRHEL 8 can utilize the \"pam_faillock.so\" for this purpose. Note that manual changes to the listed files may be overwritten by the \"authselect\" program.\n\nFrom \"Pam_Faillock\" man pages: Note that the default directory that \"pam_faillock\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \"dir\" option.\n\nIn RHEL 8.2 the \"/etc/security/faillock.conf\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \"local_users_only\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\n\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:190", + "label": "check" + }, + { + "data": "Configure the operating system to include root when locking an account after three unsuccessful logon attempts occur in 15 minutes.\n\nAdd/Modify the appropriate sections of the \"/etc/pam.d/system-auth\" and \"/etc/pam.d/password-auth\" files to match the following lines:\n\nauth required pam_faillock.so preauth dir=/var/log/faillock silent audit deny=3 even_deny_root fail_interval=900 unlock_time=0\nauth required pam_faillock.so authfail dir=/var/log/faillock unlock_time=0\naccount required pam_faillock.so\n\nThe \"sssd\" service must be restarted for the changes to take effect. To restart the \"sssd\" service, run the following command:\n\n$ sudo systemctl restart sssd.service", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230344\",\n \"title\": {\n \"text\": \"SRG-OS-000021-GPOS-00005\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230344r646874_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-020022\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must include root when automatically locking an account until the locked account is released by an administrator when three unsuccessful logon attempts occur during a 15-minute time period.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\\n\\nRHEL 8 can utilize the \\\"pam_faillock.so\\\" for this purpose. Note that manual changes to the listed files may be overwritten by the \\\"authselect\\\" program.\\n\\nFrom \\\"Pam_Faillock\\\" man pages: Note that the default directory that \\\"pam_faillock\\\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \\\"dir\\\" option.\\n\\nIn RHEL 8.2 the \\\"/etc/security/faillock.conf\\\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \\\"local_users_only\\\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\\n\\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000044\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the operating system to include root when locking an account after three unsuccessful logon attempts occur in 15 minutes.\\n\\nAdd/Modify the appropriate sections of the \\\"/etc/pam.d/system-auth\\\" and \\\"/etc/pam.d/password-auth\\\" files to match the following lines:\\n\\nauth required pam_faillock.so preauth dir=/var/log/faillock silent audit deny=3 even_deny_root fail_interval=900 unlock_time=0\\nauth required pam_faillock.so authfail dir=/var/log/faillock unlock_time=0\\naccount required pam_faillock.so\\n\\nThe \\\"sssd\\\" service must be restarted for the changes to take effect. To restart the \\\"sssd\\\" service, run the following command:\\n\\n$ sudo systemctl restart sssd.service\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-32988r567779_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-32988r567779_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:190\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000044" + ], + "nist": [ + "AC-7 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\\n\\nIn RHEL 8.2 the \\\"/etc/security/faillock.conf\\\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \\\"local_users_only\\\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\\n\\nFrom \\\"faillock.conf\\\" man pages: Note that the default directory that \\\"pam_faillock\\\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \\\"dir\\\" option.\\n\\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230345", + "group_title": "SRG-OS-000021-GPOS-00005", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230345r743984_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:191", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32989r743983_fix", + "fixtext_fixref": "F-32989r743983_fix", + "ident": { + "text": "CCI-000044", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-020023", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230344r646874_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-020022", + "weight": "10.000000", + "result": "pass", + "ident": { + "text": "CCI-000044", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:190", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must include root when automatically locking an account until the locked account is released by an administrator when three unsuccessful logon attempts occur during a 15-minute time period.", + "id": "V-230345", + "desc": "By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\n\nIn RHEL 8.2 the \"/etc/security/faillock.conf\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \"local_users_only\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\n\nFrom \"faillock.conf\" man pages: Note that the default directory that \"pam_faillock\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \"dir\" option.\n\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:191", + "label": "check" + }, + { + "data": "Configure the operating system to include root when locking an account after three unsuccessful logon attempts occur in 15 minutes.\n\nAdd/Modify the \"/etc/security/faillock.conf\" file to match the following line:\n\neven_deny_root", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230345\",\n \"title\": {\n \"text\": \"SRG-OS-000021-GPOS-00005\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230345r743984_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-020023\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must include root when automatically locking an account until the locked account is released by an administrator when three unsuccessful logon attempts occur during a 15-minute time period.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\\n\\nIn RHEL 8.2 the \\\"/etc/security/faillock.conf\\\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \\\"local_users_only\\\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\\n\\nFrom \\\"faillock.conf\\\" man pages: Note that the default directory that \\\"pam_faillock\\\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \\\"dir\\\" option.\\n\\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000044\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the operating system to include root when locking an account after three unsuccessful logon attempts occur in 15 minutes.\\n\\nAdd/Modify the \\\"/etc/security/faillock.conf\\\" file to match the following line:\\n\\neven_deny_root\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-32989r743983_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-32989r743983_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:191\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000054" + ], + "nist": [ + "AC-10" + ], + "severity": "low", + "description": "{\"VulnDiscussion\":\"Operating system management includes the ability to control the number of users and user sessions that utilize an operating system. Limiting the number of allowed users and sessions per user is helpful in reducing the risks related to DoS attacks.\\n\\nThis requirement addresses concurrent sessions for information system accounts and does not address concurrent sessions by single users via multiple system accounts. The maximum number of concurrent sessions should be defined based on mission needs and the operational environment for each system.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230346", + "group_title": "SRG-OS-000027-GPOS-00008", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230346r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:192", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32990r619863_fix", + "fixtext_fixref": "F-32990r619863_fix", + "ident": { + "text": "CCI-000054", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-020024", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230345r743984_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-020023", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000044", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:191", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must limit the number of concurrent sessions to ten for all accounts and/or account types.", + "id": "V-230346", + "desc": "Operating system management includes the ability to control the number of users and user sessions that utilize an operating system. Limiting the number of allowed users and sessions per user is helpful in reducing the risks related to DoS attacks.\n\nThis requirement addresses concurrent sessions for information system accounts and does not address concurrent sessions by single users via multiple system accounts. The maximum number of concurrent sessions should be defined based on mission needs and the operational environment for each system.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:192", + "label": "check" + }, + { + "data": "Configure the operating system to limit the number of concurrent sessions to \"10\" for all accounts and/or account types.\n\nAdd the following line to the top of the /etc/security/limits.conf or in a \".conf\" file defined in /etc/security/limits.d/:\n\n* hard maxlogins 10", + "label": "fix" + } + ], + "impact": 0.3, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230346\",\n \"title\": {\n \"text\": \"SRG-OS-000027-GPOS-00008\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230346r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"low\",\n \"version\": {\n \"text\": \"RHEL-08-020024\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must limit the number of concurrent sessions to ten for all accounts and/or account types.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Operating system management includes the ability to control the number of users and user sessions that utilize an operating system. Limiting the number of allowed users and sessions per user is helpful in reducing the risks related to DoS attacks.\\n\\nThis requirement addresses concurrent sessions for information system accounts and does not address concurrent sessions by single users via multiple system accounts. The maximum number of concurrent sessions should be defined based on mission needs and the operational environment for each system.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000054\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the operating system to limit the number of concurrent sessions to \\\"10\\\" for all accounts and/or account types.\\n\\nAdd the following line to the top of the /etc/security/limits.conf or in a \\\".conf\\\" file defined in /etc/security/limits.d/:\\n\\n* hard maxlogins 10\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-32990r619863_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-32990r619863_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:192\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000056" + ], + "nist": [ + "AC-11 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"A session lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not want to log out because of the temporary nature of the absence.\\n\\nThe session lock is implemented at the point where session activity can be determined. Rather than be forced to wait for a period of time to expire before the user session can be locked, RHEL 8 needs to provide users with the ability to manually invoke a session lock so users can secure their session if it is necessary to temporarily vacate the immediate physical vicinity.\\n\\nTmux is a terminal multiplexer that enables a number of terminals to be created, accessed, and controlled from a single screen. Red Hat endorses tmux as the recommended session controlling package.\\n\\nSatisfies: SRG-OS-000028-GPOS-00009, SRG-OS-000030-GPOS-00011\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230348", + "group_title": "SRG-OS-000028-GPOS-00009", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230348r743987_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:193", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32992r743986_fix", + "fixtext_fixref": "F-32992r743986_fix", + "ident": { + "text": "CCI-000056", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-020040", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230346r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "low", + "version": "RHEL-08-020024", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000054", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:192", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must enable a user session lock until that user re-establishes access using established identification and authentication procedures for command line sessions.", + "id": "V-230348", + "desc": "A session lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not want to log out because of the temporary nature of the absence.\n\nThe session lock is implemented at the point where session activity can be determined. Rather than be forced to wait for a period of time to expire before the user session can be locked, RHEL 8 needs to provide users with the ability to manually invoke a session lock so users can secure their session if it is necessary to temporarily vacate the immediate physical vicinity.\n\nTmux is a terminal multiplexer that enables a number of terminals to be created, accessed, and controlled from a single screen. Red Hat endorses tmux as the recommended session controlling package.\n\nSatisfies: SRG-OS-000028-GPOS-00009, SRG-OS-000030-GPOS-00011", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:193", + "label": "check" + }, + { + "data": "Configure the operating system to enable a user to initiate a session lock via tmux.\n\nCreate a global configuration file \"/etc/tmux.conf\" and add the following line:\n\nset -g lock-command vlock", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230348\",\n \"title\": {\n \"text\": \"SRG-OS-000028-GPOS-00009\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230348r743987_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-020040\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must enable a user session lock until that user re-establishes access using established identification and authentication procedures for command line sessions.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>A session lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not want to log out because of the temporary nature of the absence.\\n\\nThe session lock is implemented at the point where session activity can be determined. Rather than be forced to wait for a period of time to expire before the user session can be locked, RHEL 8 needs to provide users with the ability to manually invoke a session lock so users can secure their session if it is necessary to temporarily vacate the immediate physical vicinity.\\n\\nTmux is a terminal multiplexer that enables a number of terminals to be created, accessed, and controlled from a single screen. Red Hat endorses tmux as the recommended session controlling package.\\n\\nSatisfies: SRG-OS-000028-GPOS-00009, SRG-OS-000030-GPOS-00011</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000056\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the operating system to enable a user to initiate a session lock via tmux.\\n\\nCreate a global configuration file \\\"/etc/tmux.conf\\\" and add the following line:\\n\\nset -g lock-command vlock\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-32992r743986_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-32992r743986_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:193\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000056" + ], + "nist": [ + "AC-11 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"A session lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not want to log out because of the temporary nature of the absence.\\n\\nThe session lock is implemented at the point where session activity can be determined. Rather than be forced to wait for a period of time to expire before the user session can be locked, RHEL 8 needs to provide users with the ability to manually invoke a session lock so users can secure their session if it is necessary to temporarily vacate the immediate physical vicinity.\\n\\nTmux is a terminal multiplexer that enables a number of terminals to be created, accessed, and controlled from a single screen. Red Hat endorses tmux as the recommended session controlling package.\\n\\nSatisfies: SRG-OS-000028-GPOS-00009, SRG-OS-000030-GPOS-00011\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230349", + "group_title": "SRG-OS-000028-GPOS-00009", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230349r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:194", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32993r567794_fix", + "fixtext_fixref": "F-32993r567794_fix", + "ident": { + "text": "CCI-000056", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-020041", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230348r743987_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-020040", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000056", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:193", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must ensure session control is automatically started at shell initialization.", + "id": "V-230349", + "desc": "A session lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not want to log out because of the temporary nature of the absence.\n\nThe session lock is implemented at the point where session activity can be determined. Rather than be forced to wait for a period of time to expire before the user session can be locked, RHEL 8 needs to provide users with the ability to manually invoke a session lock so users can secure their session if it is necessary to temporarily vacate the immediate physical vicinity.\n\nTmux is a terminal multiplexer that enables a number of terminals to be created, accessed, and controlled from a single screen. Red Hat endorses tmux as the recommended session controlling package.\n\nSatisfies: SRG-OS-000028-GPOS-00009, SRG-OS-000030-GPOS-00011", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:194", + "label": "check" + }, + { + "data": "Configure the operating system to initialize the tmux terminal multiplexer as each shell is called by adding the following line to the end of the \"/etc/bashrc\" configuration file:\n\n[ -n \"$PS1\" -a -z \"$TMUX\" ] && exec tmux\n\nThis setting will take effect at next logon.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230349\",\n \"title\": {\n \"text\": \"SRG-OS-000028-GPOS-00009\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230349r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-020041\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must ensure session control is automatically started at shell initialization.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>A session lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not want to log out because of the temporary nature of the absence.\\n\\nThe session lock is implemented at the point where session activity can be determined. Rather than be forced to wait for a period of time to expire before the user session can be locked, RHEL 8 needs to provide users with the ability to manually invoke a session lock so users can secure their session if it is necessary to temporarily vacate the immediate physical vicinity.\\n\\nTmux is a terminal multiplexer that enables a number of terminals to be created, accessed, and controlled from a single screen. Red Hat endorses tmux as the recommended session controlling package.\\n\\nSatisfies: SRG-OS-000028-GPOS-00009, SRG-OS-000030-GPOS-00011</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000056\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the operating system to initialize the tmux terminal multiplexer as each shell is called by adding the following line to the end of the \\\"/etc/bashrc\\\" configuration file:\\n\\n[ -n \\\"$PS1\\\" -a -z \\\"$TMUX\\\" ] && exec tmux\\n\\nThis setting will take effect at next logon.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-32993r567794_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-32993r567794_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:194\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000056" + ], + "nist": [ + "AC-11 b" + ], + "severity": "low", + "description": "{\"VulnDiscussion\":\"A session lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not want to log out because of the temporary nature of the absence.\\n\\nThe session lock is implemented at the point where session activity can be determined. Rather than be forced to wait for a period of time to expire before the user session can be locked, RHEL 8 needs to provide users with the ability to manually invoke a session lock so users can secure their session if it is necessary to temporarily vacate the immediate physical vicinity.\\n\\nTmux is a terminal multiplexer that enables a number of terminals to be created, accessed, and controlled from a single screen. Red Hat endorses tmux as the recommended session controlling package.\\n\\nSatisfies: SRG-OS-000028-GPOS-00009, SRG-OS-000030-GPOS-00011\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230350", + "group_title": "SRG-OS-000028-GPOS-00009", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230350r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:195", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32994r567797_fix", + "fixtext_fixref": "F-32994r567797_fix", + "ident": { + "text": "CCI-000056", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-020042", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230349r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-020041", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000056", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:194", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must prevent users from disabling session control mechanisms.", + "id": "V-230350", + "desc": "A session lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not want to log out because of the temporary nature of the absence.\n\nThe session lock is implemented at the point where session activity can be determined. Rather than be forced to wait for a period of time to expire before the user session can be locked, RHEL 8 needs to provide users with the ability to manually invoke a session lock so users can secure their session if it is necessary to temporarily vacate the immediate physical vicinity.\n\nTmux is a terminal multiplexer that enables a number of terminals to be created, accessed, and controlled from a single screen. Red Hat endorses tmux as the recommended session controlling package.\n\nSatisfies: SRG-OS-000028-GPOS-00009, SRG-OS-000030-GPOS-00011", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:195", + "label": "check" + }, + { + "data": "Configure the operating system to prevent users from disabling the tmux terminal multiplexer by editing the \"/etc/shells\" configuration file to remove any instances of tmux.", + "label": "fix" + } + ], + "impact": 0.3, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230350\",\n \"title\": {\n \"text\": \"SRG-OS-000028-GPOS-00009\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230350r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"low\",\n \"version\": {\n \"text\": \"RHEL-08-020042\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must prevent users from disabling session control mechanisms.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>A session lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not want to log out because of the temporary nature of the absence.\\n\\nThe session lock is implemented at the point where session activity can be determined. Rather than be forced to wait for a period of time to expire before the user session can be locked, RHEL 8 needs to provide users with the ability to manually invoke a session lock so users can secure their session if it is necessary to temporarily vacate the immediate physical vicinity.\\n\\nTmux is a terminal multiplexer that enables a number of terminals to be created, accessed, and controlled from a single screen. Red Hat endorses tmux as the recommended session controlling package.\\n\\nSatisfies: SRG-OS-000028-GPOS-00009, SRG-OS-000030-GPOS-00011</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000056\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the operating system to prevent users from disabling the tmux terminal multiplexer by editing the \\\"/etc/shells\\\" configuration file to remove any instances of tmux.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-32994r567797_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-32994r567797_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:195\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000192" + ], + "nist": [ + "IA-5 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. \\\"pwquality\\\" enforces complex password construction configuration and has the ability to limit brute-force attacks on the system.\\n\\nRHEL 8 utilizes \\\"pwquality\\\" as a mechanism to enforce password complexity. This is set in both:\\n/etc/pam.d/password-auth\\n/etc/pam.d/system-auth\\n\\nNote the value of \\\"retry\\\" set in these configuration files should be between \\\"1\\\" and \\\"3\\\". Manual changes to the listed files may be overwritten by the \\\"authselect\\\" program.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230356", + "group_title": "SRG-OS-000069-GPOS-00037", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230356r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:196", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33000r567815_fix", + "fixtext_fixref": "F-33000r567815_fix", + "ident": { + "text": "CCI-000192", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-020100", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230350r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "low", + "version": "RHEL-08-020042", + "weight": "10.000000", + "result": "pass", + "ident": { + "text": "CCI-000056", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:195", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must ensure a password complexity module is enabled.", + "id": "V-230356", + "desc": "Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. \"pwquality\" enforces complex password construction configuration and has the ability to limit brute-force attacks on the system.\n\nRHEL 8 utilizes \"pwquality\" as a mechanism to enforce password complexity. This is set in both:\n/etc/pam.d/password-auth\n/etc/pam.d/system-auth\n\nNote the value of \"retry\" set in these configuration files should be between \"1\" and \"3\". Manual changes to the listed files may be overwritten by the \"authselect\" program.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:196", + "label": "check" + }, + { + "data": "Configure the operating system to use \"pwquality\" to enforce password complexity rules.\n\nAdd the following line to both \"/etc/pam.d/password-auth\" and \"/etc/pam.d/system-auth\" (or modify the line to have the required value):\n\npassword required pam_pwquality.so retry=3", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230356\",\n \"title\": {\n \"text\": \"SRG-OS-000069-GPOS-00037\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230356r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-020100\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must ensure a password complexity module is enabled.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. \\\"pwquality\\\" enforces complex password construction configuration and has the ability to limit brute-force attacks on the system.\\n\\nRHEL 8 utilizes \\\"pwquality\\\" as a mechanism to enforce password complexity. This is set in both:\\n/etc/pam.d/password-auth\\n/etc/pam.d/system-auth\\n\\nNote the value of \\\"retry\\\" set in these configuration files should be between \\\"1\\\" and \\\"3\\\". Manual changes to the listed files may be overwritten by the \\\"authselect\\\" program.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000192\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the operating system to use \\\"pwquality\\\" to enforce password complexity rules.\\n\\nAdd the following line to both \\\"/etc/pam.d/password-auth\\\" and \\\"/etc/pam.d/system-auth\\\" (or modify the line to have the required value):\\n\\npassword required pam_pwquality.so retry=3\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33000r567815_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33000r567815_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:196\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000192" + ], + "nist": [ + "IA-5 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\\n\\nRHEL 8 utilizes pwquality as a mechanism to enforce password complexity. Note that in order to require uppercase characters, without degrading the \\\"minlen\\\" value, the credit value must be expressed as a negative number in \\\"/etc/security/pwquality.conf\\\".\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230357", + "group_title": "SRG-OS-000069-GPOS-00037", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230357r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:197", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33001r567818_fix", + "fixtext_fixref": "F-33001r567818_fix", + "ident": { + "text": "CCI-000192", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-020110", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230356r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-020100", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000192", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:196", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must enforce password complexity by requiring that at least one uppercase character be used.", + "id": "V-230357", + "desc": "Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\n\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\n\nRHEL 8 utilizes pwquality as a mechanism to enforce password complexity. Note that in order to require uppercase characters, without degrading the \"minlen\" value, the credit value must be expressed as a negative number in \"/etc/security/pwquality.conf\".", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:197", + "label": "check" + }, + { + "data": "Configure the operating system to enforce password complexity by requiring that at least one uppercase character be used by setting the \"ucredit\" option.\n\nAdd the following line to /etc/security/pwquality.conf (or modify the line to have the required value):\n\nucredit = -1", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230357\",\n \"title\": {\n \"text\": \"SRG-OS-000069-GPOS-00037\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230357r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-020110\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must enforce password complexity by requiring that at least one uppercase character be used.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\\n\\nRHEL 8 utilizes pwquality as a mechanism to enforce password complexity. Note that in order to require uppercase characters, without degrading the \\\"minlen\\\" value, the credit value must be expressed as a negative number in \\\"/etc/security/pwquality.conf\\\".</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000192\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the operating system to enforce password complexity by requiring that at least one uppercase character be used by setting the \\\"ucredit\\\" option.\\n\\nAdd the following line to /etc/security/pwquality.conf (or modify the line to have the required value):\\n\\nucredit = -1\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33001r567818_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33001r567818_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:197\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000193" + ], + "nist": [ + "IA-5 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\\n\\nRHEL 8 utilizes pwquality as a mechanism to enforce password complexity. Note that in order to require lower-case characters without degrading the \\\"minlen\\\" value, the credit value must be expressed as a negative number in \\\"/etc/security/pwquality.conf\\\".\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230358", + "group_title": "SRG-OS-000070-GPOS-00038", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230358r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:198", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33002r567821_fix", + "fixtext_fixref": "F-33002r567821_fix", + "ident": { + "text": "CCI-000193", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-020120", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230357r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-020110", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000192", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:197", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must enforce password complexity by requiring that at least one lower-case character be used.", + "id": "V-230358", + "desc": "Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\n\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\n\nRHEL 8 utilizes pwquality as a mechanism to enforce password complexity. Note that in order to require lower-case characters without degrading the \"minlen\" value, the credit value must be expressed as a negative number in \"/etc/security/pwquality.conf\".", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:198", + "label": "check" + }, + { + "data": "Configure the operating system to enforce password complexity by requiring that at least one lower-case character be used by setting the \"lcredit\" option.\n\nAdd the following line to /etc/security/pwquality.conf (or modify the line to have the required value):\n\nlcredit = -1", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230358\",\n \"title\": {\n \"text\": \"SRG-OS-000070-GPOS-00038\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230358r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-020120\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must enforce password complexity by requiring that at least one lower-case character be used.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\\n\\nRHEL 8 utilizes pwquality as a mechanism to enforce password complexity. Note that in order to require lower-case characters without degrading the \\\"minlen\\\" value, the credit value must be expressed as a negative number in \\\"/etc/security/pwquality.conf\\\".</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000193\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the operating system to enforce password complexity by requiring that at least one lower-case character be used by setting the \\\"lcredit\\\" option.\\n\\nAdd the following line to /etc/security/pwquality.conf (or modify the line to have the required value):\\n\\nlcredit = -1\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33002r567821_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33002r567821_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:198\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000194" + ], + "nist": [ + "IA-5 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\\n\\nRHEL 8 utilizes \\\"pwquality\\\" as a mechanism to enforce password complexity. Note that in order to require numeric characters, without degrading the minlen value, the credit value must be expressed as a negative number in \\\"/etc/security/pwquality.conf\\\".\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230359", + "group_title": "SRG-OS-000071-GPOS-00039", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230359r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:199", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33003r567824_fix", + "fixtext_fixref": "F-33003r567824_fix", + "ident": { + "text": "CCI-000194", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-020130", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230358r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-020120", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000193", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:198", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must enforce password complexity by requiring that at least one numeric character be used.", + "id": "V-230359", + "desc": "Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\n\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\n\nRHEL 8 utilizes \"pwquality\" as a mechanism to enforce password complexity. Note that in order to require numeric characters, without degrading the minlen value, the credit value must be expressed as a negative number in \"/etc/security/pwquality.conf\".", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:199", + "label": "check" + }, + { + "data": "Configure the operating system to enforce password complexity by requiring that at least one numeric character be used by setting the \"dcredit\" option.\n\nAdd the following line to /etc/security/pwquality.conf (or modify the line to have the required value):\n\ndcredit = -1", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230359\",\n \"title\": {\n \"text\": \"SRG-OS-000071-GPOS-00039\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230359r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-020130\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must enforce password complexity by requiring that at least one numeric character be used.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\\n\\nRHEL 8 utilizes \\\"pwquality\\\" as a mechanism to enforce password complexity. Note that in order to require numeric characters, without degrading the minlen value, the credit value must be expressed as a negative number in \\\"/etc/security/pwquality.conf\\\".</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000194\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the operating system to enforce password complexity by requiring that at least one numeric character be used by setting the \\\"dcredit\\\" option.\\n\\nAdd the following line to /etc/security/pwquality.conf (or modify the line to have the required value):\\n\\ndcredit = -1\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33003r567824_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33003r567824_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:199\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000195" + ], + "nist": [ + "IA-5 (1) (b)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\\n\\nRHEL 8 utilizes \\\"pwquality\\\" as a mechanism to enforce password complexity. The \\\"maxclassrepeat\\\" option sets the maximum number of allowed same consecutive characters in the same class in the new password.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230360", + "group_title": "SRG-OS-000072-GPOS-00040", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230360r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:200", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33004r567827_fix", + "fixtext_fixref": "F-33004r567827_fix", + "ident": { + "text": "CCI-000195", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-020140", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230359r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-020130", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000194", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:199", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must require the maximum number of repeating characters of the same character class be limited to four when passwords are changed.", + "id": "V-230360", + "desc": "Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\n\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\n\nRHEL 8 utilizes \"pwquality\" as a mechanism to enforce password complexity. The \"maxclassrepeat\" option sets the maximum number of allowed same consecutive characters in the same class in the new password.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:200", + "label": "check" + }, + { + "data": "Configure the operating system to require the change of the number of repeating characters of the same character class when passwords are changed by setting the \"maxclassrepeat\" option.\n\nAdd the following line to \"/etc/security/pwquality.conf\" conf (or modify the line to have the required value):\n\nmaxclassrepeat = 4", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230360\",\n \"title\": {\n \"text\": \"SRG-OS-000072-GPOS-00040\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230360r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-020140\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must require the maximum number of repeating characters of the same character class be limited to four when passwords are changed.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\\n\\nRHEL 8 utilizes \\\"pwquality\\\" as a mechanism to enforce password complexity. The \\\"maxclassrepeat\\\" option sets the maximum number of allowed same consecutive characters in the same class in the new password.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000195\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the operating system to require the change of the number of repeating characters of the same character class when passwords are changed by setting the \\\"maxclassrepeat\\\" option.\\n\\nAdd the following line to \\\"/etc/security/pwquality.conf\\\" conf (or modify the line to have the required value):\\n\\nmaxclassrepeat = 4\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33004r567827_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33004r567827_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:200\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000195" + ], + "nist": [ + "IA-5 (1) (b)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\\n\\nRHEL 8 utilizes \\\"pwquality\\\" as a mechanism to enforce password complexity. The \\\"maxrepeat\\\" option sets the maximum number of allowed same consecutive characters in a new password.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230361", + "group_title": "SRG-OS-000072-GPOS-00040", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230361r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:201", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33005r567830_fix", + "fixtext_fixref": "F-33005r567830_fix", + "ident": { + "text": "CCI-000195", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-020150", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230360r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-020140", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000195", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:200", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must require the maximum number of repeating characters be limited to three when passwords are changed.", + "id": "V-230361", + "desc": "Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\n\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\n\nRHEL 8 utilizes \"pwquality\" as a mechanism to enforce password complexity. The \"maxrepeat\" option sets the maximum number of allowed same consecutive characters in a new password.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:201", + "label": "check" + }, + { + "data": "Configure the operating system to require the change of the number of repeating consecutive characters when passwords are changed by setting the \"maxrepeat\" option.\n\nAdd the following line to \"/etc/security/pwquality.conf conf\" (or modify the line to have the required value):\n\nmaxrepeat = 3", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230361\",\n \"title\": {\n \"text\": \"SRG-OS-000072-GPOS-00040\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230361r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-020150\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must require the maximum number of repeating characters be limited to three when passwords are changed.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\\n\\nRHEL 8 utilizes \\\"pwquality\\\" as a mechanism to enforce password complexity. The \\\"maxrepeat\\\" option sets the maximum number of allowed same consecutive characters in a new password.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000195\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the operating system to require the change of the number of repeating consecutive characters when passwords are changed by setting the \\\"maxrepeat\\\" option.\\n\\nAdd the following line to \\\"/etc/security/pwquality.conf conf\\\" (or modify the line to have the required value):\\n\\nmaxrepeat = 3\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33005r567830_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33005r567830_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:201\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000195" + ], + "nist": [ + "IA-5 (1) (b)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\\n\\nRHEL 8 utilizes \\\"pwquality\\\" as a mechanism to enforce password complexity. The \\\"minclass\\\" option sets the minimum number of required classes of characters for the new password (digits, uppercase, lowercase, others).\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230362", + "group_title": "SRG-OS-000072-GPOS-00040", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230362r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:202", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33006r567833_fix", + "fixtext_fixref": "F-33006r567833_fix", + "ident": { + "text": "CCI-000195", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-020160", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230361r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-020150", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000195", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:201", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must require the change of at least four character classes when passwords are changed.", + "id": "V-230362", + "desc": "Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\n\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\n\nRHEL 8 utilizes \"pwquality\" as a mechanism to enforce password complexity. The \"minclass\" option sets the minimum number of required classes of characters for the new password (digits, uppercase, lowercase, others).", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:202", + "label": "check" + }, + { + "data": "Configure the operating system to require the change of at least four character classes when passwords are changed by setting the \"minclass\" option.\n\nAdd the following line to \"/etc/security/pwquality.conf conf\" (or modify the line to have the required value):\n\nminclass = 4", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230362\",\n \"title\": {\n \"text\": \"SRG-OS-000072-GPOS-00040\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230362r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-020160\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must require the change of at least four character classes when passwords are changed.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\\n\\nRHEL 8 utilizes \\\"pwquality\\\" as a mechanism to enforce password complexity. The \\\"minclass\\\" option sets the minimum number of required classes of characters for the new password (digits, uppercase, lowercase, others).</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000195\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the operating system to require the change of at least four character classes when passwords are changed by setting the \\\"minclass\\\" option.\\n\\nAdd the following line to \\\"/etc/security/pwquality.conf conf\\\" (or modify the line to have the required value):\\n\\nminclass = 4\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33006r567833_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33006r567833_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:202\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000195" + ], + "nist": [ + "IA-5 (1) (b)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\\n\\nRHEL 8 utilizes \\\"pwquality\\\" as a mechanism to enforce password complexity. The \\\"difok\\\" option sets the number of characters in a password that must not be present in the old password.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230363", + "group_title": "SRG-OS-000072-GPOS-00040", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230363r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:203", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33007r567836_fix", + "fixtext_fixref": "F-33007r567836_fix", + "ident": { + "text": "CCI-000195", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-020170", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230362r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-020160", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000195", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:202", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must require the change of at least 8 characters when passwords are changed.", + "id": "V-230363", + "desc": "Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\n\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\n\nRHEL 8 utilizes \"pwquality\" as a mechanism to enforce password complexity. The \"difok\" option sets the number of characters in a password that must not be present in the old password.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:203", + "label": "check" + }, + { + "data": "Configure the operating system to require the change of at least eight of the total number of characters when passwords are changed by setting the \"difok\" option.\n\nAdd the following line to \"/etc/security/pwquality.conf\" (or modify the line to have the required value):\n\ndifok = 8", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230363\",\n \"title\": {\n \"text\": \"SRG-OS-000072-GPOS-00040\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230363r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-020170\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must require the change of at least 8 characters when passwords are changed.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\\n\\nRHEL 8 utilizes \\\"pwquality\\\" as a mechanism to enforce password complexity. The \\\"difok\\\" option sets the number of characters in a password that must not be present in the old password.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000195\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the operating system to require the change of at least eight of the total number of characters when passwords are changed by setting the \\\"difok\\\" option.\\n\\nAdd the following line to \\\"/etc/security/pwquality.conf\\\" (or modify the line to have the required value):\\n\\ndifok = 8\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33007r567836_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33007r567836_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:203\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000198" + ], + "nist": [ + "IA-5 (1) (d)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Enforcing a minimum password lifetime helps to prevent repeated password changes to defeat the password reuse or history enforcement requirement. If users are allowed to immediately and continually change their password, the password could be repeatedly changed in a short period of time to defeat the organization's policy regarding password reuse.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230364", + "group_title": "SRG-OS-000075-GPOS-00043", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230364r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:204", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33008r567839_fix", + "fixtext_fixref": "F-33008r567839_fix", + "ident": { + "text": "CCI-000198", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-020180", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230363r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-020170", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000195", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:203", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 passwords must have a 24 hours/1 day minimum password lifetime restriction in /etc/shadow.", + "id": "V-230364", + "desc": "Enforcing a minimum password lifetime helps to prevent repeated password changes to defeat the password reuse or history enforcement requirement. If users are allowed to immediately and continually change their password, the password could be repeatedly changed in a short period of time to defeat the organization's policy regarding password reuse.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:204", + "label": "check" + }, + { + "data": "Configure non-compliant accounts to enforce a 24 hours/1 day minimum password lifetime:\n\n$ sudo chage -m 1 [user]", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230364\",\n \"title\": {\n \"text\": \"SRG-OS-000075-GPOS-00043\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230364r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-020180\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 passwords must have a 24 hours/1 day minimum password lifetime restriction in /etc/shadow.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Enforcing a minimum password lifetime helps to prevent repeated password changes to defeat the password reuse or history enforcement requirement. If users are allowed to immediately and continually change their password, the password could be repeatedly changed in a short period of time to defeat the organization's policy regarding password reuse.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000198\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure non-compliant accounts to enforce a 24 hours/1 day minimum password lifetime:\\n\\n$ sudo chage -m 1 [user]\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33008r567839_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33008r567839_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:204\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000198" + ], + "nist": [ + "IA-5 (1) (d)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Enforcing a minimum password lifetime helps to prevent repeated password changes to defeat the password reuse or history enforcement requirement. If users are allowed to immediately and continually change their password, the password could be repeatedly changed in a short period of time to defeat the organization's policy regarding password reuse.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230365", + "group_title": "SRG-OS-000075-GPOS-00043", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230365r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:205", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33009r567842_fix", + "fixtext_fixref": "F-33009r567842_fix", + "ident": { + "text": "CCI-000198", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-020190", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230364r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-020180", + "weight": "10.000000", + "result": "error", + "ident": { + "text": "CCI-000198", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:204", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 passwords for new users or password changes must have a 24 hours/1 day minimum password lifetime restriction in /etc/logins.def.", + "id": "V-230365", + "desc": "Enforcing a minimum password lifetime helps to prevent repeated password changes to defeat the password reuse or history enforcement requirement. If users are allowed to immediately and continually change their password, the password could be repeatedly changed in a short period of time to defeat the organization's policy regarding password reuse.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:205", + "label": "check" + }, + { + "data": "Configure the operating system to enforce 24 hours/1 day as the minimum password lifetime.\n\nAdd the following line in \"/etc/login.defs\" (or modify the line to have the required value):\n\nPASS_MIN_DAYS 1", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230365\",\n \"title\": {\n \"text\": \"SRG-OS-000075-GPOS-00043\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230365r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-020190\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 passwords for new users or password changes must have a 24 hours/1 day minimum password lifetime restriction in /etc/logins.def.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Enforcing a minimum password lifetime helps to prevent repeated password changes to defeat the password reuse or history enforcement requirement. If users are allowed to immediately and continually change their password, the password could be repeatedly changed in a short period of time to defeat the organization's policy regarding password reuse.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000198\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the operating system to enforce 24 hours/1 day as the minimum password lifetime.\\n\\nAdd the following line in \\\"/etc/login.defs\\\" (or modify the line to have the required value):\\n\\nPASS_MIN_DAYS 1\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33009r567842_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33009r567842_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:205\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000199" + ], + "nist": [ + "IA-5 (1) (d)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Any password, no matter how complex, can eventually be cracked. Therefore, passwords need to be changed periodically. If RHEL 8 does not limit the lifetime of passwords and force users to change their passwords, there is the risk that RHEL 8 passwords could be compromised.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230366", + "group_title": "SRG-OS-000076-GPOS-00044", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230366r646878_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:206", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33010r567845_fix", + "fixtext_fixref": "F-33010r567845_fix", + "ident": { + "text": "CCI-000199", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-020200", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230365r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-020190", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000198", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:205", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 user account passwords must have a 60-day maximum password lifetime restriction.", + "id": "V-230366", + "desc": "Any password, no matter how complex, can eventually be cracked. Therefore, passwords need to be changed periodically. If RHEL 8 does not limit the lifetime of passwords and force users to change their passwords, there is the risk that RHEL 8 passwords could be compromised.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:206", + "label": "check" + }, + { + "data": "Configure RHEL 8 to enforce a 60-day maximum password lifetime.\n\nAdd, or modify the following line in the \"/etc/login.defs\" file:\n\nPASS_MAX_DAYS 60", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230366\",\n \"title\": {\n \"text\": \"SRG-OS-000076-GPOS-00044\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230366r646878_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-020200\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 user account passwords must have a 60-day maximum password lifetime restriction.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Any password, no matter how complex, can eventually be cracked. Therefore, passwords need to be changed periodically. If RHEL 8 does not limit the lifetime of passwords and force users to change their passwords, there is the risk that RHEL 8 passwords could be compromised.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000199\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure RHEL 8 to enforce a 60-day maximum password lifetime.\\n\\nAdd, or modify the following line in the \\\"/etc/login.defs\\\" file:\\n\\nPASS_MAX_DAYS 60\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33010r567845_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33010r567845_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:206\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000199" + ], + "nist": [ + "IA-5 (1) (d)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Any password, no matter how complex, can eventually be cracked. Therefore, passwords need to be changed periodically. If RHEL 8 does not limit the lifetime of passwords and force users to change their passwords, there is the risk that RHEL 8 passwords could be compromised.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230367", + "group_title": "SRG-OS-000076-GPOS-00044", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230367r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:207", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33011r567848_fix", + "fixtext_fixref": "F-33011r567848_fix", + "ident": { + "text": "CCI-000199", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-020210", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230366r646878_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-020200", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000199", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:206", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 user account passwords must be configured so that existing passwords are restricted to a 60-day maximum lifetime.", + "id": "V-230367", + "desc": "Any password, no matter how complex, can eventually be cracked. Therefore, passwords need to be changed periodically. If RHEL 8 does not limit the lifetime of passwords and force users to change their passwords, there is the risk that RHEL 8 passwords could be compromised.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:207", + "label": "check" + }, + { + "data": "Configure non-compliant accounts to enforce a 60-day maximum password lifetime restriction.\n\n$ sudo chage -M 60 [user]", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230367\",\n \"title\": {\n \"text\": \"SRG-OS-000076-GPOS-00044\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230367r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-020210\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 user account passwords must be configured so that existing passwords are restricted to a 60-day maximum lifetime.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Any password, no matter how complex, can eventually be cracked. Therefore, passwords need to be changed periodically. If RHEL 8 does not limit the lifetime of passwords and force users to change their passwords, there is the risk that RHEL 8 passwords could be compromised.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000199\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure non-compliant accounts to enforce a 60-day maximum password lifetime restriction.\\n\\n$ sudo chage -M 60 [user]\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33011r567848_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33011r567848_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:207\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000200" + ], + "nist": [ + "IA-5 (1) (e)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. If the information system or application allows the user to reuse their password consecutively when that password has exceeded its defined lifetime, the end result is a password that is not changed per policy requirements.\\n\\nRHEL 8 utilizes \\\"pwquality\\\" consecutively as a mechanism to enforce password complexity. This is set in both:\\n/etc/pam.d/password-auth\\n/etc/pam.d/system-auth.\\n\\nNote that manual changes to the listed files may be overwritten by the \\\"authselect\\\" program.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230368", + "group_title": "SRG-OS-000077-GPOS-00045", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230368r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:208", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33012r567851_fix", + "fixtext_fixref": "F-33012r567851_fix", + "ident": { + "text": "CCI-000200", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-020220", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230367r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-020210", + "weight": "10.000000", + "result": "error", + "ident": { + "text": "CCI-000199", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:207", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 passwords must be prohibited from reuse for a minimum of five generations.", + "id": "V-230368", + "desc": "Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. If the information system or application allows the user to reuse their password consecutively when that password has exceeded its defined lifetime, the end result is a password that is not changed per policy requirements.\n\nRHEL 8 utilizes \"pwquality\" consecutively as a mechanism to enforce password complexity. This is set in both:\n/etc/pam.d/password-auth\n/etc/pam.d/system-auth.\n\nNote that manual changes to the listed files may be overwritten by the \"authselect\" program.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:208", + "label": "check" + }, + { + "data": "Configure the operating system to prohibit password reuse for a minimum of five generations.\n\nAdd the following line in \"/etc/pam.d/system-auth\" and \"/etc/pam.d/password-auth\" (or modify the line to have the required value):\n\npassword required pam_pwhistory.so use_authtok remember=5 retry=3", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230368\",\n \"title\": {\n \"text\": \"SRG-OS-000077-GPOS-00045\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230368r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-020220\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 passwords must be prohibited from reuse for a minimum of five generations.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. If the information system or application allows the user to reuse their password consecutively when that password has exceeded its defined lifetime, the end result is a password that is not changed per policy requirements.\\n\\nRHEL 8 utilizes \\\"pwquality\\\" consecutively as a mechanism to enforce password complexity. This is set in both:\\n/etc/pam.d/password-auth\\n/etc/pam.d/system-auth.\\n\\nNote that manual changes to the listed files may be overwritten by the \\\"authselect\\\" program.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000200\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the operating system to prohibit password reuse for a minimum of five generations.\\n\\nAdd the following line in \\\"/etc/pam.d/system-auth\\\" and \\\"/etc/pam.d/password-auth\\\" (or modify the line to have the required value):\\n\\npassword required pam_pwhistory.so use_authtok remember=5 retry=3\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33012r567851_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33012r567851_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:208\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000205" + ], + "nist": [ + "IA-5 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"The shorter the password, the lower the number of possible combinations that need to be tested before the password is compromised.\\n\\nPassword complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. Password length is one factor of several that helps to determine strength and how long it takes to crack a password. Use of more characters in a password helps to increase exponentially the time and/or resources required to compromise the password.\\n\\nRHEL 8 utilizes \\\"pwquality\\\" as a mechanism to enforce password complexity. Configurations are set in the \\\"etc/security/pwquality.conf\\\" file.\\n\\nThe \\\"minlen\\\", sometimes noted as minimum length, acts as a \\\"score\\\" of complexity based on the credit components of the \\\"pwquality\\\" module. By setting the credit components to a negative value, not only will those components be required, they will not count towards the total \\\"score\\\" of \\\"minlen\\\". This will enable \\\"minlen\\\" to require a 15-character minimum.\\n\\nThe DoD minimum password requirement is 15 characters.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230369", + "group_title": "SRG-OS-000078-GPOS-00046", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230369r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:209", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33013r567854_fix", + "fixtext_fixref": "F-33013r567854_fix", + "ident": { + "text": "CCI-000205", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-020230", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230368r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-020220", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000200", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:208", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 passwords must have a minimum of 15 characters.", + "id": "V-230369", + "desc": "The shorter the password, the lower the number of possible combinations that need to be tested before the password is compromised.\n\nPassword complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. Password length is one factor of several that helps to determine strength and how long it takes to crack a password. Use of more characters in a password helps to increase exponentially the time and/or resources required to compromise the password.\n\nRHEL 8 utilizes \"pwquality\" as a mechanism to enforce password complexity. Configurations are set in the \"etc/security/pwquality.conf\" file.\n\nThe \"minlen\", sometimes noted as minimum length, acts as a \"score\" of complexity based on the credit components of the \"pwquality\" module. By setting the credit components to a negative value, not only will those components be required, they will not count towards the total \"score\" of \"minlen\". This will enable \"minlen\" to require a 15-character minimum.\n\nThe DoD minimum password requirement is 15 characters.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:209", + "label": "check" + }, + { + "data": "Configure operating system to enforce a minimum 15-character password length.\n\nAdd the following line to \"/etc/security/pwquality.conf\" (or modify the line to have the required value):\n\nminlen = 15", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230369\",\n \"title\": {\n \"text\": \"SRG-OS-000078-GPOS-00046\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230369r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-020230\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 passwords must have a minimum of 15 characters.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>The shorter the password, the lower the number of possible combinations that need to be tested before the password is compromised.\\n\\nPassword complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. Password length is one factor of several that helps to determine strength and how long it takes to crack a password. Use of more characters in a password helps to increase exponentially the time and/or resources required to compromise the password.\\n\\nRHEL 8 utilizes \\\"pwquality\\\" as a mechanism to enforce password complexity. Configurations are set in the \\\"etc/security/pwquality.conf\\\" file.\\n\\nThe \\\"minlen\\\", sometimes noted as minimum length, acts as a \\\"score\\\" of complexity based on the credit components of the \\\"pwquality\\\" module. By setting the credit components to a negative value, not only will those components be required, they will not count towards the total \\\"score\\\" of \\\"minlen\\\". This will enable \\\"minlen\\\" to require a 15-character minimum.\\n\\nThe DoD minimum password requirement is 15 characters.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000205\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure operating system to enforce a minimum 15-character password length.\\n\\nAdd the following line to \\\"/etc/security/pwquality.conf\\\" (or modify the line to have the required value):\\n\\nminlen = 15\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33013r567854_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33013r567854_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:209\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000205" + ], + "nist": [ + "IA-5 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"The shorter the password, the lower the number of possible combinations that need to be tested before the password is compromised.\\n\\nPassword complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. Password length is one factor of several that helps to determine strength and how long it takes to crack a password. Use of more characters in a password helps to increase exponentially the time and/or resources required to compromise the password.\\n\\nThe DoD minimum password requirement is 15 characters.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230370", + "group_title": "SRG-OS-000078-GPOS-00046", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230370r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:210", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33014r567857_fix", + "fixtext_fixref": "F-33014r567857_fix", + "ident": { + "text": "CCI-000205", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-020231", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230369r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-020230", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000205", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:209", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 passwords for new users must have a minimum of 15 characters.", + "id": "V-230370", + "desc": "The shorter the password, the lower the number of possible combinations that need to be tested before the password is compromised.\n\nPassword complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. Password length is one factor of several that helps to determine strength and how long it takes to crack a password. Use of more characters in a password helps to increase exponentially the time and/or resources required to compromise the password.\n\nThe DoD minimum password requirement is 15 characters.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:210", + "label": "check" + }, + { + "data": "Configure operating system to enforce a minimum 15-character password length for new user accounts.\n\nAdd, or modify the following line in the \"/etc/login.defs\" file:\n\nPASS_MIN_LEN 15", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230370\",\n \"title\": {\n \"text\": \"SRG-OS-000078-GPOS-00046\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230370r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-020231\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 passwords for new users must have a minimum of 15 characters.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>The shorter the password, the lower the number of possible combinations that need to be tested before the password is compromised.\\n\\nPassword complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. Password length is one factor of several that helps to determine strength and how long it takes to crack a password. Use of more characters in a password helps to increase exponentially the time and/or resources required to compromise the password.\\n\\nThe DoD minimum password requirement is 15 characters.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000205\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure operating system to enforce a minimum 15-character password length for new user accounts.\\n\\nAdd, or modify the following line in the \\\"/etc/login.defs\\\" file:\\n\\nPASS_MIN_LEN 15\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33014r567857_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33014r567857_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:210\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000795" + ], + "nist": [ + "IA-4 e" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Inactive identifiers pose a risk to systems and applications because attackers may exploit an inactive identifier and potentially obtain undetected access to the system. Owners of inactive accounts will not notice if unauthorized access to their user account has been obtained.\\n\\nRHEL 8 needs to track periods of inactivity and disable application identifiers after 35 days of inactivity.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230373", + "group_title": "SRG-OS-000118-GPOS-00060", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230373r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:211", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33017r567866_fix", + "fixtext_fixref": "F-33017r567866_fix", + "ident": { + "text": "CCI-000795", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-020260", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230370r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-020231", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000205", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:210", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 account identifiers (individuals, groups, roles, and devices) must be disabled after 35 days of inactivity.", + "id": "V-230373", + "desc": "Inactive identifiers pose a risk to systems and applications because attackers may exploit an inactive identifier and potentially obtain undetected access to the system. Owners of inactive accounts will not notice if unauthorized access to their user account has been obtained.\n\nRHEL 8 needs to track periods of inactivity and disable application identifiers after 35 days of inactivity.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:211", + "label": "check" + }, + { + "data": "Configure RHEL 8 to disable account identifiers after 35 days of inactivity after the password expiration. \n\nRun the following command to change the configuration for useradd:\n\n$ sudo useradd -D -f 35\n\nDoD recommendation is 35 days, but a lower value is acceptable. The value \"-1\" will disable this feature, and \"0\" will disable the account immediately after the password expires.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230373\",\n \"title\": {\n \"text\": \"SRG-OS-000118-GPOS-00060\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230373r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-020260\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 account identifiers (individuals, groups, roles, and devices) must be disabled after 35 days of inactivity.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Inactive identifiers pose a risk to systems and applications because attackers may exploit an inactive identifier and potentially obtain undetected access to the system. Owners of inactive accounts will not notice if unauthorized access to their user account has been obtained.\\n\\nRHEL 8 needs to track periods of inactivity and disable application identifiers after 35 days of inactivity.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000795\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure RHEL 8 to disable account identifiers after 35 days of inactivity after the password expiration. \\n\\nRun the following command to change the configuration for useradd:\\n\\n$ sudo useradd -D -f 35\\n\\nDoD recommendation is 35 days, but a lower value is acceptable. The value \\\"-1\\\" will disable this feature, and \\\"0\\\" will disable the account immediately after the password expires.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33017r567866_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33017r567866_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:211\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001619" + ], + "nist": [ + "IA-5 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\\n\\nRHEL 8 utilizes \\\"pwquality\\\" as a mechanism to enforce password complexity. Note that to require special characters without degrading the \\\"minlen\\\" value, the credit value must be expressed as a negative number in \\\"/etc/security/pwquality.conf\\\".\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230375", + "group_title": "SRG-OS-000266-GPOS-00101", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230375r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:212", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33019r567872_fix", + "fixtext_fixref": "F-33019r567872_fix", + "ident": { + "text": "CCI-001619", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-020280", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230373r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-020260", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000795", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:211", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "All RHEL 8 passwords must contain at least one special character.", + "id": "V-230375", + "desc": "Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\n\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\n\nRHEL 8 utilizes \"pwquality\" as a mechanism to enforce password complexity. Note that to require special characters without degrading the \"minlen\" value, the credit value must be expressed as a negative number in \"/etc/security/pwquality.conf\".", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:212", + "label": "check" + }, + { + "data": "Configure the operating system to enforce password complexity by requiring that at least one special character be used by setting the \"ocredit\" option.\n\nAdd the following line to /etc/security/pwquality.conf (or modify the line to have the required value):\n\nocredit = -1", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230375\",\n \"title\": {\n \"text\": \"SRG-OS-000266-GPOS-00101\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230375r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-020280\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"All RHEL 8 passwords must contain at least one special character.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\\n\\nRHEL 8 utilizes \\\"pwquality\\\" as a mechanism to enforce password complexity. Note that to require special characters without degrading the \\\"minlen\\\" value, the credit value must be expressed as a negative number in \\\"/etc/security/pwquality.conf\\\".</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-001619\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the operating system to enforce password complexity by requiring that at least one special character be used by setting the \\\"ocredit\\\" option.\\n\\nAdd the following line to /etc/security/pwquality.conf (or modify the line to have the required value):\\n\\nocredit = -1\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33019r567872_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33019r567872_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:212\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"If RHEL 8 allows the user to select passwords based on dictionary words, this increases the chances of password compromise by increasing the opportunity for successful guesses, and brute-force attacks.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230377", + "group_title": "SRG-OS-000480-GPOS-00225", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230377r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:214", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33021r567878_fix", + "fixtext_fixref": "F-33021r567878_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-020300", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230375r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-020280", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-001619", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:212", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must prevent the use of dictionary words for passwords.", + "id": "V-230377", + "desc": "If RHEL 8 allows the user to select passwords based on dictionary words, this increases the chances of password compromise by increasing the opportunity for successful guesses, and brute-force attacks.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:214", + "label": "check" + }, + { + "data": "Configure RHEL 8 to prevent the use of dictionary words for passwords.\n\nAdd or update the following line in the \"/etc/security/pwquality.conf\" file or a configuration file in the /etc/pwquality.conf.d/ directory to contain the \"dictcheck\" parameter:\n\ndictcheck=1", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230377\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00225\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230377r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-020300\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must prevent the use of dictionary words for passwords.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>If RHEL 8 allows the user to select passwords based on dictionary words, this increases the chances of password compromise by increasing the opportunity for successful guesses, and brute-force attacks.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure RHEL 8 to prevent the use of dictionary words for passwords.\\n\\nAdd or update the following line in the \\\"/etc/security/pwquality.conf\\\" file or a configuration file in the /etc/pwquality.conf.d/ directory to contain the \\\"dictcheck\\\" parameter:\\n\\ndictcheck=1\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33021r567878_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33021r567878_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:214\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Configuring the operating system to implement organization-wide security implementation guides and security checklists verifies compliance with federal standards and establishes a common security baseline across the DoD that reflects the most restrictive security posture consistent with operational requirements.\\n\\nConfiguration settings are the set of parameters that can be changed in hardware, software, or firmware components of the system that affect the security posture and/or functionality of the system. Security-related parameters are those parameters impacting the security state of the system, including the parameters required to satisfy other security control requirements. Security-related parameters include, for example, registry settings; account, file, and directory permission settings; and settings for functions, ports, protocols, services, and remote connections.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230378", + "group_title": "SRG-OS-000480-GPOS-00226", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230378r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:215", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33022r567881_fix", + "fixtext_fixref": "F-33022r567881_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-020310", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230377r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-020300", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:214", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must enforce a delay of at least four seconds between logon prompts following a failed logon attempt.", + "id": "V-230378", + "desc": "Configuring the operating system to implement organization-wide security implementation guides and security checklists verifies compliance with federal standards and establishes a common security baseline across the DoD that reflects the most restrictive security posture consistent with operational requirements.\n\nConfiguration settings are the set of parameters that can be changed in hardware, software, or firmware components of the system that affect the security posture and/or functionality of the system. Security-related parameters are those parameters impacting the security state of the system, including the parameters required to satisfy other security control requirements. Security-related parameters include, for example, registry settings; account, file, and directory permission settings; and settings for functions, ports, protocols, services, and remote connections.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:215", + "label": "check" + }, + { + "data": "Configure the operating system to enforce a delay of at least four seconds between logon prompts following a failed console logon attempt.\n\nModify the \"/etc/login.defs\" file to set the \"FAIL_DELAY\" parameter to \"4\" or greater:\n\nFAIL_DELAY 4", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230378\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00226\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230378r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-020310\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must enforce a delay of at least four seconds between logon prompts following a failed logon attempt.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Configuring the operating system to implement organization-wide security implementation guides and security checklists verifies compliance with federal standards and establishes a common security baseline across the DoD that reflects the most restrictive security posture consistent with operational requirements.\\n\\nConfiguration settings are the set of parameters that can be changed in hardware, software, or firmware components of the system that affect the security posture and/or functionality of the system. Security-related parameters are those parameters impacting the security state of the system, including the parameters required to satisfy other security control requirements. Security-related parameters include, for example, registry settings; account, file, and directory permission settings; and settings for functions, ports, protocols, services, and remote connections.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the operating system to enforce a delay of at least four seconds between logon prompts following a failed console logon attempt.\\n\\nModify the \\\"/etc/login.defs\\\" file to set the \\\"FAIL_DELAY\\\" parameter to \\\"4\\\" or greater:\\n\\nFAIL_DELAY 4\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33022r567881_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33022r567881_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:215\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "high", + "description": "{\"VulnDiscussion\":\"If an account has an empty password, anyone could log on and run commands with the privileges of that account. Accounts with empty passwords should never be used in operational environments.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230380", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230380r743993_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:216", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33024r743992_fix", + "fixtext_fixref": "F-33024r743992_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-020330", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230378r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-020310", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:215", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must not allow accounts configured with blank or null passwords.", + "id": "V-230380", + "desc": "If an account has an empty password, anyone could log on and run commands with the privileges of that account. Accounts with empty passwords should never be used in operational environments.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:216", + "label": "check" + }, + { + "data": "Edit the following line in \"etc/ssh/sshd_config\" to prevent logons with empty passwords.\n\nPermitEmptyPasswords no\n\nThe SSH daemon must be restarted for the changes to take effect. To restart the SSH daemon, run the following command:\n\n$ sudo systemctl restart sshd.service", + "label": "fix" + } + ], + "impact": 0.7, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230380\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230380r743993_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"high\",\n \"version\": {\n \"text\": \"RHEL-08-020330\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must not allow accounts configured with blank or null passwords.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>If an account has an empty password, anyone could log on and run commands with the privileges of that account. Accounts with empty passwords should never be used in operational environments.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Edit the following line in \\\"etc/ssh/sshd_config\\\" to prevent logons with empty passwords.\\n\\nPermitEmptyPasswords no\\n\\nThe SSH daemon must be restarted for the changes to take effect. To restart the SSH daemon, run the following command:\\n\\n$ sudo systemctl restart sshd.service\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33024r743992_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33024r743992_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:216\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Providing users with feedback on when account accesses via SSH last occurred facilitates user recognition and reporting of unauthorized account use.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230382", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230382r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:218", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33026r567893_fix", + "fixtext_fixref": "F-33026r567893_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-020350", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230380r743993_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "high", + "version": "RHEL-08-020330", + "weight": "10.000000", + "result": "error", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:216", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must display the date and time of the last successful account logon upon an SSH logon.", + "id": "V-230382", + "desc": "Providing users with feedback on when account accesses via SSH last occurred facilitates user recognition and reporting of unauthorized account use.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:218", + "label": "check" + }, + { + "data": "Configure SSH to provide users with feedback on when account accesses last occurred by setting the required configuration options in \"/etc/pam.d/sshd\" or in the \"sshd_config\" file used by the system (\"/etc/ssh/sshd_config\" will be used in the example) (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor).\n\nModify the \"PrintLastLog\" line in \"/etc/ssh/sshd_config\" to match the following:\n\nPrintLastLog yes\n\nThe SSH service must be restarted for changes to \"sshd_config\" to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230382\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230382r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-020350\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must display the date and time of the last successful account logon upon an SSH logon.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Providing users with feedback on when account accesses via SSH last occurred facilitates user recognition and reporting of unauthorized account use.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure SSH to provide users with feedback on when account accesses last occurred by setting the required configuration options in \\\"/etc/pam.d/sshd\\\" or in the \\\"sshd_config\\\" file used by the system (\\\"/etc/ssh/sshd_config\\\" will be used in the example) (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor).\\n\\nModify the \\\"PrintLastLog\\\" line in \\\"/etc/ssh/sshd_config\\\" to match the following:\\n\\nPrintLastLog yes\\n\\nThe SSH service must be restarted for changes to \\\"sshd_config\\\" to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33026r567893_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33026r567893_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:218\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Setting the most restrictive default permissions ensures that when new accounts are created, they do not have unnecessary access.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230383", + "group_title": "SRG-OS-000480-GPOS-00228", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230383r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:219", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33027r567896_fix", + "fixtext_fixref": "F-33027r567896_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-020351", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230382r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-020350", + "weight": "10.000000", + "result": "error", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:218", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must define default permissions for all authenticated users in such a way that the user can only read and modify their own files.", + "id": "V-230383", + "desc": "Setting the most restrictive default permissions ensures that when new accounts are created, they do not have unnecessary access.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:219", + "label": "check" + }, + { + "data": "Configure the operating system to define default permissions for all authenticated users in such a way that the user can only read and modify their own files.\n\nAdd or edit the line for the \"UMASK\" parameter in \"/etc/login.defs\" file to \"077\":\n\nUMASK 077", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230383\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00228\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230383r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-020351\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must define default permissions for all authenticated users in such a way that the user can only read and modify their own files.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Setting the most restrictive default permissions ensures that when new accounts are created, they do not have unnecessary access.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the operating system to define default permissions for all authenticated users in such a way that the user can only read and modify their own files.\\n\\nAdd or edit the line for the \\\"UMASK\\\" parameter in \\\"/etc/login.defs\\\" file to \\\"077\\\":\\n\\nUMASK 077\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33027r567896_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33027r567896_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:219\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-002233" + ], + "nist": [ + "AC-6 (8)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Misuse of privileged functions, either intentionally or unintentionally by authorized users, or by unauthorized external entities that have compromised information system accounts, is a serious and ongoing concern and can have significant adverse impacts on organizations. Auditing the use of privileged functions is one way to detect such misuse and identify the risk from insider threats and the advanced persistent threat.\\n\\nSatisfies: SRG-OS-000326-GPOS-00126, SRG-OS-000327-GPOS-00127\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230386", + "group_title": "SRG-OS-000326-GPOS-00126", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230386r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:220", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33030r567905_fix", + "fixtext_fixref": "F-33030r567905_fix", + "ident": { + "text": "CCI-002233", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030000", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230383r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-020351", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:219", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The RHEL 8 audit system must be configured to audit the execution of privileged functions and prevent all software from executing at higher privilege levels than users executing the software.", + "id": "V-230386", + "desc": "Misuse of privileged functions, either intentionally or unintentionally by authorized users, or by unauthorized external entities that have compromised information system accounts, is a serious and ongoing concern and can have significant adverse impacts on organizations. Auditing the use of privileged functions is one way to detect such misuse and identify the risk from insider threats and the advanced persistent threat.\n\nSatisfies: SRG-OS-000326-GPOS-00126, SRG-OS-000327-GPOS-00127", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:220", + "label": "check" + }, + { + "data": "Configure RHEL 8 to audit the execution of the \"execve\" system call.\n\nAdd or update the following file system rules to \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S execve -C uid!=euid -F euid=0 -k execpriv \n-a always,exit -F arch=b64 -S execve -C uid!=euid -F euid=0 -k execpriv\n\n-a always,exit -F arch=b32 -S execve -C gid!=egid -F egid=0 -k execpriv \n-a always,exit -F arch=b64 -S execve -C gid!=egid -F egid=0 -k execpriv \n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230386\",\n \"title\": {\n \"text\": \"SRG-OS-000326-GPOS-00126\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230386r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030000\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The RHEL 8 audit system must be configured to audit the execution of privileged functions and prevent all software from executing at higher privilege levels than users executing the software.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Misuse of privileged functions, either intentionally or unintentionally by authorized users, or by unauthorized external entities that have compromised information system accounts, is a serious and ongoing concern and can have significant adverse impacts on organizations. Auditing the use of privileged functions is one way to detect such misuse and identify the risk from insider threats and the advanced persistent threat.\\n\\nSatisfies: SRG-OS-000326-GPOS-00126, SRG-OS-000327-GPOS-00127</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-002233\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure RHEL 8 to audit the execution of the \\\"execve\\\" system call.\\n\\nAdd or update the following file system rules to \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F arch=b32 -S execve -C uid!=euid -F euid=0 -k execpriv \\n-a always,exit -F arch=b64 -S execve -C uid!=euid -F euid=0 -k execpriv\\n\\n-a always,exit -F arch=b32 -S execve -C gid!=egid -F egid=0 -k execpriv \\n-a always,exit -F arch=b64 -S execve -C gid!=egid -F egid=0 -k execpriv \\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33030r567905_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33030r567905_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:220\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000139" + ], + "nist": [ + "AU-5 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"It is critical for the appropriate personnel to be aware if a system is at risk of failing to process audit logs as required. Without this notification, the security personnel may be unaware of an impending failure of the audit capability, and system operation may be adversely affected.\\n\\nAudit processing failures include software/hardware errors, failures in the audit capturing mechanisms, and audit storage capacity being reached or exceeded.\\n\\nThis requirement applies to each audit data storage repository (i.e., distinct information system component where audit records are stored), the centralized audit storage capacity of organizations (i.e., all audit data storage repositories combined), or both.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230388", + "group_title": "SRG-OS-000046-GPOS-00022", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230388r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:222", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33032r567911_fix", + "fixtext_fixref": "F-33032r567911_fix", + "ident": { + "text": "CCI-000139", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030020", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230386r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030000", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-002233", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:220", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The RHEL 8 System Administrator (SA) and Information System Security Officer (ISSO) (at a minimum) must be alerted of an audit processing failure event.", + "id": "V-230388", + "desc": "It is critical for the appropriate personnel to be aware if a system is at risk of failing to process audit logs as required. Without this notification, the security personnel may be unaware of an impending failure of the audit capability, and system operation may be adversely affected.\n\nAudit processing failures include software/hardware errors, failures in the audit capturing mechanisms, and audit storage capacity being reached or exceeded.\n\nThis requirement applies to each audit data storage repository (i.e., distinct information system component where audit records are stored), the centralized audit storage capacity of organizations (i.e., all audit data storage repositories combined), or both.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:222", + "label": "check" + }, + { + "data": "Configure \"auditd\" service to notify the SA and ISSO in the event of an audit processing failure. \n\nEdit the following line in \"/etc/audit/auditd.conf\" to ensure that administrators are notified via email for those situations:\n\naction_mail_acct = root", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230388\",\n \"title\": {\n \"text\": \"SRG-OS-000046-GPOS-00022\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230388r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030020\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The RHEL 8 System Administrator (SA) and Information System Security Officer (ISSO) (at a minimum) must be alerted of an audit processing failure event.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>It is critical for the appropriate personnel to be aware if a system is at risk of failing to process audit logs as required. Without this notification, the security personnel may be unaware of an impending failure of the audit capability, and system operation may be adversely affected.\\n\\nAudit processing failures include software/hardware errors, failures in the audit capturing mechanisms, and audit storage capacity being reached or exceeded.\\n\\nThis requirement applies to each audit data storage repository (i.e., distinct information system component where audit records are stored), the centralized audit storage capacity of organizations (i.e., all audit data storage repositories combined), or both.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000139\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure \\\"auditd\\\" service to notify the SA and ISSO in the event of an audit processing failure. \\n\\nEdit the following line in \\\"/etc/audit/auditd.conf\\\" to ensure that administrators are notified via email for those situations:\\n\\naction_mail_acct = root\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33032r567911_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33032r567911_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:222\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000140" + ], + "nist": [ + "AU-5 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"It is critical for the appropriate personnel to be aware if a system is at risk of failing to process audit logs as required. Without this notification, the security personnel may be unaware of an impending failure of the audit capability, and system operation may be adversely affected.\\n\\nAudit processing failures include software/hardware errors, failures in the audit capturing mechanisms, and audit storage capacity being reached or exceeded.\\n\\nThis requirement applies to each audit data storage repository (i.e., distinct information system component where audit records are stored), the centralized audit storage capacity of organizations (i.e., all audit data storage repositories combined), or both.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230390", + "group_title": "SRG-OS-000047-GPOS-00023", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230390r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:223", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33034r567917_fix", + "fixtext_fixref": "F-33034r567917_fix", + "ident": { + "text": "CCI-000140", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030040", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230388r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030020", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000139", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:222", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The RHEL 8 System must take appropriate action when an audit processing failure occurs.", + "id": "V-230390", + "desc": "It is critical for the appropriate personnel to be aware if a system is at risk of failing to process audit logs as required. Without this notification, the security personnel may be unaware of an impending failure of the audit capability, and system operation may be adversely affected.\n\nAudit processing failures include software/hardware errors, failures in the audit capturing mechanisms, and audit storage capacity being reached or exceeded.\n\nThis requirement applies to each audit data storage repository (i.e., distinct information system component where audit records are stored), the centralized audit storage capacity of organizations (i.e., all audit data storage repositories combined), or both.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:223", + "label": "check" + }, + { + "data": "Configure RHEL 8 to shut down by default upon audit failure (unless availability is an overriding concern).\n\nAdd or update the following line (depending on configuration \"disk_error_action\" can be set to \"SYSLOG\" or \"SINGLE\" depending on configuration) in \"/etc/audit/auditd.conf\" file:\n\ndisk_error_action = HALT\n\nIf availability has been determined to be more important, and this decision is documented with the ISSO, configure the operating system to notify system administration staff and ISSO staff in the event of an audit processing failure by setting the \"disk_error_action\" to \"SYSLOG\".", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230390\",\n \"title\": {\n \"text\": \"SRG-OS-000047-GPOS-00023\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230390r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030040\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The RHEL 8 System must take appropriate action when an audit processing failure occurs.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>It is critical for the appropriate personnel to be aware if a system is at risk of failing to process audit logs as required. Without this notification, the security personnel may be unaware of an impending failure of the audit capability, and system operation may be adversely affected.\\n\\nAudit processing failures include software/hardware errors, failures in the audit capturing mechanisms, and audit storage capacity being reached or exceeded.\\n\\nThis requirement applies to each audit data storage repository (i.e., distinct information system component where audit records are stored), the centralized audit storage capacity of organizations (i.e., all audit data storage repositories combined), or both.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000140\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure RHEL 8 to shut down by default upon audit failure (unless availability is an overriding concern).\\n\\nAdd or update the following line (depending on configuration \\\"disk_error_action\\\" can be set to \\\"SYSLOG\\\" or \\\"SINGLE\\\" depending on configuration) in \\\"/etc/audit/auditd.conf\\\" file:\\n\\ndisk_error_action = HALT\\n\\nIf availability has been determined to be more important, and this decision is documented with the ISSO, configure the operating system to notify system administration staff and ISSO staff in the event of an audit processing failure by setting the \\\"disk_error_action\\\" to \\\"SYSLOG\\\".\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33034r567917_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33034r567917_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:223\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000140" + ], + "nist": [ + "AU-5 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"It is critical that when RHEL 8 is at risk of failing to process audit logs as required, it takes action to mitigate the failure. Audit processing failures include software/hardware errors; failures in the audit capturing mechanisms; and audit storage capacity being reached or exceeded. Responses to audit failure depend upon the nature of the failure mode.\\n\\nWhen availability is an overriding concern, other approved actions in response to an audit failure are as follows:\\n\\n1) If the failure was caused by the lack of audit record storage capacity, RHEL 8 must continue generating audit records if possible (automatically restarting the audit service if necessary) and overwriting the oldest audit records in a first-in-first-out manner.\\n\\n2) If audit records are sent to a centralized collection server and communication with this server is lost or the server fails, RHEL 8 must queue audit records locally until communication is restored or until the audit records are retrieved manually. Upon restoration of the connection to the centralized collection server, action should be taken to synchronize the local audit data with the collection server.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230391", + "group_title": "SRG-OS-000047-GPOS-00023", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230391r743998_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:224", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33035r743997_fix", + "fixtext_fixref": "F-33035r743997_fix", + "ident": { + "text": "CCI-000140", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030050", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230390r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030040", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000140", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:223", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The RHEL 8 System Administrator (SA) and Information System Security Officer (ISSO) (at a minimum) must be alerted when the audit storage volume is full.", + "id": "V-230391", + "desc": "It is critical that when RHEL 8 is at risk of failing to process audit logs as required, it takes action to mitigate the failure. Audit processing failures include software/hardware errors; failures in the audit capturing mechanisms; and audit storage capacity being reached or exceeded. Responses to audit failure depend upon the nature of the failure mode.\n\nWhen availability is an overriding concern, other approved actions in response to an audit failure are as follows:\n\n1) If the failure was caused by the lack of audit record storage capacity, RHEL 8 must continue generating audit records if possible (automatically restarting the audit service if necessary) and overwriting the oldest audit records in a first-in-first-out manner.\n\n2) If audit records are sent to a centralized collection server and communication with this server is lost or the server fails, RHEL 8 must queue audit records locally until communication is restored or until the audit records are retrieved manually. Upon restoration of the connection to the centralized collection server, action should be taken to synchronize the local audit data with the collection server.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:224", + "label": "check" + }, + { + "data": "Configure RHEL 8 to notify the System Administrator (SA) and Information System Security Officer (ISSO) when the audit storage volume is full by configuring the \"max_log_file_action\" parameter in the \"/etc/audit/auditd.conf\" file with the a value of \"syslog\" or \"keep_logs\":\n\nmax_log_file_action = syslog", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230391\",\n \"title\": {\n \"text\": \"SRG-OS-000047-GPOS-00023\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230391r743998_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030050\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The RHEL 8 System Administrator (SA) and Information System Security Officer (ISSO) (at a minimum) must be alerted when the audit storage volume is full.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>It is critical that when RHEL 8 is at risk of failing to process audit logs as required, it takes action to mitigate the failure. Audit processing failures include software/hardware errors; failures in the audit capturing mechanisms; and audit storage capacity being reached or exceeded. Responses to audit failure depend upon the nature of the failure mode.\\n\\nWhen availability is an overriding concern, other approved actions in response to an audit failure are as follows:\\n\\n1) If the failure was caused by the lack of audit record storage capacity, RHEL 8 must continue generating audit records if possible (automatically restarting the audit service if necessary) and overwriting the oldest audit records in a first-in-first-out manner.\\n\\n2) If audit records are sent to a centralized collection server and communication with this server is lost or the server fails, RHEL 8 must queue audit records locally until communication is restored or until the audit records are retrieved manually. Upon restoration of the connection to the centralized collection server, action should be taken to synchronize the local audit data with the collection server.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000140\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure RHEL 8 to notify the System Administrator (SA) and Information System Security Officer (ISSO) when the audit storage volume is full by configuring the \\\"max_log_file_action\\\" parameter in the \\\"/etc/audit/auditd.conf\\\" file with the a value of \\\"syslog\\\" or \\\"keep_logs\\\":\\n\\nmax_log_file_action = syslog\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33035r743997_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33035r743997_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:224\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000140" + ], + "nist": [ + "AU-5 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"It is critical that when RHEL 8 is at risk of failing to process audit logs as required, it takes action to mitigate the failure. Audit processing failures include software/hardware errors; failures in the audit capturing mechanisms; and audit storage capacity being reached or exceeded. Responses to audit failure depend upon the nature of the failure mode.\\n\\nWhen availability is an overriding concern, other approved actions in response to an audit failure are as follows: \\n\\n1) If the failure was caused by the lack of audit record storage capacity, RHEL 8 must continue generating audit records if possible (automatically restarting the audit service if necessary) and overwriting the oldest audit records in a first-in-first-out manner.\\n\\n2) If audit records are sent to a centralized collection server and communication with this server is lost or the server fails, RHEL 8 must queue audit records locally until communication is restored or until the audit records are retrieved manually. Upon restoration of the connection to the centralized collection server, action should be taken to synchronize the local audit data with the collection server.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230392", + "group_title": "SRG-OS-000047-GPOS-00023", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230392r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:225", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33036r567923_fix", + "fixtext_fixref": "F-33036r567923_fix", + "ident": { + "text": "CCI-000140", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030060", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230391r743998_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030050", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000140", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:224", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The RHEL 8 audit system must take appropriate action when the audit storage volume is full.", + "id": "V-230392", + "desc": "It is critical that when RHEL 8 is at risk of failing to process audit logs as required, it takes action to mitigate the failure. Audit processing failures include software/hardware errors; failures in the audit capturing mechanisms; and audit storage capacity being reached or exceeded. Responses to audit failure depend upon the nature of the failure mode.\n\nWhen availability is an overriding concern, other approved actions in response to an audit failure are as follows: \n\n1) If the failure was caused by the lack of audit record storage capacity, RHEL 8 must continue generating audit records if possible (automatically restarting the audit service if necessary) and overwriting the oldest audit records in a first-in-first-out manner.\n\n2) If audit records are sent to a centralized collection server and communication with this server is lost or the server fails, RHEL 8 must queue audit records locally until communication is restored or until the audit records are retrieved manually. Upon restoration of the connection to the centralized collection server, action should be taken to synchronize the local audit data with the collection server.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:225", + "label": "check" + }, + { + "data": "Configure RHEL 8 to shut down by default upon audit failure (unless availability is an overriding concern).\n\nAdd or update the following line (depending on configuration \"disk_full_action\" can be set to \"SYSLOG\" or \"SINGLE\" depending on configuration) in \"/etc/audit/auditd.conf\" file:\n\ndisk_full_action = HALT\n\nIf availability has been determined to be more important, and this decision is documented with the ISSO, configure the operating system to notify system administration staff and ISSO staff in the event of an audit processing failure by setting the \"disk_full_action\" to \"SYSLOG\".", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230392\",\n \"title\": {\n \"text\": \"SRG-OS-000047-GPOS-00023\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230392r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030060\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The RHEL 8 audit system must take appropriate action when the audit storage volume is full.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>It is critical that when RHEL 8 is at risk of failing to process audit logs as required, it takes action to mitigate the failure. Audit processing failures include software/hardware errors; failures in the audit capturing mechanisms; and audit storage capacity being reached or exceeded. Responses to audit failure depend upon the nature of the failure mode.\\n\\nWhen availability is an overriding concern, other approved actions in response to an audit failure are as follows: \\n\\n1) If the failure was caused by the lack of audit record storage capacity, RHEL 8 must continue generating audit records if possible (automatically restarting the audit service if necessary) and overwriting the oldest audit records in a first-in-first-out manner.\\n\\n2) If audit records are sent to a centralized collection server and communication with this server is lost or the server fails, RHEL 8 must queue audit records locally until communication is restored or until the audit records are retrieved manually. Upon restoration of the connection to the centralized collection server, action should be taken to synchronize the local audit data with the collection server.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000140\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure RHEL 8 to shut down by default upon audit failure (unless availability is an overriding concern).\\n\\nAdd or update the following line (depending on configuration \\\"disk_full_action\\\" can be set to \\\"SYSLOG\\\" or \\\"SINGLE\\\" depending on configuration) in \\\"/etc/audit/auditd.conf\\\" file:\\n\\ndisk_full_action = HALT\\n\\nIf availability has been determined to be more important, and this decision is documented with the ISSO, configure the operating system to notify system administration staff and ISSO staff in the event of an audit processing failure by setting the \\\"disk_full_action\\\" to \\\"SYSLOG\\\".\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33036r567923_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33036r567923_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:225\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without establishing what type of events occurred, the source of events, where events occurred, and the outcome of events, it would be difficult to establish, correlate, and investigate the events leading up to an outage or attack.\\n\\nAudit record content that may be necessary to satisfy this requirement includes, for example, time stamps, source and destination addresses, user/process identifiers, event descriptions, success/fail indications, filenames involved, and access control or flow control rules invoked.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230393", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230393r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:226", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33037r567926_fix", + "fixtext_fixref": "F-33037r567926_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030061", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230392r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030060", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000140", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:225", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The RHEL 8 audit system must audit local events.", + "id": "V-230393", + "desc": "Without establishing what type of events occurred, the source of events, where events occurred, and the outcome of events, it would be difficult to establish, correlate, and investigate the events leading up to an outage or attack.\n\nAudit record content that may be necessary to satisfy this requirement includes, for example, time stamps, source and destination addresses, user/process identifiers, event descriptions, success/fail indications, filenames involved, and access control or flow control rules invoked.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:226", + "label": "check" + }, + { + "data": "Configure RHEL 8 to audit local events on the system.\n\nAdd or update the following line in \"/etc/audit/auditd.conf\" file:\n\nlocal_events = yes", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230393\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230393r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030061\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The RHEL 8 audit system must audit local events.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without establishing what type of events occurred, the source of events, where events occurred, and the outcome of events, it would be difficult to establish, correlate, and investigate the events leading up to an outage or attack.\\n\\nAudit record content that may be necessary to satisfy this requirement includes, for example, time stamps, source and destination addresses, user/process identifiers, event descriptions, success/fail indications, filenames involved, and access control or flow control rules invoked.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure RHEL 8 to audit local events on the system.\\n\\nAdd or update the following line in \\\"/etc/audit/auditd.conf\\\" file:\\n\\nlocal_events = yes\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33037r567926_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33037r567926_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:226\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001851" + ], + "nist": [ + "AU-4 (1)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without establishing what type of events occurred, the source of events, where events occurred, and the outcome of events, it would be difficult to establish, correlate, and investigate the events leading up to an outage or attack.\\n\\nAudit record content that may be necessary to satisfy this requirement includes, for example, time stamps, source and destination addresses, user/process identifiers, event descriptions, success/fail indications, filenames involved, and access control or flow control rules invoked.\\n\\nEnriched logging is needed to determine who, what, and when events occur on a system. Without this, determining root cause of an event will be much more difficult.\\n\\nWhen audit logs are not labeled before they are sent to a central log server, the audit data will not be able to be analyzed and tied back to the correct system.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230394", + "group_title": "SRG-OS-000342-GPOS-00133", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230394r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:227", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33038r567929_fix", + "fixtext_fixref": "F-33038r567929_fix", + "ident": { + "text": "CCI-001851", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030062", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230393r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030061", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:226", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must label all off-loaded audit logs before sending them to the central log server.", + "id": "V-230394", + "desc": "Without establishing what type of events occurred, the source of events, where events occurred, and the outcome of events, it would be difficult to establish, correlate, and investigate the events leading up to an outage or attack.\n\nAudit record content that may be necessary to satisfy this requirement includes, for example, time stamps, source and destination addresses, user/process identifiers, event descriptions, success/fail indications, filenames involved, and access control or flow control rules invoked.\n\nEnriched logging is needed to determine who, what, and when events occur on a system. Without this, determining root cause of an event will be much more difficult.\n\nWhen audit logs are not labeled before they are sent to a central log server, the audit data will not be able to be analyzed and tied back to the correct system.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:227", + "label": "check" + }, + { + "data": "Edit the /etc/audit/auditd.conf file and add or update the \"name_format\" option:\n\nname_format = hostname\n\nThe audit daemon must be restarted for changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230394\",\n \"title\": {\n \"text\": \"SRG-OS-000342-GPOS-00133\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230394r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030062\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must label all off-loaded audit logs before sending them to the central log server.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without establishing what type of events occurred, the source of events, where events occurred, and the outcome of events, it would be difficult to establish, correlate, and investigate the events leading up to an outage or attack.\\n\\nAudit record content that may be necessary to satisfy this requirement includes, for example, time stamps, source and destination addresses, user/process identifiers, event descriptions, success/fail indications, filenames involved, and access control or flow control rules invoked.\\n\\nEnriched logging is needed to determine who, what, and when events occur on a system. Without this, determining root cause of an event will be much more difficult.\\n\\nWhen audit logs are not labeled before they are sent to a central log server, the audit data will not be able to be analyzed and tied back to the correct system.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-001851\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Edit the /etc/audit/auditd.conf file and add or update the \\\"name_format\\\" option:\\n\\nname_format = hostname\\n\\nThe audit daemon must be restarted for changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33038r567929_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33038r567929_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:227\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "low", + "description": "{\"VulnDiscussion\":\"Without establishing what type of events occurred, the source of events, where events occurred, and the outcome of events, it would be difficult to establish, correlate, and investigate the events leading up to an outage or attack.\\n\\nAudit record content that may be necessary to satisfy this requirement includes, for example, time stamps, source and destination addresses, user/process identifiers, event descriptions, success/fail indications, filenames involved, and access control or flow control rules invoked.\\n\\nEnriched logging aids in making sense of who, what, and when events occur on a system. Without this, determining root cause of an event will be much more difficult.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230395", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230395r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:228", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33039r567932_fix", + "fixtext_fixref": "F-33039r567932_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030063", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230394r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030062", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-001851", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:227", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must resolve audit information before writing to disk.", + "id": "V-230395", + "desc": "Without establishing what type of events occurred, the source of events, where events occurred, and the outcome of events, it would be difficult to establish, correlate, and investigate the events leading up to an outage or attack.\n\nAudit record content that may be necessary to satisfy this requirement includes, for example, time stamps, source and destination addresses, user/process identifiers, event descriptions, success/fail indications, filenames involved, and access control or flow control rules invoked.\n\nEnriched logging aids in making sense of who, what, and when events occur on a system. Without this, determining root cause of an event will be much more difficult.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:228", + "label": "check" + }, + { + "data": "Edit the /etc/audit/auditd.conf file and add or update the \"log_format\" option:\n\nlog_format = ENRICHED\n\nThe audit daemon must be restarted for changes to take effect.", + "label": "fix" + } + ], + "impact": 0.3, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230395\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230395r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"low\",\n \"version\": {\n \"text\": \"RHEL-08-030063\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must resolve audit information before writing to disk.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without establishing what type of events occurred, the source of events, where events occurred, and the outcome of events, it would be difficult to establish, correlate, and investigate the events leading up to an outage or attack.\\n\\nAudit record content that may be necessary to satisfy this requirement includes, for example, time stamps, source and destination addresses, user/process identifiers, event descriptions, success/fail indications, filenames involved, and access control or flow control rules invoked.\\n\\nEnriched logging aids in making sense of who, what, and when events occur on a system. Without this, determining root cause of an event will be much more difficult.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Edit the /etc/audit/auditd.conf file and add or update the \\\"log_format\\\" option:\\n\\nlog_format = ENRICHED\\n\\nThe audit daemon must be restarted for changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33039r567932_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33039r567932_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:228\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000162" + ], + "nist": [ + "AU-9 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\\n\\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.\\n\\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029, SRG-OS-000206-GPOS-00084\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230396", + "group_title": "SRG-OS-000057-GPOS-00027", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230396r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:229", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33040r567935_fix", + "fixtext_fixref": "F-33040r567935_fix", + "ident": { + "text": "CCI-000162", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030070", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230395r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "low", + "version": "RHEL-08-030063", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:228", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 audit logs must have a mode of 0600 or less permissive to prevent unauthorized read access.", + "id": "V-230396", + "desc": "Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\n\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.\n\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029, SRG-OS-000206-GPOS-00084", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:229", + "label": "check" + }, + { + "data": "Configure the audit log to be protected from unauthorized read access by configuring the log group in the /etc/audit/auditd.conf file:\n\nlog_group = root", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230396\",\n \"title\": {\n \"text\": \"SRG-OS-000057-GPOS-00027\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230396r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030070\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 audit logs must have a mode of 0600 or less permissive to prevent unauthorized read access.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\\n\\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.\\n\\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029, SRG-OS-000206-GPOS-00084</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000162\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the audit log to be protected from unauthorized read access by configuring the log group in the /etc/audit/auditd.conf file:\\n\\nlog_group = root\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33040r567935_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33040r567935_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:229\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000162" + ], + "nist": [ + "AU-9 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\\n\\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.\\n\\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029, SRG-OS-000206-GPOS-00084\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230397", + "group_title": "SRG-OS-000057-GPOS-00027", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230397r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:230", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33041r567938_fix", + "fixtext_fixref": "F-33041r567938_fix", + "ident": { + "text": "CCI-000162", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030080", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230396r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030070", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000162", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:229", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 audit logs must be owned by root to prevent unauthorized read access.", + "id": "V-230397", + "desc": "Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\n\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.\n\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029, SRG-OS-000206-GPOS-00084", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:230", + "label": "check" + }, + { + "data": "Configure the audit log to be protected from unauthorized read access, by setting the correct owner as \"root\" with the following command:\n\n$ sudo chown root [audit_log_file]\n\nReplace \"[audit_log_file]\" to the correct audit log path, by default this location is \"/var/log/audit/audit.log\".", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230397\",\n \"title\": {\n \"text\": \"SRG-OS-000057-GPOS-00027\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230397r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030080\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 audit logs must be owned by root to prevent unauthorized read access.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\\n\\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.\\n\\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029, SRG-OS-000206-GPOS-00084</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000162\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the audit log to be protected from unauthorized read access, by setting the correct owner as \\\"root\\\" with the following command:\\n\\n$ sudo chown root [audit_log_file]\\n\\nReplace \\\"[audit_log_file]\\\" to the correct audit log path, by default this location is \\\"/var/log/audit/audit.log\\\".\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33041r567938_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33041r567938_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:230\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000162" + ], + "nist": [ + "AU-9 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Unauthorized disclosure of audit records can reveal system and configuration data to attackers, thus compromising its confidentiality.\\n\\nAudit information includes all information (e.g., audit records, audit settings, audit reports) needed to successfully audit RHEL 8 activity.\\n\\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230398", + "group_title": "SRG-OS-000057-GPOS-00027", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230398r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:231", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33042r567941_fix", + "fixtext_fixref": "F-33042r567941_fix", + "ident": { + "text": "CCI-000162", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030090", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230397r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030080", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000162", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:230", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 audit logs must be group-owned by root to prevent unauthorized read access.", + "id": "V-230398", + "desc": "Unauthorized disclosure of audit records can reveal system and configuration data to attackers, thus compromising its confidentiality.\n\nAudit information includes all information (e.g., audit records, audit settings, audit reports) needed to successfully audit RHEL 8 activity.\n\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:231", + "label": "check" + }, + { + "data": "Configure the audit log to be owned by root by configuring the log group in the /etc/audit/auditd.conf file:\n\nlog_group = root", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230398\",\n \"title\": {\n \"text\": \"SRG-OS-000057-GPOS-00027\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230398r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030090\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 audit logs must be group-owned by root to prevent unauthorized read access.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Unauthorized disclosure of audit records can reveal system and configuration data to attackers, thus compromising its confidentiality.\\n\\nAudit information includes all information (e.g., audit records, audit settings, audit reports) needed to successfully audit RHEL 8 activity.\\n\\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000162\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the audit log to be owned by root by configuring the log group in the /etc/audit/auditd.conf file:\\n\\nlog_group = root\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33042r567941_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33042r567941_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:231\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000162" + ], + "nist": [ + "AU-9 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Unauthorized disclosure of audit records can reveal system and configuration data to attackers, thus compromising its confidentiality.\\n\\nAudit information includes all information (e.g., audit records, audit settings, audit reports) needed to successfully audit RHEL 8 activity.\\n\\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230399", + "group_title": "SRG-OS-000057-GPOS-00027", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230399r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:232", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33043r567944_fix", + "fixtext_fixref": "F-33043r567944_fix", + "ident": { + "text": "CCI-000162", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030100", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230398r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030090", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000162", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:231", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 audit log directory must be owned by root to prevent unauthorized read access.", + "id": "V-230399", + "desc": "Unauthorized disclosure of audit records can reveal system and configuration data to attackers, thus compromising its confidentiality.\n\nAudit information includes all information (e.g., audit records, audit settings, audit reports) needed to successfully audit RHEL 8 activity.\n\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:232", + "label": "check" + }, + { + "data": "Configure the audit log to be protected from unauthorized read access, by setting the correct owner as \"root\" with the following command:\n\n$ sudo chown root [audit_log_directory]\n\nReplace \"[audit_log_directory]\" with the correct audit log directory path, by default this location is usually \"/var/log/audit\".", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230399\",\n \"title\": {\n \"text\": \"SRG-OS-000057-GPOS-00027\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230399r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030100\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 audit log directory must be owned by root to prevent unauthorized read access.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Unauthorized disclosure of audit records can reveal system and configuration data to attackers, thus compromising its confidentiality.\\n\\nAudit information includes all information (e.g., audit records, audit settings, audit reports) needed to successfully audit RHEL 8 activity.\\n\\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000162\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the audit log to be protected from unauthorized read access, by setting the correct owner as \\\"root\\\" with the following command:\\n\\n$ sudo chown root [audit_log_directory]\\n\\nReplace \\\"[audit_log_directory]\\\" with the correct audit log directory path, by default this location is usually \\\"/var/log/audit\\\".\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33043r567944_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33043r567944_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:232\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000162" + ], + "nist": [ + "AU-9 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Unauthorized disclosure of audit records can reveal system and configuration data to attackers, thus compromising its confidentiality.\\n\\nAudit information includes all information (e.g., audit records, audit settings, audit reports) needed to successfully audit RHEL 8 activity.\\n\\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230400", + "group_title": "SRG-OS-000057-GPOS-00027", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230400r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:233", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33044r567947_fix", + "fixtext_fixref": "F-33044r567947_fix", + "ident": { + "text": "CCI-000162", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030110", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230399r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030100", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000162", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:232", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 audit log directory must be group-owned by root to prevent unauthorized read access.", + "id": "V-230400", + "desc": "Unauthorized disclosure of audit records can reveal system and configuration data to attackers, thus compromising its confidentiality.\n\nAudit information includes all information (e.g., audit records, audit settings, audit reports) needed to successfully audit RHEL 8 activity.\n\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:233", + "label": "check" + }, + { + "data": "Configure the audit log to be protected from unauthorized read access by setting the correct group-owner as \"root\" with the following command:\n\n$ sudo chgrp root [audit_log_directory]\n\nReplace \"[audit_log_directory]\" with the correct audit log directory path, by default this location is usually \"/var/log/audit\".", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230400\",\n \"title\": {\n \"text\": \"SRG-OS-000057-GPOS-00027\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230400r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030110\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 audit log directory must be group-owned by root to prevent unauthorized read access.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Unauthorized disclosure of audit records can reveal system and configuration data to attackers, thus compromising its confidentiality.\\n\\nAudit information includes all information (e.g., audit records, audit settings, audit reports) needed to successfully audit RHEL 8 activity.\\n\\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000162\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the audit log to be protected from unauthorized read access by setting the correct group-owner as \\\"root\\\" with the following command:\\n\\n$ sudo chgrp root [audit_log_directory]\\n\\nReplace \\\"[audit_log_directory]\\\" with the correct audit log directory path, by default this location is usually \\\"/var/log/audit\\\".\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33044r567947_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33044r567947_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:233\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000162" + ], + "nist": [ + "AU-9 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Unauthorized disclosure of audit records can reveal system and configuration data to attackers, thus compromising its confidentiality.\\n\\nAudit information includes all information (e.g., audit records, audit settings, audit reports) needed to successfully audit RHEL 8 system activity.\\n\\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230401", + "group_title": "SRG-OS-000057-GPOS-00027", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230401r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:234", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33045r567950_fix", + "fixtext_fixref": "F-33045r567950_fix", + "ident": { + "text": "CCI-000162", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030120", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230400r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030110", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000162", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:233", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 audit log directory must have a mode of 0700 or less permissive to prevent unauthorized read access.", + "id": "V-230401", + "desc": "Unauthorized disclosure of audit records can reveal system and configuration data to attackers, thus compromising its confidentiality.\n\nAudit information includes all information (e.g., audit records, audit settings, audit reports) needed to successfully audit RHEL 8 system activity.\n\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:234", + "label": "check" + }, + { + "data": "Configure the audit log directory to be protected from unauthorized read access by setting the correct permissive mode with the following command:\n\n$ sudo chmod 0700 [audit_log_directory]\n\nReplace \"[audit_log_directory]\" to the correct audit log directory path, by default this location is \"/var/log/audit\".", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230401\",\n \"title\": {\n \"text\": \"SRG-OS-000057-GPOS-00027\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230401r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030120\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 audit log directory must have a mode of 0700 or less permissive to prevent unauthorized read access.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Unauthorized disclosure of audit records can reveal system and configuration data to attackers, thus compromising its confidentiality.\\n\\nAudit information includes all information (e.g., audit records, audit settings, audit reports) needed to successfully audit RHEL 8 system activity.\\n\\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000162\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the audit log directory to be protected from unauthorized read access by setting the correct permissive mode with the following command:\\n\\n$ sudo chmod 0700 [audit_log_directory]\\n\\nReplace \\\"[audit_log_directory]\\\" to the correct audit log directory path, by default this location is \\\"/var/log/audit\\\".\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33045r567950_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33045r567950_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:234\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000162" + ], + "nist": [ + "AU-9 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Unauthorized disclosure of audit records can reveal system and configuration data to attackers, thus compromising its confidentiality.\\n\\nAudit information includes all information (e.g., audit records, audit settings, audit reports) needed to successfully audit RHEL 8 system activity.\\n\\nIn immutable mode, unauthorized users cannot execute changes to the audit system to potentially hide malicious activity and then put the audit rules back. A system reboot would be noticeable and a system administrator could then investigate the unauthorized changes.\\n\\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230402", + "group_title": "SRG-OS-000057-GPOS-00027", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230402r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:235", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33046r567953_fix", + "fixtext_fixref": "F-33046r567953_fix", + "ident": { + "text": "CCI-000162", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030121", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230401r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030120", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000162", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:234", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 audit system must protect auditing rules from unauthorized change.", + "id": "V-230402", + "desc": "Unauthorized disclosure of audit records can reveal system and configuration data to attackers, thus compromising its confidentiality.\n\nAudit information includes all information (e.g., audit records, audit settings, audit reports) needed to successfully audit RHEL 8 system activity.\n\nIn immutable mode, unauthorized users cannot execute changes to the audit system to potentially hide malicious activity and then put the audit rules back. A system reboot would be noticeable and a system administrator could then investigate the unauthorized changes.\n\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:235", + "label": "check" + }, + { + "data": "Configure the audit system to set the audit rules to be immutable by adding the following line to \"/etc/audit/rules.d/audit.rules\"\n\n-e 2\n\nNote: Once set, the system must be rebooted for auditing to be changed. It is recommended to add this option as the last step in securing the system.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230402\",\n \"title\": {\n \"text\": \"SRG-OS-000057-GPOS-00027\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230402r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030121\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 audit system must protect auditing rules from unauthorized change.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Unauthorized disclosure of audit records can reveal system and configuration data to attackers, thus compromising its confidentiality.\\n\\nAudit information includes all information (e.g., audit records, audit settings, audit reports) needed to successfully audit RHEL 8 system activity.\\n\\nIn immutable mode, unauthorized users cannot execute changes to the audit system to potentially hide malicious activity and then put the audit rules back. A system reboot would be noticeable and a system administrator could then investigate the unauthorized changes.\\n\\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000162\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the audit system to set the audit rules to be immutable by adding the following line to \\\"/etc/audit/rules.d/audit.rules\\\"\\n\\n-e 2\\n\\nNote: Once set, the system must be rebooted for auditing to be changed. It is recommended to add this option as the last step in securing the system.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33046r567953_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33046r567953_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:235\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000162" + ], + "nist": [ + "AU-9 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Unauthorized disclosure of audit records can reveal system and configuration data to attackers, thus compromising its confidentiality.\\n\\nAudit information includes all information (e.g., audit records, audit settings, audit reports) needed to successfully audit RHEL 8 system activity.\\n\\nIn immutable mode, unauthorized users cannot execute changes to the audit system to potentially hide malicious activity and then put the audit rules back. A system reboot would be noticeable and a system administrator could then investigate the unauthorized changes.\\n\\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230403", + "group_title": "SRG-OS-000057-GPOS-00027", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230403r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:236", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33047r567956_fix", + "fixtext_fixref": "F-33047r567956_fix", + "ident": { + "text": "CCI-000162", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030122", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230402r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030121", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000162", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:235", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 audit system must protect logon UIDs from unauthorized change.", + "id": "V-230403", + "desc": "Unauthorized disclosure of audit records can reveal system and configuration data to attackers, thus compromising its confidentiality.\n\nAudit information includes all information (e.g., audit records, audit settings, audit reports) needed to successfully audit RHEL 8 system activity.\n\nIn immutable mode, unauthorized users cannot execute changes to the audit system to potentially hide malicious activity and then put the audit rules back. A system reboot would be noticeable and a system administrator could then investigate the unauthorized changes.\n\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:236", + "label": "check" + }, + { + "data": "Configure the audit system to set the logon UIDs to be immutable by adding the following line to \"/etc/audit/rules.d/audit.rules\"\n\n--loginuid-immutable", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230403\",\n \"title\": {\n \"text\": \"SRG-OS-000057-GPOS-00027\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230403r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030122\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 audit system must protect logon UIDs from unauthorized change.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Unauthorized disclosure of audit records can reveal system and configuration data to attackers, thus compromising its confidentiality.\\n\\nAudit information includes all information (e.g., audit records, audit settings, audit reports) needed to successfully audit RHEL 8 system activity.\\n\\nIn immutable mode, unauthorized users cannot execute changes to the audit system to potentially hide malicious activity and then put the audit rules back. A system reboot would be noticeable and a system administrator could then investigate the unauthorized changes.\\n\\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000162\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the audit system to set the logon UIDs to be immutable by adding the following line to \\\"/etc/audit/rules.d/audit.rules\\\"\\n\\n--loginuid-immutable\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33047r567956_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33047r567956_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:236\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000004-GPOS-00004, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000304-GPOS-00121, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000470-GPOS-00214, SRG-OS-000471-GPOS-00215, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000304-GPOS-00121, SRG-OS-000466-GPOS-00210, SRG-OS-000476-GPOS-00221\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230404", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230404r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:237", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33048r567959_fix", + "fixtext_fixref": "F-33048r567959_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030130", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230403r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030122", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000162", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:236", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/shadow.", + "id": "V-230404", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000004-GPOS-00004, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000304-GPOS-00121, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000470-GPOS-00214, SRG-OS-000471-GPOS-00215, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000304-GPOS-00121, SRG-OS-000466-GPOS-00210, SRG-OS-000476-GPOS-00221", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:237", + "label": "check" + }, + { + "data": "Configure RHEL 8 to generate audit records for all account creations, modifications, disabling, and termination events that affect \"/etc/shadow\".\n\nAdd or update the following file system rule to \"/etc/audit/rules.d/audit.rules\":\n\n-w /etc/shadow -p wa -k identity\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230404\",\n \"title\": {\n \"text\": \"SRG-OS-000062-GPOS-00031\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230404r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030130\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/shadow.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000004-GPOS-00004, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000304-GPOS-00121, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000470-GPOS-00214, SRG-OS-000471-GPOS-00215, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000304-GPOS-00121, SRG-OS-000466-GPOS-00210, SRG-OS-000476-GPOS-00221</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure RHEL 8 to generate audit records for all account creations, modifications, disabling, and termination events that affect \\\"/etc/shadow\\\".\\n\\nAdd or update the following file system rule to \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-w /etc/shadow -p wa -k identity\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33048r567959_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33048r567959_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:237\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000004-GPOS-00004, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000304-GPOS-00121, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000470-GPOS-00214, SRG-OS-000471-GPOS-00215, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000304-GPOS-00121, SRG-OS-000476-GPOS-00221\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230405", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230405r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:238", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33049r567962_fix", + "fixtext_fixref": "F-33049r567962_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030140", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230404r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030130", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:237", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/security/opasswd.", + "id": "V-230405", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000004-GPOS-00004, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000304-GPOS-00121, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000470-GPOS-00214, SRG-OS-000471-GPOS-00215, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000304-GPOS-00121, SRG-OS-000476-GPOS-00221", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:238", + "label": "check" + }, + { + "data": "Configure RHEL 8 to generate audit records for all account creations, modifications, disabling, and termination events that affect \"/etc/security/opasswd\".\n\nAdd or update the following file system rule to \"/etc/audit/rules.d/audit.rules\":\n\n-w /etc/security/opasswd -p wa -k identity\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230405\",\n \"title\": {\n \"text\": \"SRG-OS-000062-GPOS-00031\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230405r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030140\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/security/opasswd.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000004-GPOS-00004, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000304-GPOS-00121, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000470-GPOS-00214, SRG-OS-000471-GPOS-00215, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000304-GPOS-00121, SRG-OS-000476-GPOS-00221</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure RHEL 8 to generate audit records for all account creations, modifications, disabling, and termination events that affect \\\"/etc/security/opasswd\\\".\\n\\nAdd or update the following file system rule to \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-w /etc/security/opasswd -p wa -k identity\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33049r567962_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33049r567962_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:238\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000004-GPOS-00004, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000304-GPOS-00121, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000470-GPOS-00214, SRG-OS-000471-GPOS-00215, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000304-GPOS-00121, SRG-OS-000466-GPOS-00210, SRG-OS-000476-GPOS-00221\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230406", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230406r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:239", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33050r567965_fix", + "fixtext_fixref": "F-33050r567965_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030150", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230405r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030140", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:238", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/passwd.", + "id": "V-230406", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000004-GPOS-00004, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000304-GPOS-00121, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000470-GPOS-00214, SRG-OS-000471-GPOS-00215, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000304-GPOS-00121, SRG-OS-000466-GPOS-00210, SRG-OS-000476-GPOS-00221", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:239", + "label": "check" + }, + { + "data": "Configure RHEL 8 to generate audit records for all account creations, modifications, disabling, and termination events that affect \"/etc/passwd\".\n\nAdd or update the following file system rule to \"/etc/audit/rules.d/audit.rules\":\n\n-w /etc/passwd -p wa -k identity\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230406\",\n \"title\": {\n \"text\": \"SRG-OS-000062-GPOS-00031\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230406r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030150\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/passwd.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000004-GPOS-00004, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000304-GPOS-00121, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000470-GPOS-00214, SRG-OS-000471-GPOS-00215, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000304-GPOS-00121, SRG-OS-000466-GPOS-00210, SRG-OS-000476-GPOS-00221</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure RHEL 8 to generate audit records for all account creations, modifications, disabling, and termination events that affect \\\"/etc/passwd\\\".\\n\\nAdd or update the following file system rule to \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-w /etc/passwd -p wa -k identity\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33050r567965_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33050r567965_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:239\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000004-GPOS-00004, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000304-GPOS-00121, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000470-GPOS-00214, SRG-OS-000471-GPOS-00215, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000304-GPOS-00121, SRG-OS-000466-GPOS-00210, SRG-OS-000476-GPOS-00221\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230407", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230407r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:240", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33051r567968_fix", + "fixtext_fixref": "F-33051r567968_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030160", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230406r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030150", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:239", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/gshadow.", + "id": "V-230407", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000004-GPOS-00004, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000304-GPOS-00121, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000470-GPOS-00214, SRG-OS-000471-GPOS-00215, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000304-GPOS-00121, SRG-OS-000466-GPOS-00210, SRG-OS-000476-GPOS-00221", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:240", + "label": "check" + }, + { + "data": "Configure RHEL 8 to generate audit records for all account creations, modifications, disabling, and termination events that affect \"/etc/gshadow\".\n\nAdd or update the following file system rule to \"/etc/audit/rules.d/audit.rules\":\n\n-w /etc/gshadow -p wa -k identity\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230407\",\n \"title\": {\n \"text\": \"SRG-OS-000062-GPOS-00031\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230407r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030160\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/gshadow.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000004-GPOS-00004, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000304-GPOS-00121, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000470-GPOS-00214, SRG-OS-000471-GPOS-00215, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000304-GPOS-00121, SRG-OS-000466-GPOS-00210, SRG-OS-000476-GPOS-00221</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure RHEL 8 to generate audit records for all account creations, modifications, disabling, and termination events that affect \\\"/etc/gshadow\\\".\\n\\nAdd or update the following file system rule to \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-w /etc/gshadow -p wa -k identity\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33051r567968_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33051r567968_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:240\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000004-GPOS-00004, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000304-GPOS-00121, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000470-GPOS-00214, SRG-OS-000471-GPOS-00215, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000304-GPOS-00121, CCI-002884, SRG-OS-000466-GPOS-00210, SRG-OS-000476-GPOS-00221\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230408", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230408r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:241", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33052r567971_fix", + "fixtext_fixref": "F-33052r567971_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030170", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230407r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030160", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:240", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/group.", + "id": "V-230408", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000004-GPOS-00004, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000304-GPOS-00121, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000470-GPOS-00214, SRG-OS-000471-GPOS-00215, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000304-GPOS-00121, CCI-002884, SRG-OS-000466-GPOS-00210, SRG-OS-000476-GPOS-00221", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:241", + "label": "check" + }, + { + "data": "Configure RHEL 8 to generate audit records for all account creations, modifications, disabling, and termination events that affect \"/etc/group\".\n\nAdd or update the following file system rule to \"/etc/audit/rules.d/audit.rules\":\n\n-w /etc/group -p wa -k identity\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230408\",\n \"title\": {\n \"text\": \"SRG-OS-000062-GPOS-00031\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230408r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030170\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/group.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000004-GPOS-00004, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000304-GPOS-00121, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000470-GPOS-00214, SRG-OS-000471-GPOS-00215, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000304-GPOS-00121, CCI-002884, SRG-OS-000466-GPOS-00210, SRG-OS-000476-GPOS-00221</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure RHEL 8 to generate audit records for all account creations, modifications, disabling, and termination events that affect \\\"/etc/group\\\".\\n\\nAdd or update the following file system rule to \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-w /etc/group -p wa -k identity\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33052r567971_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33052r567971_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:241\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000004-GPOS-00004, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000304-GPOS-00121, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000470-GPOS-00214, SRG-OS-000471-GPOS-00215, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000304-GPOS-00121, CCI-002884, SRG-OS-000466-GPOS-00210, SRG-OS-000476-GPOS-00221\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230409", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230409r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:242", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33053r567974_fix", + "fixtext_fixref": "F-33053r567974_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030171", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230408r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030170", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:241", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/sudoers.", + "id": "V-230409", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000004-GPOS-00004, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000304-GPOS-00121, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000470-GPOS-00214, SRG-OS-000471-GPOS-00215, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000304-GPOS-00121, CCI-002884, SRG-OS-000466-GPOS-00210, SRG-OS-000476-GPOS-00221", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:242", + "label": "check" + }, + { + "data": "Configure RHEL 8 to generate audit records for all account creations, modifications, disabling, and termination events that affect \"/etc/sudoers\".\n\nAdd or update the following file system rule to \"/etc/audit/rules.d/audit.rules\":\n\n-w /etc/sudoers -p wa -k identity\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230409\",\n \"title\": {\n \"text\": \"SRG-OS-000062-GPOS-00031\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230409r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030171\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/sudoers.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000004-GPOS-00004, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000304-GPOS-00121, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000470-GPOS-00214, SRG-OS-000471-GPOS-00215, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000304-GPOS-00121, CCI-002884, SRG-OS-000466-GPOS-00210, SRG-OS-000476-GPOS-00221</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure RHEL 8 to generate audit records for all account creations, modifications, disabling, and termination events that affect \\\"/etc/sudoers\\\".\\n\\nAdd or update the following file system rule to \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-w /etc/sudoers -p wa -k identity\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33053r567974_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33053r567974_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:242\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000004-GPOS-00004, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000304-GPOS-00121, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000470-GPOS-00214, SRG-OS-000471-GPOS-00215, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000304-GPOS-00121, CCI-002884, SRG-OS-000466-GPOS-00210, SRG-OS-000476-GPOS-00221\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230410", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230410r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:243", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33054r567977_fix", + "fixtext_fixref": "F-33054r567977_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030172", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230409r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030171", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:242", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/sudoers.d/.", + "id": "V-230410", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000004-GPOS-00004, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000304-GPOS-00121, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000470-GPOS-00214, SRG-OS-000471-GPOS-00215, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000304-GPOS-00121, CCI-002884, SRG-OS-000466-GPOS-00210, SRG-OS-000476-GPOS-00221", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:243", + "label": "check" + }, + { + "data": "Configure RHEL 8 to generate audit records for all account creations, modifications, disabling, and termination events that affect \"/etc/sudoers.d/\".\n\nAdd or update the following file system rule to \"/etc/audit/rules.d/audit.rules\":\n\n-w /etc/sudoers.d/ -p wa -k identity\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230410\",\n \"title\": {\n \"text\": \"SRG-OS-000062-GPOS-00031\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230410r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030172\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/sudoers.d/.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000004-GPOS-00004, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000304-GPOS-00121, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000470-GPOS-00214, SRG-OS-000471-GPOS-00215, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000304-GPOS-00121, CCI-002884, SRG-OS-000466-GPOS-00210, SRG-OS-000476-GPOS-00221</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure RHEL 8 to generate audit records for all account creations, modifications, disabling, and termination events that affect \\\"/etc/sudoers.d/\\\".\\n\\nAdd or update the following file system rule to \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-w /etc/sudoers.d/ -p wa -k identity\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33054r567977_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33054r567977_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:243\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without establishing what type of events occurred, the source of events, where events occurred, and the outcome of events, it would be difficult to establish, correlate, and investigate the events leading up to an outage or attack.\\n\\nAudit record content that may be necessary to satisfy this requirement includes, for example, time stamps, source and destination addresses, user/process identifiers, event descriptions, success/fail indications, filenames involved, and access control or flow control rules invoked.\\n\\nAssociating event types with detected events in RHEL 8 audit logs provides a means of investigating an attack, recognizing resource utilization or capacity thresholds, or identifying an improperly configured RHEL 8 system.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000038-GPOS-00016, SRG-OS-000039-GPOS-00017, SRG-OS-000040-GPOS-00018, SRG-OS-000041-GPOS-00019, SRG-OS-000042-GPOS-00021, SRG-OS-000051-GPOS-00024, SRG-OS-000054-GPOS-00025, SRG-OS-000122-GPOS-00063, SRG-OS-000254-GPOS-00095, SRG-OS-000255-GPOS-00096, SRG-OS-000337-GPOS-00129, SRG-OS-000348-GPOS-00136, SRG-OS-000349-GPOS-00137, SRG-OS-000350-GPOS-00138, SRG-OS-000351-GPOS-00139, SRG-OS-000352-GPOS-00140, SRG-OS-000353-GPOS-00141, SRG-OS-000354-GPOS-00142, SRG-OS-000358-GPOS-00145, SRG-OS-000365-GPOS-00152, SRG-OS-000392-GPOS-00172, SRG-OS-000475-GPOS-00220\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230411", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230411r744000_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:244", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33055r646880_fix", + "fixtext_fixref": "F-33055r646880_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030180", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230410r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030172", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:243", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The RHEL 8 audit package must be installed.", + "id": "V-230411", + "desc": "Without establishing what type of events occurred, the source of events, where events occurred, and the outcome of events, it would be difficult to establish, correlate, and investigate the events leading up to an outage or attack.\n\nAudit record content that may be necessary to satisfy this requirement includes, for example, time stamps, source and destination addresses, user/process identifiers, event descriptions, success/fail indications, filenames involved, and access control or flow control rules invoked.\n\nAssociating event types with detected events in RHEL 8 audit logs provides a means of investigating an attack, recognizing resource utilization or capacity thresholds, or identifying an improperly configured RHEL 8 system.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000038-GPOS-00016, SRG-OS-000039-GPOS-00017, SRG-OS-000040-GPOS-00018, SRG-OS-000041-GPOS-00019, SRG-OS-000042-GPOS-00021, SRG-OS-000051-GPOS-00024, SRG-OS-000054-GPOS-00025, SRG-OS-000122-GPOS-00063, SRG-OS-000254-GPOS-00095, SRG-OS-000255-GPOS-00096, SRG-OS-000337-GPOS-00129, SRG-OS-000348-GPOS-00136, SRG-OS-000349-GPOS-00137, SRG-OS-000350-GPOS-00138, SRG-OS-000351-GPOS-00139, SRG-OS-000352-GPOS-00140, SRG-OS-000353-GPOS-00141, SRG-OS-000354-GPOS-00142, SRG-OS-000358-GPOS-00145, SRG-OS-000365-GPOS-00152, SRG-OS-000392-GPOS-00172, SRG-OS-000475-GPOS-00220", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:244", + "label": "check" + }, + { + "data": "Configure the audit service to produce audit records containing the information needed to establish when (date and time) an event occurred.\n\nInstall the audit service (if the audit service is not already installed) with the following command:\n\n$ sudo yum install audit", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230411\",\n \"title\": {\n \"text\": \"SRG-OS-000062-GPOS-00031\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230411r744000_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030180\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The RHEL 8 audit package must be installed.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without establishing what type of events occurred, the source of events, where events occurred, and the outcome of events, it would be difficult to establish, correlate, and investigate the events leading up to an outage or attack.\\n\\nAudit record content that may be necessary to satisfy this requirement includes, for example, time stamps, source and destination addresses, user/process identifiers, event descriptions, success/fail indications, filenames involved, and access control or flow control rules invoked.\\n\\nAssociating event types with detected events in RHEL 8 audit logs provides a means of investigating an attack, recognizing resource utilization or capacity thresholds, or identifying an improperly configured RHEL 8 system.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000038-GPOS-00016, SRG-OS-000039-GPOS-00017, SRG-OS-000040-GPOS-00018, SRG-OS-000041-GPOS-00019, SRG-OS-000042-GPOS-00021, SRG-OS-000051-GPOS-00024, SRG-OS-000054-GPOS-00025, SRG-OS-000122-GPOS-00063, SRG-OS-000254-GPOS-00095, SRG-OS-000255-GPOS-00096, SRG-OS-000337-GPOS-00129, SRG-OS-000348-GPOS-00136, SRG-OS-000349-GPOS-00137, SRG-OS-000350-GPOS-00138, SRG-OS-000351-GPOS-00139, SRG-OS-000352-GPOS-00140, SRG-OS-000353-GPOS-00141, SRG-OS-000354-GPOS-00142, SRG-OS-000358-GPOS-00145, SRG-OS-000365-GPOS-00152, SRG-OS-000392-GPOS-00172, SRG-OS-000475-GPOS-00220</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the audit service to produce audit records containing the information needed to establish when (date and time) an event occurred.\\n\\nInstall the audit service (if the audit service is not already installed) with the following command:\\n\\n$ sudo yum install audit\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33055r646880_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33055r646880_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:244\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"su\\\" command allows a user to run commands with a substitute user and group ID.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000064-GPOS-0003, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000466-GPOS-00210\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230412", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230412r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:245", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33056r567983_fix", + "fixtext_fixref": "F-33056r567983_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030190", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230411r744000_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030180", + "weight": "10.000000", + "result": "pass", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:244", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the su command in RHEL 8 must generate an audit record.", + "id": "V-230412", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"su\" command allows a user to run commands with a substitute user and group ID.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000064-GPOS-0003, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000466-GPOS-00210", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:245", + "label": "check" + }, + { + "data": "Configure RHEL 8 to generate audit records when successful/unsuccessful attempts to use the \"su\" command occur by adding or updating the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F path=/usr/bin/su -F perm=x -F auid>=1000 -F auid!=unset -k privileged-priv_change\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230412\",\n \"title\": {\n \"text\": \"SRG-OS-000062-GPOS-00031\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230412r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030190\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"Successful/unsuccessful uses of the su command in RHEL 8 must generate an audit record.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"su\\\" command allows a user to run commands with a substitute user and group ID.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000064-GPOS-0003, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000466-GPOS-00210</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure RHEL 8 to generate audit records when successful/unsuccessful attempts to use the \\\"su\\\" command occur by adding or updating the following rule in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F path=/usr/bin/su -F perm=x -F auid>=1000 -F auid!=unset -k privileged-priv_change\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33056r567983_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33056r567983_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:245\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). \\\"Lremovexattr\\\" is a system call that removes extended attributes. This is used for removal of extended attributes from symbolic links.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000462-GPOS-00206, SRG-OS-000463-GPOS-00207, SRG-OS-000468-GPOS-00212, SRG-OS-000471-GPOS-00215, SRG-OS-000474-GPOS-00219, SRG-OS-000466-GPOS-00210\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230413", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230413r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:246", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33057r567986_fix", + "fixtext_fixref": "F-33057r567986_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030200", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230412r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030190", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:245", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The RHEL 8 audit system must be configured to audit any usage of the lremovexattr system call.", + "id": "V-230413", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). \"Lremovexattr\" is a system call that removes extended attributes. This is used for removal of extended attributes from symbolic links.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000462-GPOS-00206, SRG-OS-000463-GPOS-00207, SRG-OS-000468-GPOS-00212, SRG-OS-000471-GPOS-00215, SRG-OS-000474-GPOS-00219, SRG-OS-000466-GPOS-00210", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:246", + "label": "check" + }, + { + "data": "Configure RHEL 8 to audit the execution of the \"lremovexattr\" system call, by adding or updating the following lines to \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S lremovexattr -F auid>=1000 -F auid!=unset -k perm_mod\n-a always,exit -F arch=b64 -S lremovexattr -F auid>=1000 -F auid!=unset -k perm_mod\n\n-a always,exit -F arch=b32 -S lremovexattr -F auid=0 -k perm_mod\n-a always,exit -F arch=b64 -S lremovexattr -F auid=0 -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230413\",\n \"title\": {\n \"text\": \"SRG-OS-000062-GPOS-00031\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230413r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030200\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The RHEL 8 audit system must be configured to audit any usage of the lremovexattr system call.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). \\\"Lremovexattr\\\" is a system call that removes extended attributes. This is used for removal of extended attributes from symbolic links.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000462-GPOS-00206, SRG-OS-000463-GPOS-00207, SRG-OS-000468-GPOS-00212, SRG-OS-000471-GPOS-00215, SRG-OS-000474-GPOS-00219, SRG-OS-000466-GPOS-00210</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure RHEL 8 to audit the execution of the \\\"lremovexattr\\\" system call, by adding or updating the following lines to \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F arch=b32 -S lremovexattr -F auid>=1000 -F auid!=unset -k perm_mod\\n-a always,exit -F arch=b64 -S lremovexattr -F auid>=1000 -F auid!=unset -k perm_mod\\n\\n-a always,exit -F arch=b32 -S lremovexattr -F auid=0 -k perm_mod\\n-a always,exit -F arch=b64 -S lremovexattr -F auid=0 -k perm_mod\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33057r567986_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33057r567986_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:246\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). \\\"Removexattr\\\" is a system call that removes extended attributes.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000462-GPOS-00206, SRG-OS-000463-GPOS-00207, SRG-OS-000468-GPOS-00212, SRG-OS-000471-GPOS-00215, SRG-OS-000474-GPOS-00219, SRG-OS-000466-GPOS-00210\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230414", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230414r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:247", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33058r567989_fix", + "fixtext_fixref": "F-33058r567989_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030210", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230413r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030200", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:246", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The RHEL 8 audit system must be configured to audit any usage of the removexattr system call.", + "id": "V-230414", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). \"Removexattr\" is a system call that removes extended attributes.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000462-GPOS-00206, SRG-OS-000463-GPOS-00207, SRG-OS-000468-GPOS-00212, SRG-OS-000471-GPOS-00215, SRG-OS-000474-GPOS-00219, SRG-OS-000466-GPOS-00210", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:247", + "label": "check" + }, + { + "data": "Configure RHEL 8 to audit the execution of the \"removexattr\" system call, by adding or updating the following lines to \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S removexattr -F auid>=1000 -F auid!=unset -k perm_mod\n-a always,exit -F arch=b64 -S removexattr -F auid>=1000 -F auid!=unset -k perm_mod\n\n-a always,exit -F arch=b32 -S removexattr -F auid=0 -k perm_mod\n-a always,exit -F arch=b64 -S removexattr -F auid=0 -k perm_mod \n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230414\",\n \"title\": {\n \"text\": \"SRG-OS-000062-GPOS-00031\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230414r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030210\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The RHEL 8 audit system must be configured to audit any usage of the removexattr system call.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). \\\"Removexattr\\\" is a system call that removes extended attributes.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000462-GPOS-00206, SRG-OS-000463-GPOS-00207, SRG-OS-000468-GPOS-00212, SRG-OS-000471-GPOS-00215, SRG-OS-000474-GPOS-00219, SRG-OS-000466-GPOS-00210</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure RHEL 8 to audit the execution of the \\\"removexattr\\\" system call, by adding or updating the following lines to \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F arch=b32 -S removexattr -F auid>=1000 -F auid!=unset -k perm_mod\\n-a always,exit -F arch=b64 -S removexattr -F auid>=1000 -F auid!=unset -k perm_mod\\n\\n-a always,exit -F arch=b32 -S removexattr -F auid=0 -k perm_mod\\n-a always,exit -F arch=b64 -S removexattr -F auid=0 -k perm_mod \\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33058r567989_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33058r567989_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:247\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). \\\"Lsetxattr\\\" is a system call used to set an extended attribute value. This is used to set extended attributes on a symbolic link.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000462-GPOS-00206, SRG-OS-000463-GPOS-00207, SRG-OS-000468-GPOS-00212, SRG-OS-000471-GPOS-00215, SRG-OS-000474-GPOS-00219\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230415", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230415r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:248", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33059r567992_fix", + "fixtext_fixref": "F-33059r567992_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030220", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230414r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030210", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:247", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The RHEL 8 audit system must be configured to audit any usage of the lsetxattr system call.", + "id": "V-230415", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). \"Lsetxattr\" is a system call used to set an extended attribute value. This is used to set extended attributes on a symbolic link.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000462-GPOS-00206, SRG-OS-000463-GPOS-00207, SRG-OS-000468-GPOS-00212, SRG-OS-000471-GPOS-00215, SRG-OS-000474-GPOS-00219", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:248", + "label": "check" + }, + { + "data": "Configure RHEL 8 to audit the execution of the \"lsetxattr\" system call, by adding or updating the following lines to \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S lsetxattr -F auid>=1000 -F auid!=unset -k perm_mod\n-a always,exit -F arch=b64 -S lsetxattr -F auid>=1000 -F auid!=unset -k perm_mod\n\n-a always,exit -F arch=b32 -S lsetxattr -F auid=0 -k perm_mod \n-a always,exit -F arch=b64 -S lsetxattr -F auid=0 -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230415\",\n \"title\": {\n \"text\": \"SRG-OS-000062-GPOS-00031\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230415r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030220\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The RHEL 8 audit system must be configured to audit any usage of the lsetxattr system call.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). \\\"Lsetxattr\\\" is a system call used to set an extended attribute value. This is used to set extended attributes on a symbolic link.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000462-GPOS-00206, SRG-OS-000463-GPOS-00207, SRG-OS-000468-GPOS-00212, SRG-OS-000471-GPOS-00215, SRG-OS-000474-GPOS-00219</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure RHEL 8 to audit the execution of the \\\"lsetxattr\\\" system call, by adding or updating the following lines to \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F arch=b32 -S lsetxattr -F auid>=1000 -F auid!=unset -k perm_mod\\n-a always,exit -F arch=b64 -S lsetxattr -F auid>=1000 -F auid!=unset -k perm_mod\\n\\n-a always,exit -F arch=b32 -S lsetxattr -F auid=0 -k perm_mod \\n-a always,exit -F arch=b64 -S lsetxattr -F auid=0 -k perm_mod\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33059r567992_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33059r567992_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:248\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). \\\"Fsetxattr\\\" is a system call used to set an extended attribute value. This is used to set extended attributes on a file.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The auid representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000462-GPOS-00206, SRG-OS-000463-GPOS-00207, SRG-OS-000468-GPOS-00212, SRG-OS-000471-GPOS-00215, SRG-OS-000474-GPOS-00219\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230416", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230416r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:249", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33060r567995_fix", + "fixtext_fixref": "F-33060r567995_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030230", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230415r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030220", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:248", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The RHEL 8 audit system must be configured to audit any usage of the fsetxattr system call.", + "id": "V-230416", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). \"Fsetxattr\" is a system call used to set an extended attribute value. This is used to set extended attributes on a file.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The auid representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000462-GPOS-00206, SRG-OS-000463-GPOS-00207, SRG-OS-000468-GPOS-00212, SRG-OS-000471-GPOS-00215, SRG-OS-000474-GPOS-00219", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:249", + "label": "check" + }, + { + "data": "Configure RHEL 8 to audit the execution of the \"fsetxattr\" system call, by adding or updating the following lines to \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S fsetxattr -F auid>=1000 -F auid!=unset -k perm_mod\n-a always,exit -F arch=b64 -S fsetxattr -F auid>=1000 -F auid!=unset -k perm_mod\n\n-a always,exit -F arch=b32 -S fsetxattr -F auid=0 -k perm_mod\n-a always,exit -F arch=b64 -S fsetxattr -F auid=0 -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230416\",\n \"title\": {\n \"text\": \"SRG-OS-000062-GPOS-00031\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230416r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030230\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The RHEL 8 audit system must be configured to audit any usage of the fsetxattr system call.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). \\\"Fsetxattr\\\" is a system call used to set an extended attribute value. This is used to set extended attributes on a file.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The auid representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000462-GPOS-00206, SRG-OS-000463-GPOS-00207, SRG-OS-000468-GPOS-00212, SRG-OS-000471-GPOS-00215, SRG-OS-000474-GPOS-00219</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure RHEL 8 to audit the execution of the \\\"fsetxattr\\\" system call, by adding or updating the following lines to \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F arch=b32 -S fsetxattr -F auid>=1000 -F auid!=unset -k perm_mod\\n-a always,exit -F arch=b64 -S fsetxattr -F auid>=1000 -F auid!=unset -k perm_mod\\n\\n-a always,exit -F arch=b32 -S fsetxattr -F auid=0 -k perm_mod\\n-a always,exit -F arch=b64 -S fsetxattr -F auid=0 -k perm_mod\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33060r567995_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33060r567995_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:249\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). \\\"Fremovexattr\\\" is a system call that removes extended attributes. This is used for removal of extended attributes from a file.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000462-GPOS-00206, SRG-OS-000463-GPOS-00207, SRG-OS-000471-GPOS-00215, SRG-OS-000474-GPOS-00219, SRG-OS-000466-GPOS-00210\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230417", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230417r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:250", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33061r567998_fix", + "fixtext_fixref": "F-33061r567998_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030240", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230416r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030230", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:249", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The RHEL 8 audit system must be configured to audit any usage of the fremovexattr system call.", + "id": "V-230417", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). \"Fremovexattr\" is a system call that removes extended attributes. This is used for removal of extended attributes from a file.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000462-GPOS-00206, SRG-OS-000463-GPOS-00207, SRG-OS-000471-GPOS-00215, SRG-OS-000474-GPOS-00219, SRG-OS-000466-GPOS-00210", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:250", + "label": "check" + }, + { + "data": "Configure RHEL 8 to audit the execution of the \"fremovexattr\" system call by adding or updating the following lines to \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S fremovexattr -F auid>=1000 -F auid!=unset -k perm_mod\n-a always,exit -F arch=b64 -S fremovexattr -F auid>=1000 -F auid!=unset -k perm_mod\n\n-a always,exit -F arch=b32 -S fremovexattr -F auid=0 -k perm_mod\n-a always,exit -F arch=b64 -S fremovexattr -F auid=0 -k perm_mod \n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230417\",\n \"title\": {\n \"text\": \"SRG-OS-000062-GPOS-00031\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230417r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030240\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The RHEL 8 audit system must be configured to audit any usage of the fremovexattr system call.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). \\\"Fremovexattr\\\" is a system call that removes extended attributes. This is used for removal of extended attributes from a file.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000462-GPOS-00206, SRG-OS-000463-GPOS-00207, SRG-OS-000471-GPOS-00215, SRG-OS-000474-GPOS-00219, SRG-OS-000466-GPOS-00210</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure RHEL 8 to audit the execution of the \\\"fremovexattr\\\" system call by adding or updating the following lines to \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F arch=b32 -S fremovexattr -F auid>=1000 -F auid!=unset -k perm_mod\\n-a always,exit -F arch=b64 -S fremovexattr -F auid>=1000 -F auid!=unset -k perm_mod\\n\\n-a always,exit -F arch=b32 -S fremovexattr -F auid=0 -k perm_mod\\n-a always,exit -F arch=b64 -S fremovexattr -F auid=0 -k perm_mod \\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33061r567998_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33061r567998_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:250\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"chage\\\" command is used to change or view user password expiry information.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000468-GPOS-00212, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230418", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230418r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:251", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33062r568001_fix", + "fixtext_fixref": "F-33062r568001_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030250", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230417r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030240", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:250", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the chage command in RHEL 8 must generate an audit record.", + "id": "V-230418", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"chage\" command is used to change or view user password expiry information.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000468-GPOS-00212, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:251", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \"chage\" command by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/bin/chage -F perm=x -F auid>=1000 -F auid!=unset -k privileged-chage\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230418\",\n \"title\": {\n \"text\": \"SRG-OS-000062-GPOS-00031\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230418r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030250\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"Successful/unsuccessful uses of the chage command in RHEL 8 must generate an audit record.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"chage\\\" command is used to change or view user password expiry information.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000468-GPOS-00212, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \\\"chage\\\" command by adding or updating the following rule in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-a always,exit -F path=/usr/bin/chage -F perm=x -F auid>=1000 -F auid!=unset -k privileged-chage\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33062r568001_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33062r568001_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:251\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"chcon\\\" command is used to change file SELinux security context.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000468-GPOS-00212, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230419", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230419r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:252", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33063r568004_fix", + "fixtext_fixref": "F-33063r568004_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030260", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230418r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030250", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:251", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the chcon command in RHEL 8 must generate an audit record.", + "id": "V-230419", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"chcon\" command is used to change file SELinux security context.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000468-GPOS-00212, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:252", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"chcon\" command by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/bin/chcon -F perm=x -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230419\",\n \"title\": {\n \"text\": \"SRG-OS-000062-GPOS-00031\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230419r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030260\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"Successful/unsuccessful uses of the chcon command in RHEL 8 must generate an audit record.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"chcon\\\" command is used to change file SELinux security context.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000468-GPOS-00212, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful use of the \\\"chcon\\\" command by adding or updating the following rule in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-a always,exit -F path=/usr/bin/chcon -F perm=x -F auid>=1000 -F auid!=unset -k perm_mod\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33063r568004_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33063r568004_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:252\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). \\\"Setxattr\\\" is a system call used to set an extended attribute value.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230420", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230420r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:253", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33064r568007_fix", + "fixtext_fixref": "F-33064r568007_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030270", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230419r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030260", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:252", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The RHEL 8 audit system must be configured to audit any usage of the setxattr system call.", + "id": "V-230420", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). \"Setxattr\" is a system call used to set an extended attribute value.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:253", + "label": "check" + }, + { + "data": "Configure RHEL 8 to audit the execution of the \"setxattr\" system call, by adding or updating the following lines to \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S setxattr -F auid>=1000 -F auid!=unset -k perm_mod\n-a always,exit -F arch=b64 -S setxattr -F auid>=1000 -F auid!=unset -k perm_mod\n\n-a always,exit -F arch=b32 -S setxattr -F auid=0 -k perm_mod\n-a always,exit -F arch=b64 -S setxattr -F auid=0 -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230420\",\n \"title\": {\n \"text\": \"SRG-OS-000062-GPOS-00031\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230420r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030270\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The RHEL 8 audit system must be configured to audit any usage of the setxattr system call.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). \\\"Setxattr\\\" is a system call used to set an extended attribute value.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure RHEL 8 to audit the execution of the \\\"setxattr\\\" system call, by adding or updating the following lines to \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F arch=b32 -S setxattr -F auid>=1000 -F auid!=unset -k perm_mod\\n-a always,exit -F arch=b64 -S setxattr -F auid>=1000 -F auid!=unset -k perm_mod\\n\\n-a always,exit -F arch=b32 -S setxattr -F auid=0 -k perm_mod\\n-a always,exit -F arch=b64 -S setxattr -F auid=0 -k perm_mod\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33064r568007_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33064r568007_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:253\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"ssh-agent\\\" is a program to hold private keys used for public key authentication.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230421", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230421r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:254", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33065r568010_fix", + "fixtext_fixref": "F-33065r568010_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030280", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230420r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030270", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:253", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the ssh-agent in RHEL 8 must generate an audit record.", + "id": "V-230421", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"ssh-agent\" is a program to hold private keys used for public key authentication.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:254", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"ssh-agent\" by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/bin/ssh-agent -F perm=x -F auid>=1000 -F auid!=unset -k privileged-ssh\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230421\",\n \"title\": {\n \"text\": \"SRG-OS-000062-GPOS-00031\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230421r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030280\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"Successful/unsuccessful uses of the ssh-agent in RHEL 8 must generate an audit record.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"ssh-agent\\\" is a program to hold private keys used for public key authentication.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful use of the \\\"ssh-agent\\\" by adding or updating the following rule in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-a always,exit -F path=/usr/bin/ssh-agent -F perm=x -F auid>=1000 -F auid!=unset -k privileged-ssh\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33065r568010_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33065r568010_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:254\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"passwd\\\" command is used to change passwords for user accounts.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230422", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230422r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:255", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33066r568013_fix", + "fixtext_fixref": "F-33066r568013_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030290", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230421r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030280", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:254", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the passwd command in RHEL 8 must generate an audit record.", + "id": "V-230422", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"passwd\" command is used to change passwords for user accounts.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:255", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \"passwd\" command by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/bin/passwd -F perm=x -F auid>=1000 -F auid!=unset -k privileged-passwd\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230422\",\n \"title\": {\n \"text\": \"SRG-OS-000062-GPOS-00031\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230422r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030290\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"Successful/unsuccessful uses of the passwd command in RHEL 8 must generate an audit record.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"passwd\\\" command is used to change passwords for user accounts.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \\\"passwd\\\" command by adding or updating the following rule in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-a always,exit -F path=/usr/bin/passwd -F perm=x -F auid>=1000 -F auid!=unset -k privileged-passwd\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33066r568013_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33066r568013_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:255\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"mount\\\" command is used to mount a filesystem.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230423", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230423r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:256", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33067r568016_fix", + "fixtext_fixref": "F-33067r568016_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030300", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230422r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030290", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:255", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the mount command in RHEL 8 must generate an audit record.", + "id": "V-230423", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"mount\" command is used to mount a filesystem.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:256", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"mount\" command by adding or updating the following rules in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/bin/mount -F perm=x -F auid>=1000 -F auid!=unset -k privileged-mount\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230423\",\n \"title\": {\n \"text\": \"SRG-OS-000062-GPOS-00031\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230423r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030300\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"Successful/unsuccessful uses of the mount command in RHEL 8 must generate an audit record.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"mount\\\" command is used to mount a filesystem.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful use of the \\\"mount\\\" command by adding or updating the following rules in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-a always,exit -F path=/usr/bin/mount -F perm=x -F auid>=1000 -F auid!=unset -k privileged-mount\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33067r568016_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33067r568016_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:256\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"umount\\\" command is used to unmount a filesystem.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230424", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230424r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:257", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33068r568019_fix", + "fixtext_fixref": "F-33068r568019_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030301", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230423r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030300", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:256", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the umount command in RHEL 8 must generate an audit record.", + "id": "V-230424", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"umount\" command is used to unmount a filesystem.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:257", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"umount\" command by adding or updating the following rules in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/bin/umount -F perm=x -F auid>=1000 -F auid!=unset -k privileged-mount\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230424\",\n \"title\": {\n \"text\": \"SRG-OS-000062-GPOS-00031\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230424r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030301\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"Successful/unsuccessful uses of the umount command in RHEL 8 must generate an audit record.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"umount\\\" command is used to unmount a filesystem.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful use of the \\\"umount\\\" command by adding or updating the following rules in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-a always,exit -F path=/usr/bin/umount -F perm=x -F auid>=1000 -F auid!=unset -k privileged-mount\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33068r568019_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33068r568019_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:257\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"mount\\\" syscall is used to mount a filesystem.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230425", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230425r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:258", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33069r568022_fix", + "fixtext_fixref": "F-33069r568022_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030302", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230424r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030301", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:257", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the mount syscall in RHEL 8 must generate an audit record.", + "id": "V-230425", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"mount\" syscall is used to mount a filesystem.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:258", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"mount\" syscall by adding or updating the following rules in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F arch=b32 -S mount -F auid>=1000 -F auid!=unset -k privileged-mount\n-a always,exit -F arch=b64 -S mount -F auid>=1000 -F auid!=unset -k privileged-mount\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230425\",\n \"title\": {\n \"text\": \"SRG-OS-000062-GPOS-00031\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230425r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030302\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"Successful/unsuccessful uses of the mount syscall in RHEL 8 must generate an audit record.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"mount\\\" syscall is used to mount a filesystem.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful use of the \\\"mount\\\" syscall by adding or updating the following rules in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-a always,exit -F arch=b32 -S mount -F auid>=1000 -F auid!=unset -k privileged-mount\\n-a always,exit -F arch=b64 -S mount -F auid>=1000 -F auid!=unset -k privileged-mount\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33069r568022_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33069r568022_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:258\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. \\\"Unix_update\\\" is a helper program for the \\\"pam_unix\\\" module that updates the password for a given user. It is not intended to be run directly from the command line and logs a security violation if done so.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230426", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230426r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:259", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33070r568025_fix", + "fixtext_fixref": "F-33070r568025_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030310", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230425r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030302", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:258", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the unix_update in RHEL 8 must generate an audit record.", + "id": "V-230426", + "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. \"Unix_update\" is a helper program for the \"pam_unix\" module that updates the password for a given user. It is not intended to be run directly from the command line and logs a security violation if done so.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:259", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \"unix_update\" by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/sbin/unix_update -F perm=x -F auid>=1000 -F auid!=unset -k privileged-unix-update\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230426\",\n \"title\": {\n \"text\": \"SRG-OS-000062-GPOS-00031\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230426r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030310\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"Successful/unsuccessful uses of the unix_update in RHEL 8 must generate an audit record.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. \\\"Unix_update\\\" is a helper program for the \\\"pam_unix\\\" module that updates the password for a given user. It is not intended to be run directly from the command line and logs a security violation if done so.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \\\"unix_update\\\" by adding or updating the following rule in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-a always,exit -F path=/usr/sbin/unix_update -F perm=x -F auid>=1000 -F auid!=unset -k privileged-unix-update\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33070r568025_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33070r568025_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:259\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. The \\\"postdrop\\\" command creates a file in the maildrop directory and copies its standard input to the file.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230427", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230427r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:260", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33071r568028_fix", + "fixtext_fixref": "F-33071r568028_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030311", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230426r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030310", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:259", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of postdrop in RHEL 8 must generate an audit record.", + "id": "V-230427", + "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. The \"postdrop\" command creates a file in the maildrop directory and copies its standard input to the file.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:260", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \"postdrop\" by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/sbin/postdrop -F perm=x -F auid>=1000 -F auid!=unset -k privileged-unix-update\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230427\",\n \"title\": {\n \"text\": \"SRG-OS-000062-GPOS-00031\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230427r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030311\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"Successful/unsuccessful uses of postdrop in RHEL 8 must generate an audit record.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. The \\\"postdrop\\\" command creates a file in the maildrop directory and copies its standard input to the file.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \\\"postdrop\\\" by adding or updating the following rule in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-a always,exit -F path=/usr/sbin/postdrop -F perm=x -F auid>=1000 -F auid!=unset -k privileged-unix-update\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33071r568028_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33071r568028_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:260\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. The \\\"postqueue\\\" command implements the Postfix user interface for queue management.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230428", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230428r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:261", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33072r568031_fix", + "fixtext_fixref": "F-33072r568031_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030312", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230427r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030311", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:260", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of postqueue in RHEL 8 must generate an audit record.", + "id": "V-230428", + "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. The \"postqueue\" command implements the Postfix user interface for queue management.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:261", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \"postqueue\" by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/sbin/postqueue -F perm=x -F auid>=1000 -F auid!=unset -k privileged-unix-update\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230428\",\n \"title\": {\n \"text\": \"SRG-OS-000062-GPOS-00031\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230428r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030312\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"Successful/unsuccessful uses of postqueue in RHEL 8 must generate an audit record.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. The \\\"postqueue\\\" command implements the Postfix user interface for queue management.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \\\"postqueue\\\" by adding or updating the following rule in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-a always,exit -F path=/usr/sbin/postqueue -F perm=x -F auid>=1000 -F auid!=unset -k privileged-unix-update\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33072r568031_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33072r568031_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:261\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. The \\\"semanage\\\" command is used to configure certain elements of SELinux policy without requiring modification to or recompilation from policy sources.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230429", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230429r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:262", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33073r568034_fix", + "fixtext_fixref": "F-33073r568034_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030313", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230428r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030312", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:261", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of semanage in RHEL 8 must generate an audit record.", + "id": "V-230429", + "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. The \"semanage\" command is used to configure certain elements of SELinux policy without requiring modification to or recompilation from policy sources.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:262", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \"semanage\" by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/sbin/semanage -F perm=x -F auid>=1000 -F auid!=unset -k privileged-unix-update\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230429\",\n \"title\": {\n \"text\": \"SRG-OS-000062-GPOS-00031\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230429r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030313\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"Successful/unsuccessful uses of semanage in RHEL 8 must generate an audit record.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. The \\\"semanage\\\" command is used to configure certain elements of SELinux policy without requiring modification to or recompilation from policy sources.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \\\"semanage\\\" by adding or updating the following rule in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-a always,exit -F path=/usr/sbin/semanage -F perm=x -F auid>=1000 -F auid!=unset -k privileged-unix-update\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33073r568034_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33073r568034_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:262\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. The \\\"setfiles\\\" command is primarily used to initialize the security context fields (extended attributes) on one or more filesystems (or parts of them). Usually it is initially run as part of the SELinux installation process (a step commonly known as labeling).\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230430", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230430r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:263", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33074r568037_fix", + "fixtext_fixref": "F-33074r568037_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030314", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230429r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030313", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:262", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of setfiles in RHEL 8 must generate an audit record.", + "id": "V-230430", + "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. The \"setfiles\" command is primarily used to initialize the security context fields (extended attributes) on one or more filesystems (or parts of them). Usually it is initially run as part of the SELinux installation process (a step commonly known as labeling).\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:263", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \"setfiles\" by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/sbin/setfiles -F perm=x -F auid>=1000 -F auid!=unset -k privileged-unix-update\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230430\",\n \"title\": {\n \"text\": \"SRG-OS-000062-GPOS-00031\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230430r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030314\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"Successful/unsuccessful uses of setfiles in RHEL 8 must generate an audit record.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. The \\\"setfiles\\\" command is primarily used to initialize the security context fields (extended attributes) on one or more filesystems (or parts of them). Usually it is initially run as part of the SELinux installation process (a step commonly known as labeling).\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \\\"setfiles\\\" by adding or updating the following rule in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-a always,exit -F path=/usr/sbin/setfiles -F perm=x -F auid>=1000 -F auid!=unset -k privileged-unix-update\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33074r568037_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33074r568037_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:263\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. The \\\"userhelper\\\" command is not intended to be run interactively. \\\"Userhelper\\\" provides a basic interface to change a user's password, gecos information, and shell. The main difference between this program and its traditional equivalents (passwd, chfn, chsh) is that prompts are written to standard out to make it easy for a graphical user interface wrapper to interface to it as a child process.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230431", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230431r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:264", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33075r568040_fix", + "fixtext_fixref": "F-33075r568040_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030315", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230430r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030314", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:263", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of userhelper in RHEL 8 must generate an audit record.", + "id": "V-230431", + "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. The \"userhelper\" command is not intended to be run interactively. \"Userhelper\" provides a basic interface to change a user's password, gecos information, and shell. The main difference between this program and its traditional equivalents (passwd, chfn, chsh) is that prompts are written to standard out to make it easy for a graphical user interface wrapper to interface to it as a child process.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:264", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \"userhelper\" by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/sbin/userhelper -F perm=x -F auid>=1000 -F auid!=unset -k privileged-unix-update\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230431\",\n \"title\": {\n \"text\": \"SRG-OS-000062-GPOS-00031\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230431r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030315\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"Successful/unsuccessful uses of userhelper in RHEL 8 must generate an audit record.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. The \\\"userhelper\\\" command is not intended to be run interactively. \\\"Userhelper\\\" provides a basic interface to change a user's password, gecos information, and shell. The main difference between this program and its traditional equivalents (passwd, chfn, chsh) is that prompts are written to standard out to make it easy for a graphical user interface wrapper to interface to it as a child process.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \\\"userhelper\\\" by adding or updating the following rule in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-a always,exit -F path=/usr/sbin/userhelper -F perm=x -F auid>=1000 -F auid!=unset -k privileged-unix-update\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33075r568040_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33075r568040_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:264\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. The \\\"setsebool\\\" command sets the current state of a particular SELinux boolean or a list of booleans to a given value.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230432", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230432r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:265", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33076r568043_fix", + "fixtext_fixref": "F-33076r568043_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030316", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230431r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030315", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:264", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of setsebool in RHEL 8 must generate an audit record.", + "id": "V-230432", + "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. The \"setsebool\" command sets the current state of a particular SELinux boolean or a list of booleans to a given value.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:265", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \"setsebool\" by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/sbin/setsebool -F perm=x -F auid>=1000 -F auid!=unset -k privileged-unix-update\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230432\",\n \"title\": {\n \"text\": \"SRG-OS-000062-GPOS-00031\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230432r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030316\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"Successful/unsuccessful uses of setsebool in RHEL 8 must generate an audit record.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. The \\\"setsebool\\\" command sets the current state of a particular SELinux boolean or a list of booleans to a given value.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \\\"setsebool\\\" by adding or updating the following rule in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-a always,exit -F path=/usr/sbin/setsebool -F perm=x -F auid>=1000 -F auid!=unset -k privileged-unix-update\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33076r568043_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33076r568043_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:265\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. The \\\"unix_chkpwd\\\" command is a helper program for the pam_unix module that verifies the password of the current user. It also checks password and account expiration dates in shadow. It is not intended to be run directly from the command line and logs a security violation if done so.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230433", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230433r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:266", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33077r568046_fix", + "fixtext_fixref": "F-33077r568046_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030317", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230432r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030316", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:265", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of unix_chkpwd in RHEL 8 must generate an audit record.", + "id": "V-230433", + "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. The \"unix_chkpwd\" command is a helper program for the pam_unix module that verifies the password of the current user. It also checks password and account expiration dates in shadow. It is not intended to be run directly from the command line and logs a security violation if done so.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:266", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \"unix_chkpwd\" by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/sbin/unix_chkpwd -F perm=x -F auid>=1000 -F auid!=unset -k privileged-unix-update\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230433\",\n \"title\": {\n \"text\": \"SRG-OS-000062-GPOS-00031\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230433r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030317\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"Successful/unsuccessful uses of unix_chkpwd in RHEL 8 must generate an audit record.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. The \\\"unix_chkpwd\\\" command is a helper program for the pam_unix module that verifies the password of the current user. It also checks password and account expiration dates in shadow. It is not intended to be run directly from the command line and logs a security violation if done so.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \\\"unix_chkpwd\\\" by adding or updating the following rule in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-a always,exit -F path=/usr/sbin/unix_chkpwd -F perm=x -F auid>=1000 -F auid!=unset -k privileged-unix-update\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33077r568046_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33077r568046_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:266\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"ssh-keysign\\\" program is an SSH helper program for host-based authentication.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230434", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230434r744002_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:267", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33078r744001_fix", + "fixtext_fixref": "F-33078r744001_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030320", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230433r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030317", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:266", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the ssh-keysign in RHEL 8 must generate an audit record.", + "id": "V-230434", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"ssh-keysign\" program is an SSH helper program for host-based authentication.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:267", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"ssh-keysign\" by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/libexec/openssh/ssh-keysign -F perm=x -F auid>=1000 -F auid!=unset -k privileged-ssh\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230434\",\n \"title\": {\n \"text\": \"SRG-OS-000062-GPOS-00031\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230434r744002_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030320\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"Successful/unsuccessful uses of the ssh-keysign in RHEL 8 must generate an audit record.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"ssh-keysign\\\" program is an SSH helper program for host-based authentication.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful use of the \\\"ssh-keysign\\\" by adding or updating the following rule in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-a always,exit -F path=/usr/libexec/openssh/ssh-keysign -F perm=x -F auid>=1000 -F auid!=unset -k privileged-ssh\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33078r744001_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33078r744001_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:267\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"setfacl\\\" command is used to set file access control lists.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230435", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230435r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:268", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33079r568052_fix", + "fixtext_fixref": "F-33079r568052_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030330", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230434r744002_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030320", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:267", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the setfacl command in RHEL 8 must generate an audit record.", + "id": "V-230435", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"setfacl\" command is used to set file access control lists.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:268", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"setfacl\" command by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/bin/setfacl -F perm=x -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230435\",\n \"title\": {\n \"text\": \"SRG-OS-000062-GPOS-00031\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230435r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030330\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"Successful/unsuccessful uses of the setfacl command in RHEL 8 must generate an audit record.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"setfacl\\\" command is used to set file access control lists.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful use of the \\\"setfacl\\\" command by adding or updating the following rule in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-a always,exit -F path=/usr/bin/setfacl -F perm=x -F auid>=1000 -F auid!=unset -k perm_mod\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33079r568052_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33079r568052_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:268\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"pam_timestamp_check\\\" command is used to check if the default timestamp is valid.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230436", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230436r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:269", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33080r568055_fix", + "fixtext_fixref": "F-33080r568055_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030340", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230435r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030330", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:268", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the pam_timestamp_check command in RHEL 8 must generate an audit record.", + "id": "V-230436", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"pam_timestamp_check\" command is used to check if the default timestamp is valid.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:269", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \"pam_timestamp_check\" command by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/sbin/pam_timestamp_check -F perm=x -F auid>=1000 -F auid!=unset -k privileged-pam_timestamp_check\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230436\",\n \"title\": {\n \"text\": \"SRG-OS-000062-GPOS-00031\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230436r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030340\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"Successful/unsuccessful uses of the pam_timestamp_check command in RHEL 8 must generate an audit record.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"pam_timestamp_check\\\" command is used to check if the default timestamp is valid.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \\\"pam_timestamp_check\\\" command by adding or updating the following rule in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-a always,exit -F path=/usr/sbin/pam_timestamp_check -F perm=x -F auid>=1000 -F auid!=unset -k privileged-pam_timestamp_check\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33080r568055_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33080r568055_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:269\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"newgrp\\\" command is used to change the current group ID during a login session.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230437", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230437r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:270", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33081r568058_fix", + "fixtext_fixref": "F-33081r568058_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030350", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230436r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030340", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:269", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the newgrp command in RHEL 8 must generate an audit record.", + "id": "V-230437", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"newgrp\" command is used to change the current group ID during a login session.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:270", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"newgrp\" command by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/bin/newgrp -F perm=x -F auid>=1000 -F auid!=unset -k priv_cmd\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230437\",\n \"title\": {\n \"text\": \"SRG-OS-000062-GPOS-00031\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230437r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030350\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"Successful/unsuccessful uses of the newgrp command in RHEL 8 must generate an audit record.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"newgrp\\\" command is used to change the current group ID during a login session.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful use of the \\\"newgrp\\\" command by adding or updating the following rule in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-a always,exit -F path=/usr/bin/newgrp -F perm=x -F auid>=1000 -F auid!=unset -k priv_cmd\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33081r568058_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33081r568058_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:270\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"init_module\\\" command is used to load a kernel module.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230438", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230438r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:271", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33082r568061_fix", + "fixtext_fixref": "F-33082r568061_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030360", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230437r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030350", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:270", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the init_module command in RHEL 8 must generate an audit record.", + "id": "V-230438", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"init_module\" command is used to load a kernel module.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:271", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"init_module\" command by adding or updating the following rules in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F arch=b32 -S init_module -F auid>=1000 -F auid!=unset -k module_chng\n-a always,exit -F arch=b64 -S init_module -F auid>=1000 -F auid!=unset -k module_chng\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230438\",\n \"title\": {\n \"text\": \"SRG-OS-000062-GPOS-00031\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230438r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030360\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"Successful/unsuccessful uses of the init_module command in RHEL 8 must generate an audit record.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"init_module\\\" command is used to load a kernel module.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful use of the \\\"init_module\\\" command by adding or updating the following rules in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-a always,exit -F arch=b32 -S init_module -F auid>=1000 -F auid!=unset -k module_chng\\n-a always,exit -F arch=b64 -S init_module -F auid>=1000 -F auid!=unset -k module_chng\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33082r568061_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33082r568061_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:271\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"rename\\\" command will rename the specified files by replacing the first occurrence of expression in their name by replacement.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230439", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230439r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:272", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33083r568064_fix", + "fixtext_fixref": "F-33083r568064_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030361", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230438r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030360", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:271", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the rename command in RHEL 8 must generate an audit record.", + "id": "V-230439", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"rename\" command will rename the specified files by replacing the first occurrence of expression in their name by replacement.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:272", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"rename\" command by adding or updating the following rules in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F arch=b32 -S rename -F auid>=1000 -F auid!=unset -k delete\n-a always,exit -F arch=b64 -S rename -F auid>=1000 -F auid!=unset -k delete\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230439\",\n \"title\": {\n \"text\": \"SRG-OS-000062-GPOS-00031\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230439r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030361\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"Successful/unsuccessful uses of the rename command in RHEL 8 must generate an audit record.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"rename\\\" command will rename the specified files by replacing the first occurrence of expression in their name by replacement.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful use of the \\\"rename\\\" command by adding or updating the following rules in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-a always,exit -F arch=b32 -S rename -F auid>=1000 -F auid!=unset -k delete\\n-a always,exit -F arch=b64 -S rename -F auid>=1000 -F auid!=unset -k delete\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33083r568064_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33083r568064_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:272\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"renameat\\\" command renames a file, moving it between directories if required.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230440", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230440r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:273", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33084r568067_fix", + "fixtext_fixref": "F-33084r568067_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030362", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230439r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030361", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:272", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the renameat command in RHEL 8 must generate an audit record.", + "id": "V-230440", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"renameat\" command renames a file, moving it between directories if required.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:273", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"renameat\" command by adding or updating the following rules in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F arch=b32 -S renameat -F auid>=1000 -F auid!=unset -k delete\n-a always,exit -F arch=b64 -S renameat -F auid>=1000 -F auid!=unset -k delete\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230440\",\n \"title\": {\n \"text\": \"SRG-OS-000062-GPOS-00031\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230440r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030362\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"Successful/unsuccessful uses of the renameat command in RHEL 8 must generate an audit record.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"renameat\\\" command renames a file, moving it between directories if required.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful use of the \\\"renameat\\\" command by adding or updating the following rules in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-a always,exit -F arch=b32 -S renameat -F auid>=1000 -F auid!=unset -k delete\\n-a always,exit -F arch=b64 -S renameat -F auid>=1000 -F auid!=unset -k delete\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33084r568067_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33084r568067_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:273\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"rmdir\\\" command removes empty directories.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230441", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230441r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:274", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33085r568070_fix", + "fixtext_fixref": "F-33085r568070_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030363", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230440r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030362", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:273", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the rmdir command in RHEL 8 must generate an audit record.", + "id": "V-230441", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"rmdir\" command removes empty directories.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:274", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"rmdir\" command by adding or updating the following rules in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F arch=b32 -S rmdir -F auid>=1000 -F auid!=unset -k delete\n-a always,exit -F arch=b64 -S rmdir -F auid>=1000 -F auid!=unset -k delete\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230441\",\n \"title\": {\n \"text\": \"SRG-OS-000062-GPOS-00031\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230441r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030363\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"Successful/unsuccessful uses of the rmdir command in RHEL 8 must generate an audit record.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"rmdir\\\" command removes empty directories.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful use of the \\\"rmdir\\\" command by adding or updating the following rules in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-a always,exit -F arch=b32 -S rmdir -F auid>=1000 -F auid!=unset -k delete\\n-a always,exit -F arch=b64 -S rmdir -F auid>=1000 -F auid!=unset -k delete\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33085r568070_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33085r568070_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:274\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"unlink\\\" command deletes a name from the filesystem. If that name was the last link to a file and no processes have the file open, the file is deleted and the space it was using is made available for reuse. \\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230442", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230442r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:275", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33086r568073_fix", + "fixtext_fixref": "F-33086r568073_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030364", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230441r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030363", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:274", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the unlink command in RHEL 8 must generate an audit record.", + "id": "V-230442", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"unlink\" command deletes a name from the filesystem. If that name was the last link to a file and no processes have the file open, the file is deleted and the space it was using is made available for reuse. \n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:275", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"unlink\" command by adding or updating the following rules in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F arch=b32 -S unlink -F auid>=1000 -F auid!=unset -k delete\n-a always,exit -F arch=b64 -S unlink -F auid>=1000 -F auid!=unset -k delete\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230442\",\n \"title\": {\n \"text\": \"SRG-OS-000062-GPOS-00031\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230442r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030364\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"Successful/unsuccessful uses of the unlink command in RHEL 8 must generate an audit record.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"unlink\\\" command deletes a name from the filesystem. If that name was the last link to a file and no processes have the file open, the file is deleted and the space it was using is made available for reuse. \\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful use of the \\\"unlink\\\" command by adding or updating the following rules in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-a always,exit -F arch=b32 -S unlink -F auid>=1000 -F auid!=unset -k delete\\n-a always,exit -F arch=b64 -S unlink -F auid>=1000 -F auid!=unset -k delete\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33086r568073_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33086r568073_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:275\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"unlinkat\\\" system call operates in exactly the same way as either \\\"unlink\\\" or \\\"rmdir\\\" except for the differences described in the manual page.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230443", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230443r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:276", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33087r568076_fix", + "fixtext_fixref": "F-33087r568076_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030365", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230442r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030364", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:275", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the unlinkat command in RHEL 8 must generate an audit record.", + "id": "V-230443", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"unlinkat\" system call operates in exactly the same way as either \"unlink\" or \"rmdir\" except for the differences described in the manual page.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:276", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"unlinkat\" command by adding or updating the following rules in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F arch=b32 -S unlinkat -F auid>=1000 -F auid!=unset -k delete\n-a always,exit -F arch=b64 -S unlinkat -F auid>=1000 -F auid!=unset -k delete\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230443\",\n \"title\": {\n \"text\": \"SRG-OS-000062-GPOS-00031\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230443r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030365\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"Successful/unsuccessful uses of the unlinkat command in RHEL 8 must generate an audit record.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"unlinkat\\\" system call operates in exactly the same way as either \\\"unlink\\\" or \\\"rmdir\\\" except for the differences described in the manual page.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful use of the \\\"unlinkat\\\" command by adding or updating the following rules in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-a always,exit -F arch=b32 -S unlinkat -F auid>=1000 -F auid!=unset -k delete\\n-a always,exit -F arch=b64 -S unlinkat -F auid>=1000 -F auid!=unset -k delete\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33087r568076_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33087r568076_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:276\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"gpasswd\\\" command is used to administer /etc/group and /etc/gshadow. Every group can have administrators, members and a password.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230444", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230444r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:277", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33088r568079_fix", + "fixtext_fixref": "F-33088r568079_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030370", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230443r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030365", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:276", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the gpasswd command in RHEL 8 must generate an audit record.", + "id": "V-230444", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"gpasswd\" command is used to administer /etc/group and /etc/gshadow. Every group can have administrators, members and a password.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:277", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \"gpasswd\" command by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/bin/gpasswd -F perm=x -F auid>=1000 -F auid!=unset -k privileged-gpasswd\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230444\",\n \"title\": {\n \"text\": \"SRG-OS-000062-GPOS-00031\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230444r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030370\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"Successful/unsuccessful uses of the gpasswd command in RHEL 8 must generate an audit record.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"gpasswd\\\" command is used to administer /etc/group and /etc/gshadow. Every group can have administrators, members and a password.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \\\"gpasswd\\\" command by adding or updating the following rule in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-a always,exit -F path=/usr/bin/gpasswd -F perm=x -F auid>=1000 -F auid!=unset -k privileged-gpasswd\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33088r568079_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33088r568079_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:277\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"finit_module\\\" command is used to load a kernel module.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230445", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230445r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:278", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33089r568082_fix", + "fixtext_fixref": "F-33089r568082_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030380", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230444r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030370", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:277", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the finit_module command in RHEL 8 must generate an audit record.", + "id": "V-230445", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"finit_module\" command is used to load a kernel module.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:278", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"finit_module\" command by adding or updating the following rules in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F arch=b32 -S finit_module -F auid>=1000 -F auid!=unset -k module_chng\n-a always,exit -F arch=b64 -S finit_module -F auid>=1000 -F auid!=unset -k module_chng\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230445\",\n \"title\": {\n \"text\": \"SRG-OS-000062-GPOS-00031\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230445r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030380\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"Successful/unsuccessful uses of the finit_module command in RHEL 8 must generate an audit record.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"finit_module\\\" command is used to load a kernel module.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful use of the \\\"finit_module\\\" command by adding or updating the following rules in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-a always,exit -F arch=b32 -S finit_module -F auid>=1000 -F auid!=unset -k module_chng\\n-a always,exit -F arch=b64 -S finit_module -F auid>=1000 -F auid!=unset -k module_chng\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33089r568082_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33089r568082_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:278\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"delete_module\\\" command is used to unload a kernel module.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230446", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230446r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:279", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33090r568085_fix", + "fixtext_fixref": "F-33090r568085_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030390", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230445r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030380", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:278", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the delete_module command in RHEL 8 must generate an audit record.", + "id": "V-230446", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"delete_module\" command is used to unload a kernel module.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:279", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"delete_module\" command by adding or updating the following rules in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F arch=b32 -S delete_module -F auid>=1000 -F auid!=unset -k module_chng\n-a always,exit -F arch=b64 -S delete_module -F auid>=1000 -F auid!=unset -k module_chng\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230446\",\n \"title\": {\n \"text\": \"SRG-OS-000062-GPOS-00031\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230446r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030390\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"Successful/unsuccessful uses of the delete_module command in RHEL 8 must generate an audit record.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"delete_module\\\" command is used to unload a kernel module.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful use of the \\\"delete_module\\\" command by adding or updating the following rules in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-a always,exit -F arch=b32 -S delete_module -F auid>=1000 -F auid!=unset -k module_chng\\n-a always,exit -F arch=b64 -S delete_module -F auid>=1000 -F auid!=unset -k module_chng\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33090r568085_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33090r568085_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:279\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"crontab\\\" command is used to maintain crontab files for individual users. Crontab is the program used to install, remove, or list the tables used to drive the cron daemon. This is similar to the task scheduler used in other operating systems.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230447", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230447r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:280", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33091r568088_fix", + "fixtext_fixref": "F-33091r568088_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030400", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230446r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030390", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:279", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the crontab command in RHEL 8 must generate an audit record.", + "id": "V-230447", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"crontab\" command is used to maintain crontab files for individual users. Crontab is the program used to install, remove, or list the tables used to drive the cron daemon. This is similar to the task scheduler used in other operating systems.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:280", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \"crontab\" command by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/bin/crontab -F perm=x -F auid>=1000 -F auid!=unset -k privileged-crontab\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230447\",\n \"title\": {\n \"text\": \"SRG-OS-000062-GPOS-00031\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230447r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030400\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"Successful/unsuccessful uses of the crontab command in RHEL 8 must generate an audit record.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"crontab\\\" command is used to maintain crontab files for individual users. Crontab is the program used to install, remove, or list the tables used to drive the cron daemon. This is similar to the task scheduler used in other operating systems.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \\\"crontab\\\" command by adding or updating the following rule in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-a always,exit -F path=/usr/bin/crontab -F perm=x -F auid>=1000 -F auid!=unset -k privileged-crontab\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33091r568088_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33091r568088_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:280\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"chsh\\\" command is used to change the login shell.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230448", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230448r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:281", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33092r568091_fix", + "fixtext_fixref": "F-33092r568091_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030410", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230447r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030400", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:280", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the chsh command in RHEL 8 must generate an audit record.", + "id": "V-230448", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"chsh\" command is used to change the login shell.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:281", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"chsh\" command by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/bin/chsh -F perm=x -F auid>=1000 -F auid!=unset -k priv_cmd\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230448\",\n \"title\": {\n \"text\": \"SRG-OS-000062-GPOS-00031\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230448r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030410\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"Successful/unsuccessful uses of the chsh command in RHEL 8 must generate an audit record.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"chsh\\\" command is used to change the login shell.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful use of the \\\"chsh\\\" command by adding or updating the following rule in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-a always,exit -F path=/usr/bin/chsh -F perm=x -F auid>=1000 -F auid!=unset -k priv_cmd\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33092r568091_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33092r568091_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:281\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"truncate\\\" and \\\"ftruncate\\\" functions are used to truncate a file to a specified length. \\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230449", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230449r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:282", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33093r568094_fix", + "fixtext_fixref": "F-33093r568094_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030420", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230448r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030410", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:281", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the truncate command in RHEL 8 must generate an audit record.", + "id": "V-230449", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"truncate\" and \"ftruncate\" functions are used to truncate a file to a specified length. \n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:282", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"truncate\" command by adding or updating the following rules in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F arch=b32 -S truncate -F exit=-EPERM -F auid>=1000 -F auid!=unset -k perm_access\n-a always,exit -F arch=b64 -S truncate -F exit=-EPERM -F auid>=1000 -F auid!=unset -k perm_access\n\n-a always,exit -F arch=b32 -S truncate -F exit=-EACCES -F auid>=1000 -F auid!=unset -k perm_access\n-a always,exit -F arch=b64 -S truncate -F exit=-EACCES -F auid>=1000 -F auid!=unset -k perm_access\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230449\",\n \"title\": {\n \"text\": \"SRG-OS-000062-GPOS-00031\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230449r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030420\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"Successful/unsuccessful uses of the truncate command in RHEL 8 must generate an audit record.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"truncate\\\" and \\\"ftruncate\\\" functions are used to truncate a file to a specified length. \\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful use of the \\\"truncate\\\" command by adding or updating the following rules in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-a always,exit -F arch=b32 -S truncate -F exit=-EPERM -F auid>=1000 -F auid!=unset -k perm_access\\n-a always,exit -F arch=b64 -S truncate -F exit=-EPERM -F auid>=1000 -F auid!=unset -k perm_access\\n\\n-a always,exit -F arch=b32 -S truncate -F exit=-EACCES -F auid>=1000 -F auid!=unset -k perm_access\\n-a always,exit -F arch=b64 -S truncate -F exit=-EACCES -F auid>=1000 -F auid!=unset -k perm_access\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33093r568094_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33093r568094_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:282\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"openat\\\" system call opens a file specified by a relative pathname.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230450", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230450r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:283", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33094r568097_fix", + "fixtext_fixref": "F-33094r568097_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030430", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230449r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030420", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:282", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the openat system call in RHEL 8 must generate an audit record.", + "id": "V-230450", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"openat\" system call opens a file specified by a relative pathname.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:283", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"openat\" command by adding or updating the following rules in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F arch=b32 -S openat -F exit=-EPERM -F auid>=1000 -F auid!=unset -k perm_access\n-a always,exit -F arch=b64 -S openat -F exit=-EPERM -F auid>=1000 -F auid!=unset -k perm_access\n\n-a always,exit -F arch=b32 -S openat -F exit=-EACCES -F auid>=1000 -F auid!=unset -k perm_access\n-a always,exit -F arch=b64 -S openat -F exit=-EACCES -F auid>=1000 -F auid!=unset -k perm_access\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230450\",\n \"title\": {\n \"text\": \"SRG-OS-000062-GPOS-00031\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230450r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030430\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"Successful/unsuccessful uses of the openat system call in RHEL 8 must generate an audit record.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"openat\\\" system call opens a file specified by a relative pathname.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful use of the \\\"openat\\\" command by adding or updating the following rules in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-a always,exit -F arch=b32 -S openat -F exit=-EPERM -F auid>=1000 -F auid!=unset -k perm_access\\n-a always,exit -F arch=b64 -S openat -F exit=-EPERM -F auid>=1000 -F auid!=unset -k perm_access\\n\\n-a always,exit -F arch=b32 -S openat -F exit=-EACCES -F auid>=1000 -F auid!=unset -k perm_access\\n-a always,exit -F arch=b64 -S openat -F exit=-EACCES -F auid>=1000 -F auid!=unset -k perm_access\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33094r568097_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33094r568097_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:283\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"open system\\\" call opens a file specified by a pathname. If the specified file does not exist, it may optionally be created by \\\"open\\\".\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230451", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230451r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:284", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33095r568100_fix", + "fixtext_fixref": "F-33095r568100_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030440", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230450r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030430", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:283", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the open system call in RHEL 8 must generate an audit record.", + "id": "V-230451", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"open system\" call opens a file specified by a pathname. If the specified file does not exist, it may optionally be created by \"open\".\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:284", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"open\" system call by adding or updating the following rules in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F arch=b32 -S open -F exit=-EPERM -F auid>=1000 -F auid!=unset -k perm_access\n-a always,exit -F arch=b64 -S open -F exit=-EPERM -F auid>=1000 -F auid!=unset -k perm_access\n\n-a always,exit -F arch=b32 -S open -F exit=-EACCES -F auid>=1000 -F auid!=unset -k perm_access\n-a always,exit -F arch=b64 -S open -F exit=-EACCES -F auid>=1000 -F auid!=unset -k perm_access\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230451\",\n \"title\": {\n \"text\": \"SRG-OS-000062-GPOS-00031\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230451r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030440\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"Successful/unsuccessful uses of the open system call in RHEL 8 must generate an audit record.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"open system\\\" call opens a file specified by a pathname. If the specified file does not exist, it may optionally be created by \\\"open\\\".\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful use of the \\\"open\\\" system call by adding or updating the following rules in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-a always,exit -F arch=b32 -S open -F exit=-EPERM -F auid>=1000 -F auid!=unset -k perm_access\\n-a always,exit -F arch=b64 -S open -F exit=-EPERM -F auid>=1000 -F auid!=unset -k perm_access\\n\\n-a always,exit -F arch=b32 -S open -F exit=-EACCES -F auid>=1000 -F auid!=unset -k perm_access\\n-a always,exit -F arch=b64 -S open -F exit=-EACCES -F auid>=1000 -F auid!=unset -k perm_access\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33095r568100_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33095r568100_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:284\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"name_to_handle_at\\\" and \\\"open_by_handle_at\\\" system calls split the functionality of openat into two parts: \\\"name_to_handle_at\\\" returns an opaque handle that corresponds to a specified file; \\\"open_by_handle_at\\\" opens the file corresponding to a handle returned by a previous call to \\\"name_to_handle_at\\\" and returns an open file descriptor.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230452", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230452r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:285", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33096r568103_fix", + "fixtext_fixref": "F-33096r568103_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030450", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230451r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030440", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:284", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the open_by_handle_at system call in RHEL 8 must generate an audit record.", + "id": "V-230452", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"name_to_handle_at\" and \"open_by_handle_at\" system calls split the functionality of openat into two parts: \"name_to_handle_at\" returns an opaque handle that corresponds to a specified file; \"open_by_handle_at\" opens the file corresponding to a handle returned by a previous call to \"name_to_handle_at\" and returns an open file descriptor.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:285", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"open_by_handle_at\" system call by adding or updating the following rules in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F arch=b32 -S open_by_handle_at -F exit=-EPERM -F auid>=1000 -F auid!=unset -k perm_access\n-a always,exit -F arch=b64 -S open_by_handle_at -F exit=-EPERM -F auid>=1000 -F auid!=unset -k perm_access\n\n-a always,exit -F arch=b32 -S open_by_handle_at -F exit=-EACCES -F auid>=1000 -F auid!=unset -k perm_access\n-a always,exit -F arch=b64 -S open_by_handle_at -F exit=-EACCES -F auid>=1000 -F auid!=unset -k perm_access\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230452\",\n \"title\": {\n \"text\": \"SRG-OS-000062-GPOS-00031\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230452r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030450\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"Successful/unsuccessful uses of the open_by_handle_at system call in RHEL 8 must generate an audit record.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"name_to_handle_at\\\" and \\\"open_by_handle_at\\\" system calls split the functionality of openat into two parts: \\\"name_to_handle_at\\\" returns an opaque handle that corresponds to a specified file; \\\"open_by_handle_at\\\" opens the file corresponding to a handle returned by a previous call to \\\"name_to_handle_at\\\" and returns an open file descriptor.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful use of the \\\"open_by_handle_at\\\" system call by adding or updating the following rules in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-a always,exit -F arch=b32 -S open_by_handle_at -F exit=-EPERM -F auid>=1000 -F auid!=unset -k perm_access\\n-a always,exit -F arch=b64 -S open_by_handle_at -F exit=-EPERM -F auid>=1000 -F auid!=unset -k perm_access\\n\\n-a always,exit -F arch=b32 -S open_by_handle_at -F exit=-EACCES -F auid>=1000 -F auid!=unset -k perm_access\\n-a always,exit -F arch=b64 -S open_by_handle_at -F exit=-EACCES -F auid>=1000 -F auid!=unset -k perm_access\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33096r568103_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33096r568103_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:285\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"truncate\\\" and \\\"ftruncate\\\" functions are used to truncate a file to a specified length.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230453", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230453r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:286", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33097r568106_fix", + "fixtext_fixref": "F-33097r568106_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030460", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230452r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030450", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:285", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the ftruncate command in RHEL 8 must generate an audit record.", + "id": "V-230453", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"truncate\" and \"ftruncate\" functions are used to truncate a file to a specified length.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:286", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"ftruncate\" command by adding or updating the following rules in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F arch=b32 -S ftruncate -F exit=-EPERM -F auid>=1000 -F auid!=unset -k perm_access\n-a always,exit -F arch=b64 -S ftruncate -F exit=-EPERM -F auid>=1000 -F auid!=unset -k perm_access\n\n-a always,exit -F arch=b32 -S ftruncate -F exit=-EACCES -F auid>=1000 -F auid!=unset -k perm_access\n-a always,exit -F arch=b64 -S ftruncate -F exit=-EACCES -F auid>=1000 -F auid!=unset -k perm_access\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230453\",\n \"title\": {\n \"text\": \"SRG-OS-000062-GPOS-00031\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230453r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030460\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"Successful/unsuccessful uses of the ftruncate command in RHEL 8 must generate an audit record.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"truncate\\\" and \\\"ftruncate\\\" functions are used to truncate a file to a specified length.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful use of the \\\"ftruncate\\\" command by adding or updating the following rules in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-a always,exit -F arch=b32 -S ftruncate -F exit=-EPERM -F auid>=1000 -F auid!=unset -k perm_access\\n-a always,exit -F arch=b64 -S ftruncate -F exit=-EPERM -F auid>=1000 -F auid!=unset -k perm_access\\n\\n-a always,exit -F arch=b32 -S ftruncate -F exit=-EACCES -F auid>=1000 -F auid!=unset -k perm_access\\n-a always,exit -F arch=b64 -S ftruncate -F exit=-EACCES -F auid>=1000 -F auid!=unset -k perm_access\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33097r568106_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33097r568106_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:286\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"creat\\\" system call is used to open and possibly create a file or device.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230454", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230454r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:287", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33098r568109_fix", + "fixtext_fixref": "F-33098r568109_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030470", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230453r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030460", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:286", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the creat system call in RHEL 8 must generate an audit record.", + "id": "V-230454", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"creat\" system call is used to open and possibly create a file or device.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:287", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"creat\" system call by adding or updating the following rules in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F arch=b32 -S creat -F exit=-EPERM -F auid>=1000 -F auid!=unset -k perm_access\n-a always,exit -F arch=b64 -S creat -F exit=-EPERM -F auid>=1000 -F auid!=unset -k perm_access\n\n-a always,exit -F arch=b32 -S creat -F exit=-EACCES -F auid>=1000 -F auid!=unset -k perm_access\n-a always,exit -F arch=b64 -S creat -F exit=-EACCES -F auid>=1000 -F auid!=unset -k perm_access\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230454\",\n \"title\": {\n \"text\": \"SRG-OS-000062-GPOS-00031\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230454r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030470\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"Successful/unsuccessful uses of the creat system call in RHEL 8 must generate an audit record.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"creat\\\" system call is used to open and possibly create a file or device.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful use of the \\\"creat\\\" system call by adding or updating the following rules in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-a always,exit -F arch=b32 -S creat -F exit=-EPERM -F auid>=1000 -F auid!=unset -k perm_access\\n-a always,exit -F arch=b64 -S creat -F exit=-EPERM -F auid>=1000 -F auid!=unset -k perm_access\\n\\n-a always,exit -F arch=b32 -S creat -F exit=-EACCES -F auid>=1000 -F auid!=unset -k perm_access\\n-a always,exit -F arch=b64 -S creat -F exit=-EACCES -F auid>=1000 -F auid!=unset -k perm_access\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33098r568109_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33098r568109_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:287\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"chown\\\" command is used to change file owner and group.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033, SRG-OS-000466-GPOS-00210\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230455", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230455r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:288", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33099r568112_fix", + "fixtext_fixref": "F-33099r568112_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030480", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230454r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030470", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:287", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the chown command in RHEL 8 must generate an audit record.", + "id": "V-230455", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"chown\" command is used to change file owner and group.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033, SRG-OS-000466-GPOS-00210", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:288", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"chown\" command by adding or updating the following line to \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S chown -F auid>=1000 -F auid!=unset -k perm_mod\n-a always,exit -F arch=b64 -S chown -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230455\",\n \"title\": {\n \"text\": \"SRG-OS-000062-GPOS-00031\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230455r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030480\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"Successful/unsuccessful uses of the chown command in RHEL 8 must generate an audit record.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"chown\\\" command is used to change file owner and group.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033, SRG-OS-000466-GPOS-00210</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful use of the \\\"chown\\\" command by adding or updating the following line to \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F arch=b32 -S chown -F auid>=1000 -F auid!=unset -k perm_mod\\n-a always,exit -F arch=b64 -S chown -F auid>=1000 -F auid!=unset -k perm_mod\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33099r568112_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33099r568112_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:288\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"chmod\\\" command changes the file mode bits of each given file according to mode, which can be either a symbolic representation of changes to make, or an octal number representing the bit pattern for the new mode bits.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033, SRG-OS-000466-GPOS-00210\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230456", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230456r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:289", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33100r568115_fix", + "fixtext_fixref": "F-33100r568115_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030490", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230455r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030480", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:288", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the chmod command in RHEL 8 must generate an audit record.", + "id": "V-230456", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"chmod\" command changes the file mode bits of each given file according to mode, which can be either a symbolic representation of changes to make, or an octal number representing the bit pattern for the new mode bits.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033, SRG-OS-000466-GPOS-00210", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:289", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"chmod\" command by adding or updating the following line to \"/etc/audit/rules.d/audit.rules\": \n\n-a always,exit -F arch=b32 -S chmod -F auid>=1000 -F auid!=unset -k perm_mod\n-a always,exit -F arch=b64 -S chmod -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230456\",\n \"title\": {\n \"text\": \"SRG-OS-000062-GPOS-00031\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230456r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030490\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"Successful/unsuccessful uses of the chmod command in RHEL 8 must generate an audit record.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"chmod\\\" command changes the file mode bits of each given file according to mode, which can be either a symbolic representation of changes to make, or an octal number representing the bit pattern for the new mode bits.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033, SRG-OS-000466-GPOS-00210</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful use of the \\\"chmod\\\" command by adding or updating the following line to \\\"/etc/audit/rules.d/audit.rules\\\": \\n\\n-a always,exit -F arch=b32 -S chmod -F auid>=1000 -F auid!=unset -k perm_mod\\n-a always,exit -F arch=b64 -S chmod -F auid>=1000 -F auid!=unset -k perm_mod\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33100r568115_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33100r568115_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:289\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"lchown\\\" system call is used to change the ownership of the file specified by a path, which does not dereference symbolic links.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033, SRG-OS-000466-GPOS-00210\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230457", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230457r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:290", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33101r568118_fix", + "fixtext_fixref": "F-33101r568118_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030500", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230456r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030490", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:289", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the lchown system call in RHEL 8 must generate an audit record.", + "id": "V-230457", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"lchown\" system call is used to change the ownership of the file specified by a path, which does not dereference symbolic links.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033, SRG-OS-000466-GPOS-00210", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:290", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"lchown\" system call by adding or updating the following lines to \"/etc/audit/rules.d/audit.rules\": \n\n-a always,exit -F arch=b32 -S lchown -F auid>=1000 -F auid!=unset -k perm_mod\n-a always,exit -F arch=b64 -S lchown -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230457\",\n \"title\": {\n \"text\": \"SRG-OS-000062-GPOS-00031\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230457r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030500\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"Successful/unsuccessful uses of the lchown system call in RHEL 8 must generate an audit record.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"lchown\\\" system call is used to change the ownership of the file specified by a path, which does not dereference symbolic links.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033, SRG-OS-000466-GPOS-00210</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful use of the \\\"lchown\\\" system call by adding or updating the following lines to \\\"/etc/audit/rules.d/audit.rules\\\": \\n\\n-a always,exit -F arch=b32 -S lchown -F auid>=1000 -F auid!=unset -k perm_mod\\n-a always,exit -F arch=b64 -S lchown -F auid>=1000 -F auid!=unset -k perm_mod\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33101r568118_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33101r568118_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:290\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"fchownat\\\" system call is used to change ownership of a file relative to a directory file descriptor.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033, SRG-OS-000466-GPOS-00210\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230458", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230458r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:291", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33102r568121_fix", + "fixtext_fixref": "F-33102r568121_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030510", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230457r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030500", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:290", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the fchownat system call in RHEL 8 must generate an audit record.", + "id": "V-230458", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"fchownat\" system call is used to change ownership of a file relative to a directory file descriptor.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033, SRG-OS-000466-GPOS-00210", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:291", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"fchownat\" system call by adding or updating the following lines to \"/etc/audit/rules.d/audit.rules\": \n\n-a always,exit -F arch=b32 -S fchownat -F auid>=1000 -F auid!=unset -k perm_mod\n-a always,exit -F arch=b64 -S fchownat -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230458\",\n \"title\": {\n \"text\": \"SRG-OS-000062-GPOS-00031\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230458r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030510\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"Successful/unsuccessful uses of the fchownat system call in RHEL 8 must generate an audit record.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"fchownat\\\" system call is used to change ownership of a file relative to a directory file descriptor.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033, SRG-OS-000466-GPOS-00210</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful use of the \\\"fchownat\\\" system call by adding or updating the following lines to \\\"/etc/audit/rules.d/audit.rules\\\": \\n\\n-a always,exit -F arch=b32 -S fchownat -F auid>=1000 -F auid!=unset -k perm_mod\\n-a always,exit -F arch=b64 -S fchownat -F auid>=1000 -F auid!=unset -k perm_mod\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33102r568121_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33102r568121_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:291\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"fchown\\\" system call is used to change the ownership of a file referred to by the open file descriptor.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033, SRG-OS-000466-GPOS-00210\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230459", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230459r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:292", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33103r568124_fix", + "fixtext_fixref": "F-33103r568124_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030520", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230458r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030510", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:291", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the fchown system call in RHEL 8 must generate an audit record.", + "id": "V-230459", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"fchown\" system call is used to change the ownership of a file referred to by the open file descriptor.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033, SRG-OS-000466-GPOS-00210", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:292", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"fchown\" system call by adding or updating the following line to \"/etc/audit/rules.d/audit.rules\": \n\n-a always,exit -F arch=b32 -S fchown -F auid>=1000 -F auid!=unset -k perm_mod\n-a always,exit -F arch=b64 -S fchown -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230459\",\n \"title\": {\n \"text\": \"SRG-OS-000062-GPOS-00031\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230459r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030520\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"Successful/unsuccessful uses of the fchown system call in RHEL 8 must generate an audit record.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"fchown\\\" system call is used to change the ownership of a file referred to by the open file descriptor.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033, SRG-OS-000466-GPOS-00210</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful use of the \\\"fchown\\\" system call by adding or updating the following line to \\\"/etc/audit/rules.d/audit.rules\\\": \\n\\n-a always,exit -F arch=b32 -S fchown -F auid>=1000 -F auid!=unset -k perm_mod\\n-a always,exit -F arch=b64 -S fchown -F auid>=1000 -F auid!=unset -k perm_mod\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33103r568124_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33103r568124_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:292\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"fchmodat\\\" system call is used to change permissions of a file relative to a directory file descriptor.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033, SRG-OS-000466-GPOS-00210\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230460", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230460r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:293", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33104r568127_fix", + "fixtext_fixref": "F-33104r568127_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030530", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230459r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030520", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:292", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the fchmodat system call in RHEL 8 must generate an audit record.", + "id": "V-230460", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"fchmodat\" system call is used to change permissions of a file relative to a directory file descriptor.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033, SRG-OS-000466-GPOS-00210", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:293", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"fchmodat\" system call by adding or updating the following lines to \"/etc/audit/rules.d/audit.rules\": \n\n-a always,exit -F arch=b32 -S fchmodat -F auid>=1000 -F auid!=unset -k perm_mod\n-a always,exit -F arch=b64 -S fchmodat -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230460\",\n \"title\": {\n \"text\": \"SRG-OS-000062-GPOS-00031\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230460r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030530\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"Successful/unsuccessful uses of the fchmodat system call in RHEL 8 must generate an audit record.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"fchmodat\\\" system call is used to change permissions of a file relative to a directory file descriptor.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033, SRG-OS-000466-GPOS-00210</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful use of the \\\"fchmodat\\\" system call by adding or updating the following lines to \\\"/etc/audit/rules.d/audit.rules\\\": \\n\\n-a always,exit -F arch=b32 -S fchmodat -F auid>=1000 -F auid!=unset -k perm_mod\\n-a always,exit -F arch=b64 -S fchmodat -F auid>=1000 -F auid!=unset -k perm_mod\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33104r568127_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33104r568127_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:293\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"fchmod\\\" system call is used to change permissions of a file.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033, SRG-OS-000466-GPOS-00210\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230461", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230461r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:294", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33105r568130_fix", + "fixtext_fixref": "F-33105r568130_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030540", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230460r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030530", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:293", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the fchmod system call in RHEL 8 must generate an audit record.", + "id": "V-230461", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"fchmod\" system call is used to change permissions of a file.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033, SRG-OS-000466-GPOS-00210", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:294", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"fchmod\" system call by adding or updating the following line to \"/etc/audit/rules.d/audit.rules\": \n\n-a always,exit -F arch=b32 -S fchmod -F auid>=1000 -F auid!=unset -k perm_mod\n-a always,exit -F arch=b64 -S fchmod -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230461\",\n \"title\": {\n \"text\": \"SRG-OS-000062-GPOS-00031\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230461r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030540\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"Successful/unsuccessful uses of the fchmod system call in RHEL 8 must generate an audit record.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"fchmod\\\" system call is used to change permissions of a file.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033, SRG-OS-000466-GPOS-00210</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful use of the \\\"fchmod\\\" system call by adding or updating the following line to \\\"/etc/audit/rules.d/audit.rules\\\": \\n\\n-a always,exit -F arch=b32 -S fchmod -F auid>=1000 -F auid!=unset -k perm_mod\\n-a always,exit -F arch=b64 -S fchmod -F auid>=1000 -F auid!=unset -k perm_mod\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33105r568130_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33105r568130_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:294\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"sudo\\\" command allows a permitted user to execute a command as the superuser or another user, as specified by the security policy.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000466-GPOS-00210\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230462", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230462r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:295", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33106r568133_fix", + "fixtext_fixref": "F-33106r568133_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030550", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230461r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030540", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:294", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the sudo command in RHEL 8 must generate an audit record.", + "id": "V-230462", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"sudo\" command allows a permitted user to execute a command as the superuser or another user, as specified by the security policy.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000466-GPOS-00210", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:295", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"sudo\" command by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/bin/sudo -F perm=x -F auid>=1000 -F auid!=unset -k priv_cmd\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230462\",\n \"title\": {\n \"text\": \"SRG-OS-000062-GPOS-00031\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230462r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030550\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"Successful/unsuccessful uses of the sudo command in RHEL 8 must generate an audit record.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"sudo\\\" command allows a permitted user to execute a command as the superuser or another user, as specified by the security policy.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000466-GPOS-00210</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful use of the \\\"sudo\\\" command by adding or updating the following rule in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-a always,exit -F path=/usr/bin/sudo -F perm=x -F auid>=1000 -F auid!=unset -k priv_cmd\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33106r568133_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33106r568133_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:295\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"usermod\\\" command modifies the system account files to reflect the changes that are specified on the command line.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000466-GPOS-00210\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230463", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230463r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:296", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33107r568136_fix", + "fixtext_fixref": "F-33107r568136_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030560", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230462r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030550", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:295", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the usermod command in RHEL 8 must generate an audit record.", + "id": "V-230463", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"usermod\" command modifies the system account files to reflect the changes that are specified on the command line.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000466-GPOS-00210", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:296", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \"usermod\" command by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/sbin/usermod -F perm=x -F auid>=1000 -F auid!=unset -k privileged-usermod\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230463\",\n \"title\": {\n \"text\": \"SRG-OS-000062-GPOS-00031\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230463r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030560\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"Successful/unsuccessful uses of the usermod command in RHEL 8 must generate an audit record.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"usermod\\\" command modifies the system account files to reflect the changes that are specified on the command line.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000466-GPOS-00210</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \\\"usermod\\\" command by adding or updating the following rule in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-a always,exit -F path=/usr/sbin/usermod -F perm=x -F auid>=1000 -F auid!=unset -k privileged-usermod\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33107r568136_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33107r568136_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:296\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"chacl\\\" command is used to change the access control list of a file or directory.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000466-GPOS-00210\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230464", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230464r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:297", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33108r568139_fix", + "fixtext_fixref": "F-33108r568139_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030570", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230463r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030560", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:296", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the chacl command in RHEL 8 must generate an audit record.", + "id": "V-230464", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"chacl\" command is used to change the access control list of a file or directory.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000466-GPOS-00210", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:297", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"chacl\" command by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/bin/chacl -F perm=x -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230464\",\n \"title\": {\n \"text\": \"SRG-OS-000062-GPOS-00031\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230464r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030570\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"Successful/unsuccessful uses of the chacl command in RHEL 8 must generate an audit record.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"chacl\\\" command is used to change the access control list of a file or directory.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000466-GPOS-00210</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful use of the \\\"chacl\\\" command by adding or updating the following rule in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-a always,exit -F path=/usr/bin/chacl -F perm=x -F auid>=1000 -F auid!=unset -k perm_mod\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33108r568139_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33108r568139_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:297\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without the capability to generate audit records, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"kmod\\\" command is used to control Linux Kernel modules.\\n\\nThe list of audited events is the set of events for which audits are to be generated. This set of events is typically a subset of the list of all events for which the system is capable of generating audit records.\\n\\nDoD has defined the list of events for which RHEL 8 will provide an audit record generation capability as the following:\\n\\n1) Successful and unsuccessful attempts to access, modify, or delete privileges, security objects, security levels, or categories of information (e.g., classification levels);\\n\\n2) Access actions, such as successful and unsuccessful logon attempts, privileged activities or other system-level access, starting and ending time for user access to the system, concurrent logons from different workstations, successful and unsuccessful accesses to objects, all program initiations, and all direct access to the information system;\\n\\n3) All account creations, modifications, disabling, and terminations; and \\n\\n4) All kernel module load, unload, and restart actions.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000471-GPOS-00216, SRG-OS-000477-GPOS-00222\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230465", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230465r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:298", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33109r568142_fix", + "fixtext_fixref": "F-33109r568142_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030580", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230464r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030570", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:297", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the kmod command in RHEL 8 must generate an audit record.", + "id": "V-230465", + "desc": "Without the capability to generate audit records, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"kmod\" command is used to control Linux Kernel modules.\n\nThe list of audited events is the set of events for which audits are to be generated. This set of events is typically a subset of the list of all events for which the system is capable of generating audit records.\n\nDoD has defined the list of events for which RHEL 8 will provide an audit record generation capability as the following:\n\n1) Successful and unsuccessful attempts to access, modify, or delete privileges, security objects, security levels, or categories of information (e.g., classification levels);\n\n2) Access actions, such as successful and unsuccessful logon attempts, privileged activities or other system-level access, starting and ending time for user access to the system, concurrent logons from different workstations, successful and unsuccessful accesses to objects, all program initiations, and all direct access to the information system;\n\n3) All account creations, modifications, disabling, and terminations; and \n\n4) All kernel module load, unload, and restart actions.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000471-GPOS-00216, SRG-OS-000477-GPOS-00222", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:298", + "label": "check" + }, + { + "data": "Configure RHEL 8 to audit the execution of the module management program \"kmod\" by adding or updating the following line to \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F path=/usr/bin/kmod -F perm=x -F auid>=1000 -F auid!=unset -k modules\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230465\",\n \"title\": {\n \"text\": \"SRG-OS-000062-GPOS-00031\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230465r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030580\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"Successful/unsuccessful uses of the kmod command in RHEL 8 must generate an audit record.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without the capability to generate audit records, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"kmod\\\" command is used to control Linux Kernel modules.\\n\\nThe list of audited events is the set of events for which audits are to be generated. This set of events is typically a subset of the list of all events for which the system is capable of generating audit records.\\n\\nDoD has defined the list of events for which RHEL 8 will provide an audit record generation capability as the following:\\n\\n1) Successful and unsuccessful attempts to access, modify, or delete privileges, security objects, security levels, or categories of information (e.g., classification levels);\\n\\n2) Access actions, such as successful and unsuccessful logon attempts, privileged activities or other system-level access, starting and ending time for user access to the system, concurrent logons from different workstations, successful and unsuccessful accesses to objects, all program initiations, and all direct access to the information system;\\n\\n3) All account creations, modifications, disabling, and terminations; and \\n\\n4) All kernel module load, unload, and restart actions.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000471-GPOS-00216, SRG-OS-000477-GPOS-00222</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure RHEL 8 to audit the execution of the module management program \\\"kmod\\\" by adding or updating the following line to \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F path=/usr/bin/kmod -F perm=x -F auid>=1000 -F auid!=unset -k modules\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33109r568142_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33109r568142_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:298\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without the capability to generate audit records, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nThe list of audited events is the set of events for which audits are to be generated. This set of events is typically a subset of the list of all events for which the system is capable of generating audit records.\\n\\nDoD has defined the list of events for which RHEL 8 will provide an audit record generation capability as the following:\\n\\n1) Successful and unsuccessful attempts to access, modify, or delete privileges, security objects, security levels, or categories of information (e.g., classification levels);\\n\\n2) Access actions, such as successful and unsuccessful logon attempts, privileged activities or other system-level access, starting and ending time for user access to the system, concurrent logons from different workstations, successful and unsuccessful accesses to objects, all program initiations, and all direct access to the information system;\\n\\n3) All account creations, modifications, disabling, and terminations; and \\n\\n4) All kernel module load, unload, and restart actions.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000473-GPOS-00218\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230467", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230467r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:299", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33111r568148_fix", + "fixtext_fixref": "F-33111r568148_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030600", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230465r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030580", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:298", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful modifications to the lastlog file in RHEL 8 must generate an audit record.", + "id": "V-230467", + "desc": "Without the capability to generate audit records, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nThe list of audited events is the set of events for which audits are to be generated. This set of events is typically a subset of the list of all events for which the system is capable of generating audit records.\n\nDoD has defined the list of events for which RHEL 8 will provide an audit record generation capability as the following:\n\n1) Successful and unsuccessful attempts to access, modify, or delete privileges, security objects, security levels, or categories of information (e.g., classification levels);\n\n2) Access actions, such as successful and unsuccessful logon attempts, privileged activities or other system-level access, starting and ending time for user access to the system, concurrent logons from different workstations, successful and unsuccessful accesses to objects, all program initiations, and all direct access to the information system;\n\n3) All account creations, modifications, disabling, and terminations; and \n\n4) All kernel module load, unload, and restart actions.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000473-GPOS-00218", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:299", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful modifications to the \"lastlog\" file by adding or updating the following rules in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-w /var/log/lastlog -p wa -k logins\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230467\",\n \"title\": {\n \"text\": \"SRG-OS-000062-GPOS-00031\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230467r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030600\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"Successful/unsuccessful modifications to the lastlog file in RHEL 8 must generate an audit record.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without the capability to generate audit records, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nThe list of audited events is the set of events for which audits are to be generated. This set of events is typically a subset of the list of all events for which the system is capable of generating audit records.\\n\\nDoD has defined the list of events for which RHEL 8 will provide an audit record generation capability as the following:\\n\\n1) Successful and unsuccessful attempts to access, modify, or delete privileges, security objects, security levels, or categories of information (e.g., classification levels);\\n\\n2) Access actions, such as successful and unsuccessful logon attempts, privileged activities or other system-level access, starting and ending time for user access to the system, concurrent logons from different workstations, successful and unsuccessful accesses to objects, all program initiations, and all direct access to the information system;\\n\\n3) All account creations, modifications, disabling, and terminations; and \\n\\n4) All kernel module load, unload, and restart actions.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000473-GPOS-00218</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful modifications to the \\\"lastlog\\\" file by adding or updating the following rules in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-w /var/log/lastlog -p wa -k logins\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33111r568148_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33111r568148_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:299\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000171" + ], + "nist": [ + "AU-12 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without the capability to restrict the roles and individuals that can select which events are audited, unauthorized personnel may be able to prevent the auditing of critical events. Misconfigured audits may degrade the system's performance by overwhelming the audit log. Misconfigured audits may also make it more difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230471", + "group_title": "SRG-OS-000063-GPOS-00032", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230471r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:303", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33115r568160_fix", + "fixtext_fixref": "F-33115r568160_fix", + "ident": { + "text": "CCI-000171", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030610", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230467r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030600", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:299", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must allow only the Information System Security Manager (ISSM) (or individuals or roles appointed by the ISSM) to select which auditable events are to be audited.", + "id": "V-230471", + "desc": "Without the capability to restrict the roles and individuals that can select which events are audited, unauthorized personnel may be able to prevent the auditing of critical events. Misconfigured audits may degrade the system's performance by overwhelming the audit log. Misconfigured audits may also make it more difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:303", + "label": "check" + }, + { + "data": "Configure the files in directory \"/etc/audit/rules.d/\" and the \"/etc/audit/auditd.conf\" file to have a mode of \"0640\" with the following commands:\n\n$ sudo chmod 0640 /etc/audit/rules.d/audit.rules\n$ sudo chmod 0640 /etc/audit/rules.d/[customrulesfile].rules\n$ sudo chmod 0640 /etc/audit/auditd.conf", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230471\",\n \"title\": {\n \"text\": \"SRG-OS-000063-GPOS-00032\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230471r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030610\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must allow only the Information System Security Manager (ISSM) (or individuals or roles appointed by the ISSM) to select which auditable events are to be audited.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without the capability to restrict the roles and individuals that can select which events are audited, unauthorized personnel may be able to prevent the auditing of critical events. Misconfigured audits may degrade the system's performance by overwhelming the audit log. Misconfigured audits may also make it more difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000171\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the files in directory \\\"/etc/audit/rules.d/\\\" and the \\\"/etc/audit/auditd.conf\\\" file to have a mode of \\\"0640\\\" with the following commands:\\n\\n$ sudo chmod 0640 /etc/audit/rules.d/audit.rules\\n$ sudo chmod 0640 /etc/audit/rules.d/[customrulesfile].rules\\n$ sudo chmod 0640 /etc/audit/auditd.conf\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33115r568160_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33115r568160_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:303\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001493" + ], + "nist": [ + "AU-9 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Protecting audit information also includes identifying and protecting the tools used to view and manipulate log data. Therefore, protecting audit tools is necessary to prevent unauthorized operation on audit information.\\n\\nRHEL 8 systems providing tools to interface with audit information will leverage user permissions and roles identifying the user accessing the tools, and the corresponding rights the user enjoys, to make access decisions regarding the access to audit tools.\\n\\nAudit tools include, but are not limited to, vendor-provided and open source audit tools needed to successfully view and manipulate audit information system activity and records. Audit tools include custom queries and report generators.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230472", + "group_title": "SRG-OS-000256-GPOS-00097", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230472r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:304", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33116r568163_fix", + "fixtext_fixref": "F-33116r568163_fix", + "ident": { + "text": "CCI-001493", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030620", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230471r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030610", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000171", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:303", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 audit tools must have a mode of 0755 or less permissive.", + "id": "V-230472", + "desc": "Protecting audit information also includes identifying and protecting the tools used to view and manipulate log data. Therefore, protecting audit tools is necessary to prevent unauthorized operation on audit information.\n\nRHEL 8 systems providing tools to interface with audit information will leverage user permissions and roles identifying the user accessing the tools, and the corresponding rights the user enjoys, to make access decisions regarding the access to audit tools.\n\nAudit tools include, but are not limited to, vendor-provided and open source audit tools needed to successfully view and manipulate audit information system activity and records. Audit tools include custom queries and report generators.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:304", + "label": "check" + }, + { + "data": "Configure the audit tools to be protected from unauthorized access by setting the correct permissive mode using the following command:\n\n$ sudo chmod 0755 [audit_tool]\n\nReplace \"[audit_tool]\" with the audit tool that does not have the correct permissive mode.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230472\",\n \"title\": {\n \"text\": \"SRG-OS-000256-GPOS-00097\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230472r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030620\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 audit tools must have a mode of 0755 or less permissive.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Protecting audit information also includes identifying and protecting the tools used to view and manipulate log data. Therefore, protecting audit tools is necessary to prevent unauthorized operation on audit information.\\n\\nRHEL 8 systems providing tools to interface with audit information will leverage user permissions and roles identifying the user accessing the tools, and the corresponding rights the user enjoys, to make access decisions regarding the access to audit tools.\\n\\nAudit tools include, but are not limited to, vendor-provided and open source audit tools needed to successfully view and manipulate audit information system activity and records. Audit tools include custom queries and report generators.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-001493\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the audit tools to be protected from unauthorized access by setting the correct permissive mode using the following command:\\n\\n$ sudo chmod 0755 [audit_tool]\\n\\nReplace \\\"[audit_tool]\\\" with the audit tool that does not have the correct permissive mode.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33116r568163_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33116r568163_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:304\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001493" + ], + "nist": [ + "AU-9 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Protecting audit information also includes identifying and protecting the tools used to view and manipulate log data. Therefore, protecting audit tools is necessary to prevent unauthorized operation on audit information.\\n\\nRHEL 8 systems providing tools to interface with audit information will leverage user permissions and roles identifying the user accessing the tools, and the corresponding rights the user enjoys, to make access decisions regarding the access to audit tools.\\n\\nAudit tools include, but are not limited to, vendor-provided and open source audit tools needed to successfully view and manipulate audit information system activity and records. Audit tools include custom queries and report generators.\\n\\nSatisfies: SRG-OS-000256-GPOS-00097, SRG-OS-000257-GPOS-00098, SRG-OS-000258-GPOS-00099\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230473", + "group_title": "SRG-OS-000256-GPOS-00097", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230473r744008_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:305", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33117r568166_fix", + "fixtext_fixref": "F-33117r568166_fix", + "ident": { + "text": "CCI-001493", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030630", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230472r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030620", + "weight": "10.000000", + "result": "pass", + "ident": { + "text": "CCI-001493", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:304", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 audit tools must be owned by root.", + "id": "V-230473", + "desc": "Protecting audit information also includes identifying and protecting the tools used to view and manipulate log data. Therefore, protecting audit tools is necessary to prevent unauthorized operation on audit information.\n\nRHEL 8 systems providing tools to interface with audit information will leverage user permissions and roles identifying the user accessing the tools, and the corresponding rights the user enjoys, to make access decisions regarding the access to audit tools.\n\nAudit tools include, but are not limited to, vendor-provided and open source audit tools needed to successfully view and manipulate audit information system activity and records. Audit tools include custom queries and report generators.\n\nSatisfies: SRG-OS-000256-GPOS-00097, SRG-OS-000257-GPOS-00098, SRG-OS-000258-GPOS-00099", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:305", + "label": "check" + }, + { + "data": "Configure the audit tools to be owned by \"root\", by running the following command:\n\n$ sudo chown root [audit_tool]\n\nReplace \"[audit_tool]\" with each audit tool not owned by \"root\".", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230473\",\n \"title\": {\n \"text\": \"SRG-OS-000256-GPOS-00097\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230473r744008_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030630\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 audit tools must be owned by root.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Protecting audit information also includes identifying and protecting the tools used to view and manipulate log data. Therefore, protecting audit tools is necessary to prevent unauthorized operation on audit information.\\n\\nRHEL 8 systems providing tools to interface with audit information will leverage user permissions and roles identifying the user accessing the tools, and the corresponding rights the user enjoys, to make access decisions regarding the access to audit tools.\\n\\nAudit tools include, but are not limited to, vendor-provided and open source audit tools needed to successfully view and manipulate audit information system activity and records. Audit tools include custom queries and report generators.\\n\\nSatisfies: SRG-OS-000256-GPOS-00097, SRG-OS-000257-GPOS-00098, SRG-OS-000258-GPOS-00099</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-001493\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the audit tools to be owned by \\\"root\\\", by running the following command:\\n\\n$ sudo chown root [audit_tool]\\n\\nReplace \\\"[audit_tool]\\\" with each audit tool not owned by \\\"root\\\".\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33117r568166_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33117r568166_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:305\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001493" + ], + "nist": [ + "AU-9 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Protecting audit information also includes identifying and protecting the tools used to view and manipulate log data. Therefore, protecting audit tools is necessary to prevent unauthorized operation on audit information.\\n\\nRHEL 8 systems providing tools to interface with audit information will leverage user permissions and roles identifying the user accessing the tools, and the corresponding rights the user enjoys, to make access decisions regarding the access to audit tools.\\n\\nAudit tools include, but are not limited to, vendor-provided and open source audit tools needed to successfully view and manipulate audit information system activity and records. Audit tools include custom queries and report generators.\\n\\nSatisfies: SRG-OS-000256-GPOS-00097, SRG-OS-000257-GPOS-00098, SRG-OS-000258-GPOS-00099\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230474", + "group_title": "SRG-OS-000256-GPOS-00097", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230474r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:306", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33118r568169_fix", + "fixtext_fixref": "F-33118r568169_fix", + "ident": { + "text": "CCI-001493", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030640", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230473r744008_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030630", + "weight": "10.000000", + "result": "pass", + "ident": { + "text": "CCI-001493", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:305", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 audit tools must be group-owned by root.", + "id": "V-230474", + "desc": "Protecting audit information also includes identifying and protecting the tools used to view and manipulate log data. Therefore, protecting audit tools is necessary to prevent unauthorized operation on audit information.\n\nRHEL 8 systems providing tools to interface with audit information will leverage user permissions and roles identifying the user accessing the tools, and the corresponding rights the user enjoys, to make access decisions regarding the access to audit tools.\n\nAudit tools include, but are not limited to, vendor-provided and open source audit tools needed to successfully view and manipulate audit information system activity and records. Audit tools include custom queries and report generators.\n\nSatisfies: SRG-OS-000256-GPOS-00097, SRG-OS-000257-GPOS-00098, SRG-OS-000258-GPOS-00099", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:306", + "label": "check" + }, + { + "data": "Configure the audit tools to be group-owned by \"root\", by running the following command:\n\n$ sudo chgrp root [audit_tool]\n\nReplace \"[audit_tool]\" with each audit tool not group-owned by \"root\".", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230474\",\n \"title\": {\n \"text\": \"SRG-OS-000256-GPOS-00097\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230474r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030640\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 audit tools must be group-owned by root.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Protecting audit information also includes identifying and protecting the tools used to view and manipulate log data. Therefore, protecting audit tools is necessary to prevent unauthorized operation on audit information.\\n\\nRHEL 8 systems providing tools to interface with audit information will leverage user permissions and roles identifying the user accessing the tools, and the corresponding rights the user enjoys, to make access decisions regarding the access to audit tools.\\n\\nAudit tools include, but are not limited to, vendor-provided and open source audit tools needed to successfully view and manipulate audit information system activity and records. Audit tools include custom queries and report generators.\\n\\nSatisfies: SRG-OS-000256-GPOS-00097, SRG-OS-000257-GPOS-00098, SRG-OS-000258-GPOS-00099</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-001493\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the audit tools to be group-owned by \\\"root\\\", by running the following command:\\n\\n$ sudo chgrp root [audit_tool]\\n\\nReplace \\\"[audit_tool]\\\" with each audit tool not group-owned by \\\"root\\\".\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33118r568169_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33118r568169_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:306\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\\n\\nOff-loading is a common process in information systems with limited audit storage capacity.\\n\\nRHEL 8 installation media provides \\\"rsyslogd\\\". \\\"rsyslogd\\\" is a system utility providing support for message logging. Support for both internet and UNIX domain sockets enables this utility to support both local and remote logging. Couple this utility with \\\"gnutls\\\" (which is a secure communications library implementing the SSL, TLS and DTLS protocols), and you have a method to securely encrypt and off-load auditing.\\n\\nRsyslog provides three ways to forward message: the traditional UDP transport, which is extremely lossy but standard; the plain TCP based transport, which loses messages only during certain situations but is widely available; and the RELP transport, which does not lose messages but is currently available only as part of the rsyslogd 3.15.0 and above.\\nExamples of each configuration:\\nUDP *.* @remotesystemname\\nTCP *.* @@remotesystemname\\nRELP *.* :omrelp:remotesystemname:2514\\nNote that a port number was given as there is no standard port for RELP.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230477", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230477r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:412", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33121r568178_fix", + "fixtext_fixref": "F-33121r568178_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030670", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230474r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030640", + "weight": "10.000000", + "result": "pass", + "ident": { + "text": "CCI-001493", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:306", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must have the packages required for offloading audit logs installed.", + "id": "V-230477", + "desc": "Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\n\nOff-loading is a common process in information systems with limited audit storage capacity.\n\nRHEL 8 installation media provides \"rsyslogd\". \"rsyslogd\" is a system utility providing support for message logging. Support for both internet and UNIX domain sockets enables this utility to support both local and remote logging. Couple this utility with \"gnutls\" (which is a secure communications library implementing the SSL, TLS and DTLS protocols), and you have a method to securely encrypt and off-load auditing.\n\nRsyslog provides three ways to forward message: the traditional UDP transport, which is extremely lossy but standard; the plain TCP based transport, which loses messages only during certain situations but is widely available; and the RELP transport, which does not lose messages but is currently available only as part of the rsyslogd 3.15.0 and above.\nExamples of each configuration:\nUDP *.* @remotesystemname\nTCP *.* @@remotesystemname\nRELP *.* :omrelp:remotesystemname:2514\nNote that a port number was given as there is no standard port for RELP.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:412", + "label": "check" + }, + { + "data": "Configure the operating system to offload audit logs by installing the required packages with the following command:\n\n$ sudo yum install rsyslog", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230477\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230477r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030670\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must have the packages required for offloading audit logs installed.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\\n\\nOff-loading is a common process in information systems with limited audit storage capacity.\\n\\nRHEL 8 installation media provides \\\"rsyslogd\\\". \\\"rsyslogd\\\" is a system utility providing support for message logging. Support for both internet and UNIX domain sockets enables this utility to support both local and remote logging. Couple this utility with \\\"gnutls\\\" (which is a secure communications library implementing the SSL, TLS and DTLS protocols), and you have a method to securely encrypt and off-load auditing.\\n\\nRsyslog provides three ways to forward message: the traditional UDP transport, which is extremely lossy but standard; the plain TCP based transport, which loses messages only during certain situations but is widely available; and the RELP transport, which does not lose messages but is currently available only as part of the rsyslogd 3.15.0 and above.\\nExamples of each configuration:\\nUDP *.* @remotesystemname\\nTCP *.* @@remotesystemname\\nRELP *.* :omrelp:remotesystemname:2514\\nNote that a port number was given as there is no standard port for RELP.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the operating system to offload audit logs by installing the required packages with the following command:\\n\\n$ sudo yum install rsyslog\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33121r568178_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33121r568178_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:412\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\\n\\nOff-loading is a common process in information systems with limited audit storage capacity.\\n\\nRHEL 8 installation media provides \\\"rsyslogd\\\". \\\"rsyslogd\\\" is a system utility providing support for message logging. Support for both internet and UNIX domain sockets enables this utility to support both local and remote logging. Couple this utility with \\\"rsyslog-gnutls\\\" (which is a secure communications library implementing the SSL, TLS and DTLS protocols), and you have a method to securely encrypt and off-load auditing.\\n\\nRsyslog provides three ways to forward message: the traditional UDP transport, which is extremely lossy but standard; the plain TCP based transport, which loses messages only during certain situations but is widely available; and the RELP transport, which does not lose messages but is currently available only as part of the rsyslogd 3.15.0 and above.\\nExamples of each configuration:\\nUDP *.* @remotesystemname\\nTCP *.* @@remotesystemname\\nRELP *.* :omrelp:remotesystemname:2514\\nNote that a port number was given as there is no standard port for RELP.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230478", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230478r744011_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:307", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33122r744010_fix", + "fixtext_fixref": "F-33122r744010_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030680", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230477r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030670", + "weight": "10.000000", + "result": "pass", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:412", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must have the packages required for encrypting offloaded audit logs installed.", + "id": "V-230478", + "desc": "Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\n\nOff-loading is a common process in information systems with limited audit storage capacity.\n\nRHEL 8 installation media provides \"rsyslogd\". \"rsyslogd\" is a system utility providing support for message logging. Support for both internet and UNIX domain sockets enables this utility to support both local and remote logging. Couple this utility with \"rsyslog-gnutls\" (which is a secure communications library implementing the SSL, TLS and DTLS protocols), and you have a method to securely encrypt and off-load auditing.\n\nRsyslog provides three ways to forward message: the traditional UDP transport, which is extremely lossy but standard; the plain TCP based transport, which loses messages only during certain situations but is widely available; and the RELP transport, which does not lose messages but is currently available only as part of the rsyslogd 3.15.0 and above.\nExamples of each configuration:\nUDP *.* @remotesystemname\nTCP *.* @@remotesystemname\nRELP *.* :omrelp:remotesystemname:2514\nNote that a port number was given as there is no standard port for RELP.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:307", + "label": "check" + }, + { + "data": "Configure the operating system to encrypt offloaded audit logs by installing the required packages with the following command:\n\n$ sudo yum install rsyslog-gnutls", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230478\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230478r744011_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030680\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must have the packages required for encrypting offloaded audit logs installed.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\\n\\nOff-loading is a common process in information systems with limited audit storage capacity.\\n\\nRHEL 8 installation media provides \\\"rsyslogd\\\". \\\"rsyslogd\\\" is a system utility providing support for message logging. Support for both internet and UNIX domain sockets enables this utility to support both local and remote logging. Couple this utility with \\\"rsyslog-gnutls\\\" (which is a secure communications library implementing the SSL, TLS and DTLS protocols), and you have a method to securely encrypt and off-load auditing.\\n\\nRsyslog provides three ways to forward message: the traditional UDP transport, which is extremely lossy but standard; the plain TCP based transport, which loses messages only during certain situations but is widely available; and the RELP transport, which does not lose messages but is currently available only as part of the rsyslogd 3.15.0 and above.\\nExamples of each configuration:\\nUDP *.* @remotesystemname\\nTCP *.* @@remotesystemname\\nRELP *.* :omrelp:remotesystemname:2514\\nNote that a port number was given as there is no standard port for RELP.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the operating system to encrypt offloaded audit logs by installing the required packages with the following command:\\n\\n$ sudo yum install rsyslog-gnutls\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33122r744010_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33122r744010_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:307\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001851" + ], + "nist": [ + "AU-4 (1)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\\n\\nOff-loading is a common process in information systems with limited audit storage capacity.\\n\\nRHEL 8 installation media provides \\\"rsyslogd\\\". \\\"rsyslogd\\\" is a system utility providing support for message logging. Support for both internet and UNIX domain sockets enables this utility to support both local and remote logging. Couple this utility with \\\"gnutls\\\" (which is a secure communications library implementing the SSL, TLS and DTLS protocols), and you have a method to securely encrypt and off-load auditing.\\n\\nSatisfies: SRG-OS-000342-GPOS-00133, SRG-OS-000479-GPOS-00224\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230480", + "group_title": "SRG-OS-000342-GPOS-00133", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230480r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:308", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33124r568187_fix", + "fixtext_fixref": "F-33124r568187_fix", + "ident": { + "text": "CCI-001851", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030700", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230478r744011_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030680", + "weight": "10.000000", + "result": "pass", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:307", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must take appropriate action when the internal event queue is full.", + "id": "V-230480", + "desc": "Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\n\nOff-loading is a common process in information systems with limited audit storage capacity.\n\nRHEL 8 installation media provides \"rsyslogd\". \"rsyslogd\" is a system utility providing support for message logging. Support for both internet and UNIX domain sockets enables this utility to support both local and remote logging. Couple this utility with \"gnutls\" (which is a secure communications library implementing the SSL, TLS and DTLS protocols), and you have a method to securely encrypt and off-load auditing.\n\nSatisfies: SRG-OS-000342-GPOS-00133, SRG-OS-000479-GPOS-00224", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:308", + "label": "check" + }, + { + "data": "Edit the /etc/audit/auditd.conf file and add or update the \"overflow_action\" option:\n\noverflow_action = syslog\n\nThe audit daemon must be restarted for changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230480\",\n \"title\": {\n \"text\": \"SRG-OS-000342-GPOS-00133\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230480r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030700\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must take appropriate action when the internal event queue is full.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\\n\\nOff-loading is a common process in information systems with limited audit storage capacity.\\n\\nRHEL 8 installation media provides \\\"rsyslogd\\\". \\\"rsyslogd\\\" is a system utility providing support for message logging. Support for both internet and UNIX domain sockets enables this utility to support both local and remote logging. Couple this utility with \\\"gnutls\\\" (which is a secure communications library implementing the SSL, TLS and DTLS protocols), and you have a method to securely encrypt and off-load auditing.\\n\\nSatisfies: SRG-OS-000342-GPOS-00133, SRG-OS-000479-GPOS-00224</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-001851\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Edit the /etc/audit/auditd.conf file and add or update the \\\"overflow_action\\\" option:\\n\\noverflow_action = syslog\\n\\nThe audit daemon must be restarted for changes to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33124r568187_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33124r568187_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:308\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001855" + ], + "nist": [ + "AU-5 (1)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"If security personnel are not notified immediately when storage volume reaches 75 percent utilization, they are unable to plan for audit record storage capacity expansion.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230483", + "group_title": "SRG-OS-000343-GPOS-00134", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230483r744014_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:309", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33127r744013_fix", + "fixtext_fixref": "F-33127r744013_fix", + "ident": { + "text": "CCI-001855", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030730", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230480r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030700", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-001851", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:308", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must take action when allocated audit record storage volume reaches 75 percent of the repository maximum audit record storage capacity.", + "id": "V-230483", + "desc": "If security personnel are not notified immediately when storage volume reaches 75 percent utilization, they are unable to plan for audit record storage capacity expansion.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:309", + "label": "check" + }, + { + "data": "Configure the operating system to initiate an action to notify the SA and ISSO (at a minimum) when allocated audit record storage volume reaches 75 percent of the repository maximum audit record storage capacity by adding/modifying the following line in the /etc/audit/auditd.conf file.\n\nspace_left = 25%\n\nNote: Option names and values in the auditd.conf file are case insensitive.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230483\",\n \"title\": {\n \"text\": \"SRG-OS-000343-GPOS-00134\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230483r744014_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-030730\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must take action when allocated audit record storage volume reaches 75 percent of the repository maximum audit record storage capacity.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>If security personnel are not notified immediately when storage volume reaches 75 percent utilization, they are unable to plan for audit record storage capacity expansion.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-001855\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the operating system to initiate an action to notify the SA and ISSO (at a minimum) when allocated audit record storage volume reaches 75 percent of the repository maximum audit record storage capacity by adding/modifying the following line in the /etc/audit/auditd.conf file.\\n\\nspace_left = 25%\\n\\nNote: Option names and values in the auditd.conf file are case insensitive.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33127r744013_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33127r744013_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:309\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000381" + ], + "nist": [ + "CM-7 a" + ], + "severity": "low", + "description": "{\"VulnDiscussion\":\"Inaccurate time stamps make it more difficult to correlate events and can lead to an inaccurate analysis. Determining the correct time a particular event occurred on a system is critical when conducting forensic analysis and investigating system events. Sources outside the configured acceptable allowance (drift) may be inaccurate.\\n\\nMinimizing the exposure of the server functionality of the chrony daemon diminishes the attack surface.\\n\\nRHEL 8 utilizes the \\\"timedatectl\\\" command to view the status of the \\\"systemd-timesyncd.service\\\". The \\\"timedatectl\\\" status will display the local time, UTC, and the offset from UTC.\\n\\nNote that USNO offers authenticated NTP service to DoD and U.S. Government agencies operating on the NIPR and SIPR networks. Visit https://www.usno.navy.mil/USNO/time/ntp/dod-customers for more information.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230485", + "group_title": "SRG-OS-000095-GPOS-00049", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230485r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:310", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33129r568202_fix", + "fixtext_fixref": "F-33129r568202_fix", + "ident": { + "text": "CCI-000381", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030741", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230483r744014_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "medium", + "version": "RHEL-08-030730", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-001855", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:309", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must disable the chrony daemon from acting as a server.", + "id": "V-230485", + "desc": "Inaccurate time stamps make it more difficult to correlate events and can lead to an inaccurate analysis. Determining the correct time a particular event occurred on a system is critical when conducting forensic analysis and investigating system events. Sources outside the configured acceptable allowance (drift) may be inaccurate.\n\nMinimizing the exposure of the server functionality of the chrony daemon diminishes the attack surface.\n\nRHEL 8 utilizes the \"timedatectl\" command to view the status of the \"systemd-timesyncd.service\". The \"timedatectl\" status will display the local time, UTC, and the offset from UTC.\n\nNote that USNO offers authenticated NTP service to DoD and U.S. Government agencies operating on the NIPR and SIPR networks. Visit https://www.usno.navy.mil/USNO/time/ntp/dod-customers for more information.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:310", + "label": "check" + }, + { + "data": "Configure the operating system to disable the chrony daemon from acting as a server by adding/modifying the following line in the /etc/chrony.conf file.\n\nport 0", + "label": "fix" + } + ], + "impact": 0.3, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230485\",\n \"title\": {\n \"text\": \"SRG-OS-000095-GPOS-00049\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230485r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"low\",\n \"version\": {\n \"text\": \"RHEL-08-030741\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must disable the chrony daemon from acting as a server.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Inaccurate time stamps make it more difficult to correlate events and can lead to an inaccurate analysis. Determining the correct time a particular event occurred on a system is critical when conducting forensic analysis and investigating system events. Sources outside the configured acceptable allowance (drift) may be inaccurate.\\n\\nMinimizing the exposure of the server functionality of the chrony daemon diminishes the attack surface.\\n\\nRHEL 8 utilizes the \\\"timedatectl\\\" command to view the status of the \\\"systemd-timesyncd.service\\\". The \\\"timedatectl\\\" status will display the local time, UTC, and the offset from UTC.\\n\\nNote that USNO offers authenticated NTP service to DoD and U.S. Government agencies operating on the NIPR and SIPR networks. Visit https://www.usno.navy.mil/USNO/time/ntp/dod-customers for more information.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000381\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the operating system to disable the chrony daemon from acting as a server by adding/modifying the following line in the /etc/chrony.conf file.\\n\\nport 0\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33129r568202_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33129r568202_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:310\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000381" + ], + "nist": [ + "CM-7 a" + ], + "severity": "low", + "description": "{\"VulnDiscussion\":\"Inaccurate time stamps make it more difficult to correlate events and can lead to an inaccurate analysis. Determining the correct time a particular event occurred on a system is critical when conducting forensic analysis and investigating system events. Sources outside the configured acceptable allowance (drift) may be inaccurate.\\n\\nNot exposing the management interface of the chrony daemon on the network diminishes the attack space.\\n\\nRHEL 8 utilizes the \\\"timedatectl\\\" command to view the status of the \\\"systemd-timesyncd.service\\\". The \\\"timedatectl\\\" status will display the local time, UTC, and the offset from UTC.\\n\\nNote that USNO offers authenticated NTP service to DoD and U.S. Government agencies operating on the NIPR and SIPR networks. Visit https://www.usno.navy.mil/USNO/time/ntp/dod-customers for more information.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230486", + "group_title": "SRG-OS-000095-GPOS-00049", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230486r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:311", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33130r568205_fix", + "fixtext_fixref": "F-33130r568205_fix", + "ident": { + "text": "CCI-000381", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-030742", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230485r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "low", + "version": "RHEL-08-030741", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000381", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:310", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must disable network management of the chrony daemon.", + "id": "V-230486", + "desc": "Inaccurate time stamps make it more difficult to correlate events and can lead to an inaccurate analysis. Determining the correct time a particular event occurred on a system is critical when conducting forensic analysis and investigating system events. Sources outside the configured acceptable allowance (drift) may be inaccurate.\n\nNot exposing the management interface of the chrony daemon on the network diminishes the attack space.\n\nRHEL 8 utilizes the \"timedatectl\" command to view the status of the \"systemd-timesyncd.service\". The \"timedatectl\" status will display the local time, UTC, and the offset from UTC.\n\nNote that USNO offers authenticated NTP service to DoD and U.S. Government agencies operating on the NIPR and SIPR networks. Visit https://www.usno.navy.mil/USNO/time/ntp/dod-customers for more information.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:311", + "label": "check" + }, + { + "data": "Configure the operating system disable network management of the chrony daemon by adding/modifying the following line in the /etc/chrony.conf file.\n\ncmdport 0", + "label": "fix" + } + ], + "impact": 0.3, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230486\",\n \"title\": {\n \"text\": \"SRG-OS-000095-GPOS-00049\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230486r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"low\",\n \"version\": {\n \"text\": \"RHEL-08-030742\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must disable network management of the chrony daemon.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Inaccurate time stamps make it more difficult to correlate events and can lead to an inaccurate analysis. Determining the correct time a particular event occurred on a system is critical when conducting forensic analysis and investigating system events. Sources outside the configured acceptable allowance (drift) may be inaccurate.\\n\\nNot exposing the management interface of the chrony daemon on the network diminishes the attack space.\\n\\nRHEL 8 utilizes the \\\"timedatectl\\\" command to view the status of the \\\"systemd-timesyncd.service\\\". The \\\"timedatectl\\\" status will display the local time, UTC, and the offset from UTC.\\n\\nNote that USNO offers authenticated NTP service to DoD and U.S. Government agencies operating on the NIPR and SIPR networks. Visit https://www.usno.navy.mil/USNO/time/ntp/dod-customers for more information.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000381\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the operating system disable network management of the chrony daemon by adding/modifying the following line in the /etc/chrony.conf file.\\n\\ncmdport 0\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33130r568205_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33130r568205_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:311\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000381" + ], + "nist": [ + "CM-7 a" + ], + "severity": "high", + "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\\n\\nExamples of non-essential capabilities include, but are not limited to, games, software packages, tools, and demonstration software not related to requirements or providing a wide array of functionality not required for every mission, but which cannot be disabled.\\n\\nVerify the operating system is configured to disable non-essential capabilities. The most secure way of ensuring a non-essential capability is disabled is to not have the capability installed.\\n\\nThe telnet service provides an unencrypted remote access service that does not provide for the confidentiality and integrity of user passwords or the remote session.\\n\\nIf a privileged user were to log on using this service, the privileged user password could be compromised.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230487", + "group_title": "SRG-OS-000095-GPOS-00049", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230487r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:312", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33131r568208_fix", + "fixtext_fixref": "F-33131r568208_fix", + "ident": { + "text": "CCI-000381", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-040000", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230486r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "low", + "version": "RHEL-08-030742", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000381", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:311", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must not have the telnet-server package installed.", + "id": "V-230487", + "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\n\nExamples of non-essential capabilities include, but are not limited to, games, software packages, tools, and demonstration software not related to requirements or providing a wide array of functionality not required for every mission, but which cannot be disabled.\n\nVerify the operating system is configured to disable non-essential capabilities. The most secure way of ensuring a non-essential capability is disabled is to not have the capability installed.\n\nThe telnet service provides an unencrypted remote access service that does not provide for the confidentiality and integrity of user passwords or the remote session.\n\nIf a privileged user were to log on using this service, the privileged user password could be compromised.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:312", + "label": "check" + }, + { + "data": "Configure the operating system to disable non-essential capabilities by removing the telnet-server package from the system with the following command:\n\n$ sudo yum remove telnet-server", + "label": "fix" + } + ], + "impact": 0.7, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230487\",\n \"title\": {\n \"text\": \"SRG-OS-000095-GPOS-00049\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230487r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"high\",\n \"version\": {\n \"text\": \"RHEL-08-040000\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must not have the telnet-server package installed.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\\n\\nExamples of non-essential capabilities include, but are not limited to, games, software packages, tools, and demonstration software not related to requirements or providing a wide array of functionality not required for every mission, but which cannot be disabled.\\n\\nVerify the operating system is configured to disable non-essential capabilities. The most secure way of ensuring a non-essential capability is disabled is to not have the capability installed.\\n\\nThe telnet service provides an unencrypted remote access service that does not provide for the confidentiality and integrity of user passwords or the remote session.\\n\\nIf a privileged user were to log on using this service, the privileged user password could be compromised.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000381\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the operating system to disable non-essential capabilities by removing the telnet-server package from the system with the following command:\\n\\n$ sudo yum remove telnet-server\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33131r568208_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33131r568208_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:312\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-11-12T11:37:29-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000381" + ], + "nist": [ + "CM-7 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\\n\\nExamples of non-essential capabilities include, but are not limited to, games, software packages, tools, and demonstration software not related to requirements or providing a wide array of functionality not required for every mission, but which cannot be disabled.\\n\\nVerify the operating system is configured to disable non-essential capabilities. The most secure way of ensuring a non-essential capability is disabled is to not have the capability installed.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230488", + "group_title": "SRG-OS-000095-GPOS-00049", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230488r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:313", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33132r568211_fix", + "fixtext_fixref": "F-33132r568211_fix", + "ident": { + "text": "CCI-000381", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-040001", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230487r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:29-05:00", + "severity": "high", + "version": "RHEL-08-040000", + "weight": "10.000000", + "result": "pass", + "ident": { + "text": "CCI-000381", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:312", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must not have any automated bug reporting tools installed.", + "id": "V-230488", + "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\n\nExamples of non-essential capabilities include, but are not limited to, games, software packages, tools, and demonstration software not related to requirements or providing a wide array of functionality not required for every mission, but which cannot be disabled.\n\nVerify the operating system is configured to disable non-essential capabilities. The most secure way of ensuring a non-essential capability is disabled is to not have the capability installed.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:313", + "label": "check" + }, + { + "data": "Configure the operating system to disable non-essential capabilities by removing automated bug reporting packages from the system with the following command:\n\n$ sudo yum remove abrt*", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230488\",\n \"title\": {\n \"text\": \"SRG-OS-000095-GPOS-00049\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230488r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-040001\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must not have any automated bug reporting tools installed.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\\n\\nExamples of non-essential capabilities include, but are not limited to, games, software packages, tools, and demonstration software not related to requirements or providing a wide array of functionality not required for every mission, but which cannot be disabled.\\n\\nVerify the operating system is configured to disable non-essential capabilities. The most secure way of ensuring a non-essential capability is disabled is to not have the capability installed.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000381\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the operating system to disable non-essential capabilities by removing automated bug reporting packages from the system with the following command:\\n\\n$ sudo yum remove abrt*\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33132r568211_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33132r568211_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:313\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-11-12T11:37:31-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000381" + ], + "nist": [ + "CM-7 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\\n\\nExamples of non-essential capabilities include, but are not limited to, games, software packages, tools, and demonstration software not related to requirements or providing a wide array of functionality not required for every mission, but which cannot be disabled.\\n\\nVerify the operating system is configured to disable non-essential capabilities. The most secure way of ensuring a non-essential capability is disabled is to not have the capability installed.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230489", + "group_title": "SRG-OS-000095-GPOS-00049", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230489r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:314", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33133r568214_fix", + "fixtext_fixref": "F-33133r568214_fix", + "ident": { + "text": "CCI-000381", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-040002", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230488r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:31-05:00", + "severity": "medium", + "version": "RHEL-08-040001", + "weight": "10.000000", + "result": "pass", + "ident": { + "text": "CCI-000381", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:313", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must not have the sendmail package installed.", + "id": "V-230489", + "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\n\nExamples of non-essential capabilities include, but are not limited to, games, software packages, tools, and demonstration software not related to requirements or providing a wide array of functionality not required for every mission, but which cannot be disabled.\n\nVerify the operating system is configured to disable non-essential capabilities. The most secure way of ensuring a non-essential capability is disabled is to not have the capability installed.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:314", + "label": "check" + }, + { + "data": "Configure the operating system to disable non-essential capabilities by removing the sendmail package from the system with the following command:\n\n$ sudo yum remove sendmail", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230489\",\n \"title\": {\n \"text\": \"SRG-OS-000095-GPOS-00049\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230489r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-040002\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must not have the sendmail package installed.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\\n\\nExamples of non-essential capabilities include, but are not limited to, games, software packages, tools, and demonstration software not related to requirements or providing a wide array of functionality not required for every mission, but which cannot be disabled.\\n\\nVerify the operating system is configured to disable non-essential capabilities. The most secure way of ensuring a non-essential capability is disabled is to not have the capability installed.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000381\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the operating system to disable non-essential capabilities by removing the sendmail package from the system with the following command:\\n\\n$ sudo yum remove sendmail\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33133r568214_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33133r568214_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:314\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-11-12T11:37:31-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000381" + ], + "nist": [ + "CM-7 a" + ], + "severity": "high", + "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\\n\\nThe rsh-server service provides an unencrypted remote access service that does not provide for the confidentiality and integrity of user passwords or the remote session and has very weak authentication.\\n\\nIf a privileged user were to log on using this service, the privileged user password could be compromised.\\n\\nSatisfies: SRG-OS-000095-GPOS-00049, SRG-OS-000074-GPOS-00042\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230492", + "group_title": "SRG-OS-000095-GPOS-00049", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230492r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:317", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33136r568223_fix", + "fixtext_fixref": "F-33136r568223_fix", + "ident": { + "text": "CCI-000381", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-040010", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230489r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:31-05:00", + "severity": "medium", + "version": "RHEL-08-040002", + "weight": "10.000000", + "result": "pass", + "ident": { + "text": "CCI-000381", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:314", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must not have the rsh-server package installed.", + "id": "V-230492", + "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\n\nThe rsh-server service provides an unencrypted remote access service that does not provide for the confidentiality and integrity of user passwords or the remote session and has very weak authentication.\n\nIf a privileged user were to log on using this service, the privileged user password could be compromised.\n\nSatisfies: SRG-OS-000095-GPOS-00049, SRG-OS-000074-GPOS-00042", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:317", + "label": "check" + }, + { + "data": "Configure the operating system to disable non-essential capabilities by removing the rsh-server package from the system with the following command:\n\n$ sudo yum remove rsh-server", + "label": "fix" + } + ], + "impact": 0.7, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230492\",\n \"title\": {\n \"text\": \"SRG-OS-000095-GPOS-00049\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230492r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"high\",\n \"version\": {\n \"text\": \"RHEL-08-040010\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must not have the rsh-server package installed.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\\n\\nThe rsh-server service provides an unencrypted remote access service that does not provide for the confidentiality and integrity of user passwords or the remote session and has very weak authentication.\\n\\nIf a privileged user were to log on using this service, the privileged user password could be compromised.\\n\\nSatisfies: SRG-OS-000095-GPOS-00049, SRG-OS-000074-GPOS-00042</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000381\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the operating system to disable non-essential capabilities by removing the rsh-server package from the system with the following command:\\n\\n$ sudo yum remove rsh-server\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33136r568223_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33136r568223_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:317\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-11-12T11:37:31-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000381" + ], + "nist": [ + "CM-7 a" + ], + "severity": "low", + "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nFailing to disconnect unused protocols can result in a system compromise.\\n\\nThe Asynchronous Transfer Mode (ATM) is a protocol operating on network, data link, and physical layers, based on virtual circuits and virtual paths. Disabling ATM protects the system against exploitation of any laws in its implementation.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230494", + "group_title": "SRG-OS-000095-GPOS-00049", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230494r792911_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:318", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33138r792910_fix", + "fixtext_fixref": "F-33138r792910_fix", + "ident": { + "text": "CCI-000381", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-040021", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230492r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:31-05:00", + "severity": "high", + "version": "RHEL-08-040010", + "weight": "10.000000", + "result": "pass", + "ident": { + "text": "CCI-000381", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:317", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must disable the asynchronous transfer mode (ATM) protocol.", + "id": "V-230494", + "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nFailing to disconnect unused protocols can result in a system compromise.\n\nThe Asynchronous Transfer Mode (ATM) is a protocol operating on network, data link, and physical layers, based on virtual circuits and virtual paths. Disabling ATM protects the system against exploitation of any laws in its implementation.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:318", + "label": "check" + }, + { + "data": "Configure the operating system to disable the ability to use the ATM protocol kernel module.\n\nAdd or update the following lines in the file \"/etc/modprobe.d/blacklist.conf\":\n\ninstall atm /bin/true\nblacklist atm\n\nReboot the system for the settings to take effect.", + "label": "fix" + } + ], + "impact": 0.3, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230494\",\n \"title\": {\n \"text\": \"SRG-OS-000095-GPOS-00049\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230494r792911_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"low\",\n \"version\": {\n \"text\": \"RHEL-08-040021\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must disable the asynchronous transfer mode (ATM) protocol.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nFailing to disconnect unused protocols can result in a system compromise.\\n\\nThe Asynchronous Transfer Mode (ATM) is a protocol operating on network, data link, and physical layers, based on virtual circuits and virtual paths. Disabling ATM protects the system against exploitation of any laws in its implementation.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000381\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the operating system to disable the ability to use the ATM protocol kernel module.\\n\\nAdd or update the following lines in the file \\\"/etc/modprobe.d/blacklist.conf\\\":\\n\\ninstall atm /bin/true\\nblacklist atm\\n\\nReboot the system for the settings to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33138r792910_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33138r792910_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:318\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:31-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000381" + ], + "nist": [ + "CM-7 a" + ], + "severity": "low", + "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nFailing to disconnect unused protocols can result in a system compromise.\\n\\nThe Controller Area Network (CAN) is a serial communications protocol, which was initially developed for automotive and is now also used in marine, industrial, and medical applications. Disabling CAN protects the system against exploitation of any flaws in its implementation.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230495", + "group_title": "SRG-OS-000095-GPOS-00049", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230495r792914_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:319", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33139r792913_fix", + "fixtext_fixref": "F-33139r792913_fix", + "ident": { + "text": "CCI-000381", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-040022", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230494r792911_rule", + "role": "full", + "time": "2021-11-12T11:37:31-05:00", + "severity": "low", + "version": "RHEL-08-040021", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000381", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:318", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must disable the controller area network (CAN) protocol.", + "id": "V-230495", + "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nFailing to disconnect unused protocols can result in a system compromise.\n\nThe Controller Area Network (CAN) is a serial communications protocol, which was initially developed for automotive and is now also used in marine, industrial, and medical applications. Disabling CAN protects the system against exploitation of any flaws in its implementation.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:319", + "label": "check" + }, + { + "data": "Configure the operating system to disable the ability to use the CAN protocol kernel module.\n\nAdd or update the following lines in the file \"/etc/modprobe.d/blacklist.conf\":\n\ninstall can /bin/true\nblacklist can\n\nReboot the system for the settings to take effect.", + "label": "fix" + } + ], + "impact": 0.3, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230495\",\n \"title\": {\n \"text\": \"SRG-OS-000095-GPOS-00049\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230495r792914_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"low\",\n \"version\": {\n \"text\": \"RHEL-08-040022\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must disable the controller area network (CAN) protocol.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nFailing to disconnect unused protocols can result in a system compromise.\\n\\nThe Controller Area Network (CAN) is a serial communications protocol, which was initially developed for automotive and is now also used in marine, industrial, and medical applications. Disabling CAN protects the system against exploitation of any flaws in its implementation.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000381\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the operating system to disable the ability to use the CAN protocol kernel module.\\n\\nAdd or update the following lines in the file \\\"/etc/modprobe.d/blacklist.conf\\\":\\n\\ninstall can /bin/true\\nblacklist can\\n\\nReboot the system for the settings to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33139r792913_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33139r792913_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:319\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:31-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000381" + ], + "nist": [ + "CM-7 a" + ], + "severity": "low", + "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nFailing to disconnect unused protocols can result in a system compromise.\\n\\nThe Stream Control Transmission Protocol (SCTP) is a transport layer protocol, designed to support the idea of message-oriented communication, with several streams of messages within one connection. Disabling SCTP protects the system against exploitation of any flaws in its implementation.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230496", + "group_title": "SRG-OS-000095-GPOS-00049", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230496r792917_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:320", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33140r792916_fix", + "fixtext_fixref": "F-33140r792916_fix", + "ident": { + "text": "CCI-000381", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-040023", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230495r792914_rule", + "role": "full", + "time": "2021-11-12T11:37:31-05:00", + "severity": "low", + "version": "RHEL-08-040022", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000381", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:319", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must disable the stream control transmission protocol (SCTP).", + "id": "V-230496", + "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nFailing to disconnect unused protocols can result in a system compromise.\n\nThe Stream Control Transmission Protocol (SCTP) is a transport layer protocol, designed to support the idea of message-oriented communication, with several streams of messages within one connection. Disabling SCTP protects the system against exploitation of any flaws in its implementation.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:320", + "label": "check" + }, + { + "data": "Configure the operating system to disable the ability to use the SCTP kernel module.\n\nAdd or update the following lines in the file \"/etc/modprobe.d/blacklist.conf\":\n\ninstall sctp /bin/true\nblacklist sctp\n\nReboot the system for the settings to take effect.", + "label": "fix" + } + ], + "impact": 0.3, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230496\",\n \"title\": {\n \"text\": \"SRG-OS-000095-GPOS-00049\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230496r792917_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"low\",\n \"version\": {\n \"text\": \"RHEL-08-040023\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must disable the stream control transmission protocol (SCTP).\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nFailing to disconnect unused protocols can result in a system compromise.\\n\\nThe Stream Control Transmission Protocol (SCTP) is a transport layer protocol, designed to support the idea of message-oriented communication, with several streams of messages within one connection. Disabling SCTP protects the system against exploitation of any flaws in its implementation.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000381\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the operating system to disable the ability to use the SCTP kernel module.\\n\\nAdd or update the following lines in the file \\\"/etc/modprobe.d/blacklist.conf\\\":\\n\\ninstall sctp /bin/true\\nblacklist sctp\\n\\nReboot the system for the settings to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33140r792916_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33140r792916_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:320\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:31-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000381" + ], + "nist": [ + "CM-7 a" + ], + "severity": "low", + "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nFailing to disconnect unused protocols can result in a system compromise.\\n\\nThe Transparent Inter-Process Communication (TIPC) protocol is designed to provide communications between nodes in a cluster. Disabling TIPC protects the system against exploitation of any flaws in its implementation.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230497", + "group_title": "SRG-OS-000095-GPOS-00049", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230497r792920_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:321", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33141r792919_fix", + "fixtext_fixref": "F-33141r792919_fix", + "ident": { + "text": "CCI-000381", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-040024", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230496r792917_rule", + "role": "full", + "time": "2021-11-12T11:37:31-05:00", + "severity": "low", + "version": "RHEL-08-040023", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000381", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:320", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must disable the transparent inter-process communication (TIPC) protocol.", + "id": "V-230497", + "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nFailing to disconnect unused protocols can result in a system compromise.\n\nThe Transparent Inter-Process Communication (TIPC) protocol is designed to provide communications between nodes in a cluster. Disabling TIPC protects the system against exploitation of any flaws in its implementation.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:321", + "label": "check" + }, + { + "data": "Configure the operating system to disable the ability to use the TIPC protocol kernel module.\n\nAdd or update the following lines in the file \"/etc/modprobe.d/blacklist.conf\":\n\ninstall tipc /bin/true\nblacklist tipc\n\nReboot the system for the settings to take effect.", + "label": "fix" + } + ], + "impact": 0.3, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230497\",\n \"title\": {\n \"text\": \"SRG-OS-000095-GPOS-00049\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230497r792920_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"low\",\n \"version\": {\n \"text\": \"RHEL-08-040024\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must disable the transparent inter-process communication (TIPC) protocol.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nFailing to disconnect unused protocols can result in a system compromise.\\n\\nThe Transparent Inter-Process Communication (TIPC) protocol is designed to provide communications between nodes in a cluster. Disabling TIPC protects the system against exploitation of any flaws in its implementation.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000381\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the operating system to disable the ability to use the TIPC protocol kernel module.\\n\\nAdd or update the following lines in the file \\\"/etc/modprobe.d/blacklist.conf\\\":\\n\\ninstall tipc /bin/true\\nblacklist tipc\\n\\nReboot the system for the settings to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33141r792919_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33141r792919_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:321\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:31-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000381" + ], + "nist": [ + "CM-7 a" + ], + "severity": "low", + "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nRemoving support for unneeded filesystem types reduces the local attack surface of the server.\\n\\nCompressed ROM/RAM file system (or cramfs) is a read-only file system designed for simplicity and space-efficiency. It is mainly used in embedded and small-footprint systems.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230498", + "group_title": "SRG-OS-000095-GPOS-00049", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230498r792922_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:322", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33142r568241_fix", + "fixtext_fixref": "F-33142r568241_fix", + "ident": { + "text": "CCI-000381", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-040025", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230497r792920_rule", + "role": "full", + "time": "2021-11-12T11:37:31-05:00", + "severity": "low", + "version": "RHEL-08-040024", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000381", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:321", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must disable mounting of cramfs.", + "id": "V-230498", + "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nRemoving support for unneeded filesystem types reduces the local attack surface of the server.\n\nCompressed ROM/RAM file system (or cramfs) is a read-only file system designed for simplicity and space-efficiency. It is mainly used in embedded and small-footprint systems.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:322", + "label": "check" + }, + { + "data": "Configure the operating system to disable the ability to use the cramfs kernel module.\n\nAdd or update the following lines in the file \"/etc/modprobe.d/blacklist.conf\":\n\ninstall cramfs /bin/true\nblacklist cramfs\n\nReboot the system for the settings to take effect.", + "label": "fix" + } + ], + "impact": 0.3, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230498\",\n \"title\": {\n \"text\": \"SRG-OS-000095-GPOS-00049\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230498r792922_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"low\",\n \"version\": {\n \"text\": \"RHEL-08-040025\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must disable mounting of cramfs.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nRemoving support for unneeded filesystem types reduces the local attack surface of the server.\\n\\nCompressed ROM/RAM file system (or cramfs) is a read-only file system designed for simplicity and space-efficiency. It is mainly used in embedded and small-footprint systems.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000381\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the operating system to disable the ability to use the cramfs kernel module.\\n\\nAdd or update the following lines in the file \\\"/etc/modprobe.d/blacklist.conf\\\":\\n\\ninstall cramfs /bin/true\\nblacklist cramfs\\n\\nReboot the system for the settings to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33142r568241_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33142r568241_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:322\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:31-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000381" + ], + "nist": [ + "CM-7 a" + ], + "severity": "low", + "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nThe IEEE 1394 (FireWire) is a serial bus standard for high-speed real-time communication. Disabling FireWire protects the system against exploitation of any flaws in its implementation.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230499", + "group_title": "SRG-OS-000095-GPOS-00049", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230499r792924_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:323", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33143r568244_fix", + "fixtext_fixref": "F-33143r568244_fix", + "ident": { + "text": "CCI-000381", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-040026", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230498r792922_rule", + "role": "full", + "time": "2021-11-12T11:37:31-05:00", + "severity": "low", + "version": "RHEL-08-040025", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000381", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:322", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must disable IEEE 1394 (FireWire) Support.", + "id": "V-230499", + "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nThe IEEE 1394 (FireWire) is a serial bus standard for high-speed real-time communication. Disabling FireWire protects the system against exploitation of any flaws in its implementation.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:323", + "label": "check" + }, + { + "data": "Configure the operating system to disable the ability to use the firewire-core kernel module.\n\nAdd or update the following lines in the file \"/etc/modprobe.d/blacklist.conf\":\n\ninstall firewire-core /bin/true\nblacklist firewire-core\n\nReboot the system for the settings to take effect.", + "label": "fix" + } + ], + "impact": 0.3, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230499\",\n \"title\": {\n \"text\": \"SRG-OS-000095-GPOS-00049\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230499r792924_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"low\",\n \"version\": {\n \"text\": \"RHEL-08-040026\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must disable IEEE 1394 (FireWire) Support.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nThe IEEE 1394 (FireWire) is a serial bus standard for high-speed real-time communication. Disabling FireWire protects the system against exploitation of any flaws in its implementation.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000381\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the operating system to disable the ability to use the firewire-core kernel module.\\n\\nAdd or update the following lines in the file \\\"/etc/modprobe.d/blacklist.conf\\\":\\n\\ninstall firewire-core /bin/true\\nblacklist firewire-core\\n\\nReboot the system for the settings to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33143r568244_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33143r568244_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:323\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:31-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000778" + ], + "nist": [ + "IA-3" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"USB mass storage permits easy introduction of unknown devices, thereby facilitating malicious activity.\\n\\nSatisfies: SRG-OS-000114-GPOS-00059, SRG-OS-000378-GPOS-00163\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230503", + "group_title": "SRG-OS-000114-GPOS-00059", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230503r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:325", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33147r568256_fix", + "fixtext_fixref": "F-33147r568256_fix", + "ident": { + "text": "CCI-000778", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-040080", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230499r792924_rule", + "role": "full", + "time": "2021-11-12T11:37:31-05:00", + "severity": "low", + "version": "RHEL-08-040026", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000381", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:323", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must be configured to disable USB mass storage.", + "id": "V-230503", + "desc": "USB mass storage permits easy introduction of unknown devices, thereby facilitating malicious activity.\n\nSatisfies: SRG-OS-000114-GPOS-00059, SRG-OS-000378-GPOS-00163", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:325", + "label": "check" + }, + { + "data": "Configure the operating system to disable the ability to use the USB Storage kernel module.\n\nCreate a file under \"/etc/modprobe.d\" with the following command:\n\n$ sudo touch /etc/modprobe.d/usb-storage.conf\n\nAdd the following line to the created file:\n\ninstall usb-storage /bin/true\n\nConfigure the operating system to disable the ability to use USB mass storage devices.\n\n$ sudo vi /etc/modprobe.d/blacklist.conf\n\nAdd or update the line:\n\nblacklist usb-storage", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230503\",\n \"title\": {\n \"text\": \"SRG-OS-000114-GPOS-00059\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230503r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-040080\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must be configured to disable USB mass storage.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>USB mass storage permits easy introduction of unknown devices, thereby facilitating malicious activity.\\n\\nSatisfies: SRG-OS-000114-GPOS-00059, SRG-OS-000378-GPOS-00163</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000778\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the operating system to disable the ability to use the USB Storage kernel module.\\n\\nCreate a file under \\\"/etc/modprobe.d\\\" with the following command:\\n\\n$ sudo touch /etc/modprobe.d/usb-storage.conf\\n\\nAdd the following line to the created file:\\n\\ninstall usb-storage /bin/true\\n\\nConfigure the operating system to disable the ability to use USB mass storage devices.\\n\\n$ sudo vi /etc/modprobe.d/blacklist.conf\\n\\nAdd or update the line:\\n\\nblacklist usb-storage\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33147r568256_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33147r568256_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:325\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:31-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001443" + ], + "nist": [ + "AC-18 (1)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without protection of communications with wireless peripherals, confidentiality and integrity may be compromised because unprotected communications can be intercepted and either read, altered, or used to compromise the RHEL 8 operating system.\\n\\nThis requirement applies to wireless peripheral technologies (e.g., wireless mice, keyboards, displays, etc.) used with RHEL 8 systems. Wireless peripherals (e.g., Wi-Fi/Bluetooth/IR Keyboards, Mice, and Pointing Devices and Near Field Communications [NFC]) present a unique challenge by creating an open, unsecured port on a computer. Wireless peripherals must meet DoD requirements for wireless data transmission and be approved for use by the Authorizing Official (AO). Even though some wireless peripherals, such as mice and pointing devices, do not ordinarily carry information that need to be protected, modification of communications with these wireless peripherals may be used to compromise the RHEL 8 operating system. Communication paths outside the physical protection of a controlled boundary are exposed to the possibility of interception and modification.\\n\\nProtecting the confidentiality and integrity of communications with wireless peripherals can be accomplished by physical means (e.g., employing physical barriers to wireless radio frequencies) or by logical means (e.g., employing cryptographic techniques). If physical means of protection are employed, then logical means (cryptography) do not have to be employed, and vice versa. If the wireless peripheral is only passing telemetry data, encryption of the data may not be required.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230507", + "group_title": "SRG-OS-000300-GPOS-00118", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230507r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:326", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33151r568268_fix", + "fixtext_fixref": "F-33151r568268_fix", + "ident": { + "text": "CCI-001443", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-040111", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230503r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:31-05:00", + "severity": "medium", + "version": "RHEL-08-040080", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000778", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:325", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 Bluetooth must be disabled.", + "id": "V-230507", + "desc": "Without protection of communications with wireless peripherals, confidentiality and integrity may be compromised because unprotected communications can be intercepted and either read, altered, or used to compromise the RHEL 8 operating system.\n\nThis requirement applies to wireless peripheral technologies (e.g., wireless mice, keyboards, displays, etc.) used with RHEL 8 systems. Wireless peripherals (e.g., Wi-Fi/Bluetooth/IR Keyboards, Mice, and Pointing Devices and Near Field Communications [NFC]) present a unique challenge by creating an open, unsecured port on a computer. Wireless peripherals must meet DoD requirements for wireless data transmission and be approved for use by the Authorizing Official (AO). Even though some wireless peripherals, such as mice and pointing devices, do not ordinarily carry information that need to be protected, modification of communications with these wireless peripherals may be used to compromise the RHEL 8 operating system. Communication paths outside the physical protection of a controlled boundary are exposed to the possibility of interception and modification.\n\nProtecting the confidentiality and integrity of communications with wireless peripherals can be accomplished by physical means (e.g., employing physical barriers to wireless radio frequencies) or by logical means (e.g., employing cryptographic techniques). If physical means of protection are employed, then logical means (cryptography) do not have to be employed, and vice versa. If the wireless peripheral is only passing telemetry data, encryption of the data may not be required.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:326", + "label": "check" + }, + { + "data": "Configure the operating system to disable the Bluetooth adapter when not in use.\n\nBuild or modify the \"/etc/modprobe.d/bluetooth.conf\" file with the following line:\n\ninstall bluetooth /bin/true\n\nReboot the system for the settings to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230507\",\n \"title\": {\n \"text\": \"SRG-OS-000300-GPOS-00118\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230507r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-040111\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 Bluetooth must be disabled.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without protection of communications with wireless peripherals, confidentiality and integrity may be compromised because unprotected communications can be intercepted and either read, altered, or used to compromise the RHEL 8 operating system.\\n\\nThis requirement applies to wireless peripheral technologies (e.g., wireless mice, keyboards, displays, etc.) used with RHEL 8 systems. Wireless peripherals (e.g., Wi-Fi/Bluetooth/IR Keyboards, Mice, and Pointing Devices and Near Field Communications [NFC]) present a unique challenge by creating an open, unsecured port on a computer. Wireless peripherals must meet DoD requirements for wireless data transmission and be approved for use by the Authorizing Official (AO). Even though some wireless peripherals, such as mice and pointing devices, do not ordinarily carry information that need to be protected, modification of communications with these wireless peripherals may be used to compromise the RHEL 8 operating system. Communication paths outside the physical protection of a controlled boundary are exposed to the possibility of interception and modification.\\n\\nProtecting the confidentiality and integrity of communications with wireless peripherals can be accomplished by physical means (e.g., employing physical barriers to wireless radio frequencies) or by logical means (e.g., employing cryptographic techniques). If physical means of protection are employed, then logical means (cryptography) do not have to be employed, and vice versa. If the wireless peripheral is only passing telemetry data, encryption of the data may not be required.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-001443\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the operating system to disable the Bluetooth adapter when not in use.\\n\\nBuild or modify the \\\"/etc/modprobe.d/bluetooth.conf\\\" file with the following line:\\n\\ninstall bluetooth /bin/true\\n\\nReboot the system for the settings to take effect.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33151r568268_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33151r568268_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:326\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:31-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001764" + ], + "nist": [ + "CM-7 (2)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230508", + "group_title": "SRG-OS-000368-GPOS-00154", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230508r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:327", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33152r568271_fix", + "fixtext_fixref": "F-33152r568271_fix", + "ident": { + "text": "CCI-001764", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-040120", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230507r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:31-05:00", + "severity": "medium", + "version": "RHEL-08-040111", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-001443", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:326", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must mount /dev/shm with the nodev option.", + "id": "V-230508", + "desc": "The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\n\nThe \"noexec\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nodev\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nosuid\" mount option causes the system to not execute \"setuid\" and \"setgid\" files with owner privileges. This option must be used for mounting any file system not containing approved \"setuid\" and \"setguid\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:327", + "label": "check" + }, + { + "data": "Configure the system so that /dev/shm is mounted with the \"nodev\" option by adding /modifying the /etc/fstab with the following line:\n\ntmpfs /dev/shm tmpfs defaults,nodev,nosuid,noexec 0 0", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230508\",\n \"title\": {\n \"text\": \"SRG-OS-000368-GPOS-00154\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230508r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-040120\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must mount /dev/shm with the nodev option.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-001764\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the system so that /dev/shm is mounted with the \\\"nodev\\\" option by adding /modifying the /etc/fstab with the following line:\\n\\ntmpfs /dev/shm tmpfs defaults,nodev,nosuid,noexec 0 0\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33152r568271_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33152r568271_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:327\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-11-12T11:37:31-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001764" + ], + "nist": [ + "CM-7 (2)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230509", + "group_title": "SRG-OS-000368-GPOS-00154", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230509r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:328", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33153r568274_fix", + "fixtext_fixref": "F-33153r568274_fix", + "ident": { + "text": "CCI-001764", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-040121", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230508r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:31-05:00", + "severity": "medium", + "version": "RHEL-08-040120", + "weight": "10.000000", + "result": "pass", + "ident": { + "text": "CCI-001764", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:327", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must mount /dev/shm with the nosuid option.", + "id": "V-230509", + "desc": "The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\n\nThe \"noexec\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\nThe \"nodev\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\nThe \"nosuid\" mount option causes the system to not execute \"setuid\" and \"setgid\" files with owner privileges. This option must be used for mounting any file system not containing approved \"setuid\" and \"setguid\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:328", + "label": "check" + }, + { + "data": "Configure the system so that /dev/shm is mounted with the \"nosuid\" option by adding /modifying the /etc/fstab with the following line:\n\ntmpfs /dev/shm tmpfs defaults,nodev,nosuid,noexec 0 0", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230509\",\n \"title\": {\n \"text\": \"SRG-OS-000368-GPOS-00154\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230509r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-040121\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must mount /dev/shm with the nosuid option.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-001764\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the system so that /dev/shm is mounted with the \\\"nosuid\\\" option by adding /modifying the /etc/fstab with the following line:\\n\\ntmpfs /dev/shm tmpfs defaults,nodev,nosuid,noexec 0 0\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33153r568274_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33153r568274_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:328\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-11-12T11:37:31-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001764" + ], + "nist": [ + "CM-7 (2)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230510", + "group_title": "SRG-OS-000368-GPOS-00154", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230510r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:329", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33154r568277_fix", + "fixtext_fixref": "F-33154r568277_fix", + "ident": { + "text": "CCI-001764", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-040122", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230509r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:31-05:00", + "severity": "medium", + "version": "RHEL-08-040121", + "weight": "10.000000", + "result": "pass", + "ident": { + "text": "CCI-001764", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:328", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must mount /dev/shm with the noexec option.", + "id": "V-230510", + "desc": "The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\n\nThe \"noexec\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nodev\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nosuid\" mount option causes the system to not execute \"setuid\" and \"setgid\" files with owner privileges. This option must be used for mounting any file system not containing approved \"setuid\" and \"setguid\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:329", + "label": "check" + }, + { + "data": "Configure the system so that /dev/shm is mounted with the \"noexec\" option by adding /modifying the /etc/fstab with the following line:\n\ntmpfs /dev/shm tmpfs defaults,nodev,nosuid,noexec 0 0", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230510\",\n \"title\": {\n \"text\": \"SRG-OS-000368-GPOS-00154\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230510r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-040122\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must mount /dev/shm with the noexec option.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-001764\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the system so that /dev/shm is mounted with the \\\"noexec\\\" option by adding /modifying the /etc/fstab with the following line:\\n\\ntmpfs /dev/shm tmpfs defaults,nodev,nosuid,noexec 0 0\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33154r568277_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33154r568277_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:329\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:31-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001764" + ], + "nist": [ + "CM-7 (2)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230511", + "group_title": "SRG-OS-000368-GPOS-00154", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230511r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:330", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33155r568280_fix", + "fixtext_fixref": "F-33155r568280_fix", + "ident": { + "text": "CCI-001764", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-040123", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230510r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:31-05:00", + "severity": "medium", + "version": "RHEL-08-040122", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-001764", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:329", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must mount /tmp with the nodev option.", + "id": "V-230511", + "desc": "The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\n\nThe \"noexec\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nodev\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nosuid\" mount option causes the system to not execute \"setuid\" and \"setgid\" files with owner privileges. This option must be used for mounting any file system not containing approved \"setuid\" and \"setguid\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:330", + "label": "check" + }, + { + "data": "Configure the system so that /tmp is mounted with the \"nodev\" option by adding /modifying the /etc/fstab with the following line:\n\n/dev/mapper/rhel-tmp /tmp xfs defaults,nodev,nosuid,noexec 0 0", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230511\",\n \"title\": {\n \"text\": \"SRG-OS-000368-GPOS-00154\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230511r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-040123\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must mount /tmp with the nodev option.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-001764\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the system so that /tmp is mounted with the \\\"nodev\\\" option by adding /modifying the /etc/fstab with the following line:\\n\\n/dev/mapper/rhel-tmp /tmp xfs defaults,nodev,nosuid,noexec 0 0\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33155r568280_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33155r568280_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:330\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:31-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001764" + ], + "nist": [ + "CM-7 (2)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230512", + "group_title": "SRG-OS-000368-GPOS-00154", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230512r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:331", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33156r568283_fix", + "fixtext_fixref": "F-33156r568283_fix", + "ident": { + "text": "CCI-001764", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-040124", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230511r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:31-05:00", + "severity": "medium", + "version": "RHEL-08-040123", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-001764", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:330", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must mount /tmp with the nosuid option.", + "id": "V-230512", + "desc": "The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\n\nThe \"noexec\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\nThe \"nodev\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\nThe \"nosuid\" mount option causes the system to not execute \"setuid\" and \"setgid\" files with owner privileges. This option must be used for mounting any file system not containing approved \"setuid\" and \"setguid\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:331", + "label": "check" + }, + { + "data": "Configure the system so that /tmp is mounted with the \"nosuid\" option by adding /modifying the /etc/fstab with the following line:\n\n/dev/mapper/rhel-tmp /tmp xfs defaults,nodev,nosuid,noexec 0 0", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230512\",\n \"title\": {\n \"text\": \"SRG-OS-000368-GPOS-00154\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230512r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-040124\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must mount /tmp with the nosuid option.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-001764\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the system so that /tmp is mounted with the \\\"nosuid\\\" option by adding /modifying the /etc/fstab with the following line:\\n\\n/dev/mapper/rhel-tmp /tmp xfs defaults,nodev,nosuid,noexec 0 0\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33156r568283_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33156r568283_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:331\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:31-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001764" + ], + "nist": [ + "CM-7 (2)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230513", + "group_title": "SRG-OS-000368-GPOS-00154", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230513r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:332", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33157r568286_fix", + "fixtext_fixref": "F-33157r568286_fix", + "ident": { + "text": "CCI-001764", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-040125", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230512r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:31-05:00", + "severity": "medium", + "version": "RHEL-08-040124", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-001764", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:331", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must mount /tmp with the noexec option.", + "id": "V-230513", + "desc": "The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\n\nThe \"noexec\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nodev\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nosuid\" mount option causes the system to not execute \"setuid\" and \"setgid\" files with owner privileges. This option must be used for mounting any file system not containing approved \"setuid\" and \"setguid\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:332", + "label": "check" + }, + { + "data": "Configure the system so that /tmp is mounted with the \"noexec\" option by adding /modifying the /etc/fstab with the following line:\n\n/dev/mapper/rhel-tmp /tmp xfs defaults,nodev,nosuid,noexec 0 0", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230513\",\n \"title\": {\n \"text\": \"SRG-OS-000368-GPOS-00154\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230513r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-040125\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must mount /tmp with the noexec option.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-001764\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the system so that /tmp is mounted with the \\\"noexec\\\" option by adding /modifying the /etc/fstab with the following line:\\n\\n/dev/mapper/rhel-tmp /tmp xfs defaults,nodev,nosuid,noexec 0 0\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33157r568286_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33157r568286_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:332\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:31-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001764" + ], + "nist": [ + "CM-7 (2)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230514", + "group_title": "SRG-OS-000368-GPOS-00154", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230514r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:333", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33158r568289_fix", + "fixtext_fixref": "F-33158r568289_fix", + "ident": { + "text": "CCI-001764", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-040126", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230513r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:31-05:00", + "severity": "medium", + "version": "RHEL-08-040125", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-001764", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:332", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must mount /var/log with the nodev option.", + "id": "V-230514", + "desc": "The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\n\nThe \"noexec\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nodev\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nosuid\" mount option causes the system to not execute \"setuid\" and \"setgid\" files with owner privileges. This option must be used for mounting any file system not containing approved \"setuid\" and \"setguid\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:333", + "label": "check" + }, + { + "data": "Configure the system so that /var/log is mounted with the \"nodev\" option by adding /modifying the /etc/fstab with the following line:\n\n/dev/mapper/rhel-var-log /var/log xfs defaults,nodev,nosuid,noexec 0 0", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230514\",\n \"title\": {\n \"text\": \"SRG-OS-000368-GPOS-00154\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230514r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-040126\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must mount /var/log with the nodev option.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-001764\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the system so that /var/log is mounted with the \\\"nodev\\\" option by adding /modifying the /etc/fstab with the following line:\\n\\n/dev/mapper/rhel-var-log /var/log xfs defaults,nodev,nosuid,noexec 0 0\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33158r568289_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33158r568289_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:333\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:31-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001764" + ], + "nist": [ + "CM-7 (2)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230515", + "group_title": "SRG-OS-000368-GPOS-00154", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230515r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:334", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33159r568292_fix", + "fixtext_fixref": "F-33159r568292_fix", + "ident": { + "text": "CCI-001764", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-040127", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230514r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:31-05:00", + "severity": "medium", + "version": "RHEL-08-040126", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-001764", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:333", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must mount /var/log with the nosuid option.", + "id": "V-230515", + "desc": "The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\n\nThe \"noexec\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nodev\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nosuid\" mount option causes the system to not execute \"setuid\" and \"setgid\" files with owner privileges. This option must be used for mounting any file system not containing approved \"setuid\" and \"setguid\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:334", + "label": "check" + }, + { + "data": "Configure the system so that /var/log is mounted with the \"nosuid\" option by adding /modifying the /etc/fstab with the following line:\n\n/dev/mapper/rhel-var-log /var/log xfs defaults,nodev,nosuid,noexec 0 0", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230515\",\n \"title\": {\n \"text\": \"SRG-OS-000368-GPOS-00154\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230515r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-040127\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must mount /var/log with the nosuid option.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-001764\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the system so that /var/log is mounted with the \\\"nosuid\\\" option by adding /modifying the /etc/fstab with the following line:\\n\\n/dev/mapper/rhel-var-log /var/log xfs defaults,nodev,nosuid,noexec 0 0\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33159r568292_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33159r568292_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:334\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:31-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001764" + ], + "nist": [ + "CM-7 (2)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230516", + "group_title": "SRG-OS-000368-GPOS-00154", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230516r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:335", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33160r568295_fix", + "fixtext_fixref": "F-33160r568295_fix", + "ident": { + "text": "CCI-001764", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-040128", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230515r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:31-05:00", + "severity": "medium", + "version": "RHEL-08-040127", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-001764", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:334", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must mount /var/log with the noexec option.", + "id": "V-230516", + "desc": "The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\n\nThe \"noexec\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nodev\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nosuid\" mount option causes the system to not execute \"setuid\" and \"setgid\" files with owner privileges. This option must be used for mounting any file system not containing approved \"setuid\" and \"setguid\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:335", + "label": "check" + }, + { + "data": "Configure the system so that /var/log is mounted with the \"noexec\" option by adding /modifying the /etc/fstab with the following line:\n\n/dev/mapper/rhel-var-log /var/log xfs defaults,nodev,nosuid,noexec 0 0", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230516\",\n \"title\": {\n \"text\": \"SRG-OS-000368-GPOS-00154\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230516r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-040128\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must mount /var/log with the noexec option.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-001764\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the system so that /var/log is mounted with the \\\"noexec\\\" option by adding /modifying the /etc/fstab with the following line:\\n\\n/dev/mapper/rhel-var-log /var/log xfs defaults,nodev,nosuid,noexec 0 0\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33160r568295_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33160r568295_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:335\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:31-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001764" + ], + "nist": [ + "CM-7 (2)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230517", + "group_title": "SRG-OS-000368-GPOS-00154", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230517r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:336", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33161r568298_fix", + "fixtext_fixref": "F-33161r568298_fix", + "ident": { + "text": "CCI-001764", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-040129", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230516r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:31-05:00", + "severity": "medium", + "version": "RHEL-08-040128", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-001764", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:335", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must mount /var/log/audit with the nodev option.", + "id": "V-230517", + "desc": "The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\n\nThe \"noexec\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nodev\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nosuid\" mount option causes the system to not execute \"setuid\" and \"setgid\" files with owner privileges. This option must be used for mounting any file system not containing approved \"setuid\" and \"setguid\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:336", + "label": "check" + }, + { + "data": "Configure the system so that /var/log/audit is mounted with the \"nodev\" option by adding /modifying the /etc/fstab with the following line:\n\n/dev/mapper/rhel-var-log-audit /var/log/audit xfs defaults,nodev,nosuid,noexec 0 0", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230517\",\n \"title\": {\n \"text\": \"SRG-OS-000368-GPOS-00154\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230517r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-040129\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must mount /var/log/audit with the nodev option.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-001764\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the system so that /var/log/audit is mounted with the \\\"nodev\\\" option by adding /modifying the /etc/fstab with the following line:\\n\\n/dev/mapper/rhel-var-log-audit /var/log/audit xfs defaults,nodev,nosuid,noexec 0 0\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33161r568298_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33161r568298_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:336\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:31-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001764" + ], + "nist": [ + "CM-7 (2)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230518", + "group_title": "SRG-OS-000368-GPOS-00154", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230518r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:337", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33162r568301_fix", + "fixtext_fixref": "F-33162r568301_fix", + "ident": { + "text": "CCI-001764", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-040130", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230517r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:31-05:00", + "severity": "medium", + "version": "RHEL-08-040129", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-001764", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:336", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must mount /var/log/audit with the nosuid option.", + "id": "V-230518", + "desc": "The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\n\nThe \"noexec\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nodev\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nosuid\" mount option causes the system to not execute \"setuid\" and \"setgid\" files with owner privileges. This option must be used for mounting any file system not containing approved \"setuid\" and \"setguid\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:337", + "label": "check" + }, + { + "data": "Configure the system so that /var/log/audit is mounted with the \"nosuid\" option by adding /modifying the /etc/fstab with the following line:\n\n/dev/mapper/rhel-var-log-audit /var/log/audit xfs defaults,nodev,nosuid,noexec 0 0", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230518\",\n \"title\": {\n \"text\": \"SRG-OS-000368-GPOS-00154\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230518r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-040130\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must mount /var/log/audit with the nosuid option.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-001764\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the system so that /var/log/audit is mounted with the \\\"nosuid\\\" option by adding /modifying the /etc/fstab with the following line:\\n\\n/dev/mapper/rhel-var-log-audit /var/log/audit xfs defaults,nodev,nosuid,noexec 0 0\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33162r568301_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33162r568301_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:337\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:31-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001764" + ], + "nist": [ + "CM-7 (2)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230519", + "group_title": "SRG-OS-000368-GPOS-00154", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230519r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:338", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33163r568304_fix", + "fixtext_fixref": "F-33163r568304_fix", + "ident": { + "text": "CCI-001764", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-040131", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230518r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:31-05:00", + "severity": "medium", + "version": "RHEL-08-040130", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-001764", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:337", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must mount /var/log/audit with the noexec option.", + "id": "V-230519", + "desc": "The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\n\nThe \"noexec\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nodev\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nosuid\" mount option causes the system to not execute \"setuid\" and \"setgid\" files with owner privileges. This option must be used for mounting any file system not containing approved \"setuid\" and \"setguid\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:338", + "label": "check" + }, + { + "data": "Configure the system so that /var/log/audit is mounted with the \"noexec\" option by adding /modifying the /etc/fstab with the following line:\n\n/dev/mapper/rhel-var-log-audit /var/log/audit xfs defaults,nodev,nosuid,noexec 0 0", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230519\",\n \"title\": {\n \"text\": \"SRG-OS-000368-GPOS-00154\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230519r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-040131\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must mount /var/log/audit with the noexec option.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-001764\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the system so that /var/log/audit is mounted with the \\\"noexec\\\" option by adding /modifying the /etc/fstab with the following line:\\n\\n/dev/mapper/rhel-var-log-audit /var/log/audit xfs defaults,nodev,nosuid,noexec 0 0\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33163r568304_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33163r568304_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:338\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:31-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001764" + ], + "nist": [ + "CM-7 (2)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230520", + "group_title": "SRG-OS-000368-GPOS-00154", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230520r792927_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:339", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33164r792926_fix", + "fixtext_fixref": "F-33164r792926_fix", + "ident": { + "text": "CCI-001764", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-040132", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230519r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:31-05:00", + "severity": "medium", + "version": "RHEL-08-040131", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-001764", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:338", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must mount /var/tmp with the nodev option.", + "id": "V-230520", + "desc": "The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\n\nThe \"noexec\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nodev\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nosuid\" mount option causes the system to not execute \"setuid\" and \"setgid\" files with owner privileges. This option must be used for mounting any file system not containing approved \"setuid\" and \"setguid\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:339", + "label": "check" + }, + { + "data": "Configure the system so that /var/tmp is mounted with the \"nodev\" option by adding /modifying the /etc/fstab with the following line:\n\n/dev/mapper/rhel-var-tmp /var/tmp xfs defaults,nodev,nosuid,noexec 0 0", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230520\",\n \"title\": {\n \"text\": \"SRG-OS-000368-GPOS-00154\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230520r792927_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-040132\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must mount /var/tmp with the nodev option.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-001764\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the system so that /var/tmp is mounted with the \\\"nodev\\\" option by adding /modifying the /etc/fstab with the following line:\\n\\n/dev/mapper/rhel-var-tmp /var/tmp xfs defaults,nodev,nosuid,noexec 0 0\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33164r792926_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33164r792926_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:339\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-11-12T11:37:31-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001764" + ], + "nist": [ + "CM-7 (2)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230521", + "group_title": "SRG-OS-000368-GPOS-00154", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230521r792930_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:340", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33165r792929_fix", + "fixtext_fixref": "F-33165r792929_fix", + "ident": { + "text": "CCI-001764", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-040133", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230520r792927_rule", + "role": "full", + "time": "2021-11-12T11:37:31-05:00", + "severity": "medium", + "version": "RHEL-08-040132", + "weight": "10.000000", + "result": "pass", + "ident": { + "text": "CCI-001764", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:339", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must mount /var/tmp with the nosuid option.", + "id": "V-230521", + "desc": "The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\n\nThe \"noexec\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nodev\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nosuid\" mount option causes the system to not execute \"setuid\" and \"setgid\" files with owner privileges. This option must be used for mounting any file system not containing approved \"setuid\" and \"setguid\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:340", + "label": "check" + }, + { + "data": "Configure the system so that /var/tmp is mounted with the \"nosuid\" option by adding /modifying the /etc/fstab with the following line:\n\n/dev/mapper/rhel-var-tmp /var/tmp xfs defaults,nodev,nosuid,noexec 0 0", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230521\",\n \"title\": {\n \"text\": \"SRG-OS-000368-GPOS-00154\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230521r792930_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-040133\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must mount /var/tmp with the nosuid option.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-001764\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the system so that /var/tmp is mounted with the \\\"nosuid\\\" option by adding /modifying the /etc/fstab with the following line:\\n\\n/dev/mapper/rhel-var-tmp /var/tmp xfs defaults,nodev,nosuid,noexec 0 0\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33165r792929_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33165r792929_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:340\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-11-12T11:37:31-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001764" + ], + "nist": [ + "CM-7 (2)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230522", + "group_title": "SRG-OS-000368-GPOS-00154", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230522r792933_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:341", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33166r792932_fix", + "fixtext_fixref": "F-33166r792932_fix", + "ident": { + "text": "CCI-001764", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-040134", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230521r792930_rule", + "role": "full", + "time": "2021-11-12T11:37:31-05:00", + "severity": "medium", + "version": "RHEL-08-040133", + "weight": "10.000000", + "result": "pass", + "ident": { + "text": "CCI-001764", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:340", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must mount /var/tmp with the noexec option.", + "id": "V-230522", + "desc": "The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\n\nThe \"noexec\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nodev\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nosuid\" mount option causes the system to not execute \"setuid\" and \"setgid\" files with owner privileges. This option must be used for mounting any file system not containing approved \"setuid\" and \"setguid\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:341", + "label": "check" + }, + { + "data": "Configure the system so that /var/tmp is mounted with the \"noexec\" option by adding /modifying the /etc/fstab with the following line:\n\n/dev/mapper/rhel-var-tmp /var/tmp xfs defaults,nodev,nosuid,noexec 0 0", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230522\",\n \"title\": {\n \"text\": \"SRG-OS-000368-GPOS-00154\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230522r792933_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-040134\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must mount /var/tmp with the noexec option.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-001764\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the system so that /var/tmp is mounted with the \\\"noexec\\\" option by adding /modifying the /etc/fstab with the following line:\\n\\n/dev/mapper/rhel-var-tmp /var/tmp xfs defaults,nodev,nosuid,noexec 0 0\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33166r792932_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33166r792932_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:341\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-11-12T11:37:31-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-002418" + ], + "nist": [ + "SC-8" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without protection of the transmitted information, confidentiality and integrity may be compromised because unprotected communications can be intercepted and either read or altered. \\n\\nThis requirement applies to both internal and external networks and all types of information system components from which information can be transmitted (e.g., servers, mobile devices, notebook computers, printers, copiers, scanners, and facsimile machines). Communication paths outside the physical protection of a controlled boundary are exposed to the possibility of interception and modification. \\n\\nProtecting the confidentiality and integrity of organizational information can be accomplished by physical means (e.g., employing physical distribution systems) or by logical means (e.g., employing cryptographic techniques). If physical means of protection are employed, then logical means (cryptography) do not have to be employed, and vice versa.\\n\\nSatisfies: SRG-OS-000423-GPOS-00187, SRG-OS-000424-GPOS-00188, SRG-OS-000425-GPOS-00189, SRG-OS-000426-GPOS-00190\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230526", + "group_title": "SRG-OS-000423-GPOS-00187", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230526r744032_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:342", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33170r744031_fix", + "fixtext_fixref": "F-33170r744031_fix", + "ident": { + "text": "CCI-002418", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-040160", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230522r792933_rule", + "role": "full", + "time": "2021-11-12T11:37:31-05:00", + "severity": "medium", + "version": "RHEL-08-040134", + "weight": "10.000000", + "result": "pass", + "ident": { + "text": "CCI-001764", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:341", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "All RHEL 8 networked systems must have and implement SSH to protect the confidentiality and integrity of transmitted and received information, as well as information during preparation for transmission.", + "id": "V-230526", + "desc": "Without protection of the transmitted information, confidentiality and integrity may be compromised because unprotected communications can be intercepted and either read or altered. \n\nThis requirement applies to both internal and external networks and all types of information system components from which information can be transmitted (e.g., servers, mobile devices, notebook computers, printers, copiers, scanners, and facsimile machines). Communication paths outside the physical protection of a controlled boundary are exposed to the possibility of interception and modification. \n\nProtecting the confidentiality and integrity of organizational information can be accomplished by physical means (e.g., employing physical distribution systems) or by logical means (e.g., employing cryptographic techniques). If physical means of protection are employed, then logical means (cryptography) do not have to be employed, and vice versa.\n\nSatisfies: SRG-OS-000423-GPOS-00187, SRG-OS-000424-GPOS-00188, SRG-OS-000425-GPOS-00189, SRG-OS-000426-GPOS-00190", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:342", + "label": "check" + }, + { + "data": "Configure the SSH service to automatically start after reboot with the following command:\n\n$ sudo systemctl enable sshd.service", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230526\",\n \"title\": {\n \"text\": \"SRG-OS-000423-GPOS-00187\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230526r744032_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-040160\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"All RHEL 8 networked systems must have and implement SSH to protect the confidentiality and integrity of transmitted and received information, as well as information during preparation for transmission.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without protection of the transmitted information, confidentiality and integrity may be compromised because unprotected communications can be intercepted and either read or altered. \\n\\nThis requirement applies to both internal and external networks and all types of information system components from which information can be transmitted (e.g., servers, mobile devices, notebook computers, printers, copiers, scanners, and facsimile machines). Communication paths outside the physical protection of a controlled boundary are exposed to the possibility of interception and modification. \\n\\nProtecting the confidentiality and integrity of organizational information can be accomplished by physical means (e.g., employing physical distribution systems) or by logical means (e.g., employing cryptographic techniques). If physical means of protection are employed, then logical means (cryptography) do not have to be employed, and vice versa.\\n\\nSatisfies: SRG-OS-000423-GPOS-00187, SRG-OS-000424-GPOS-00188, SRG-OS-000425-GPOS-00189, SRG-OS-000426-GPOS-00190</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-002418\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the SSH service to automatically start after reboot with the following command:\\n\\n$ sudo systemctl enable sshd.service\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33170r744031_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33170r744031_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:342\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-11-12T11:37:31-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000068" + ], + "nist": [ + "AC-17 (2)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without protection of the transmitted information, confidentiality and integrity may be compromised because unprotected communications can be intercepted and either read or altered. \\n\\nThis requirement applies to both internal and external networks and all types of information system components from which information can be transmitted (e.g., servers, mobile devices, notebook computers, printers, copiers, scanners, and facsimile machines). Communication paths outside the physical protection of a controlled boundary are exposed to the possibility of interception and modification. \\n\\nProtecting the confidentiality and integrity of organizational information can be accomplished by physical means (e.g., employing physical distribution systems) or by logical means (e.g., employing cryptographic techniques). If physical means of protection are employed, then logical means (cryptography) do not have to be employed, and vice versa.\\n\\nSession key regeneration limits the chances of a session key becoming compromised.\\n\\nSatisfies: SRG-OS-000033-GPOS-00014, SRG-OS-000420-GPOS-00186, SRG-OS-000424-GPOS-00188\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230527", + "group_title": "SRG-OS-000033-GPOS-00014", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230527r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:343", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33171r568328_fix", + "fixtext_fixref": "F-33171r568328_fix", + "ident": { + "text": "CCI-000068", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-040161", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230526r744032_rule", + "role": "full", + "time": "2021-11-12T11:37:31-05:00", + "severity": "medium", + "version": "RHEL-08-040160", + "weight": "10.000000", + "result": "pass", + "ident": { + "text": "CCI-002418", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:342", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must force a frequent session key renegotiation for SSH connections to the server.", + "id": "V-230527", + "desc": "Without protection of the transmitted information, confidentiality and integrity may be compromised because unprotected communications can be intercepted and either read or altered. \n\nThis requirement applies to both internal and external networks and all types of information system components from which information can be transmitted (e.g., servers, mobile devices, notebook computers, printers, copiers, scanners, and facsimile machines). Communication paths outside the physical protection of a controlled boundary are exposed to the possibility of interception and modification. \n\nProtecting the confidentiality and integrity of organizational information can be accomplished by physical means (e.g., employing physical distribution systems) or by logical means (e.g., employing cryptographic techniques). If physical means of protection are employed, then logical means (cryptography) do not have to be employed, and vice versa.\n\nSession key regeneration limits the chances of a session key becoming compromised.\n\nSatisfies: SRG-OS-000033-GPOS-00014, SRG-OS-000420-GPOS-00186, SRG-OS-000424-GPOS-00188", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:343", + "label": "check" + }, + { + "data": "Configure the system to force a frequent session key renegotiation for SSH connections to the server by add or modifying the following line in the \"/etc/ssh/sshd_config\" file:\n\nRekeyLimit 1G 1h\n\nRestart the SSH daemon for the settings to take effect.\n\n$ sudo systemctl restart sshd.service", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230527\",\n \"title\": {\n \"text\": \"SRG-OS-000033-GPOS-00014\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230527r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-040161\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must force a frequent session key renegotiation for SSH connections to the server.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without protection of the transmitted information, confidentiality and integrity may be compromised because unprotected communications can be intercepted and either read or altered. \\n\\nThis requirement applies to both internal and external networks and all types of information system components from which information can be transmitted (e.g., servers, mobile devices, notebook computers, printers, copiers, scanners, and facsimile machines). Communication paths outside the physical protection of a controlled boundary are exposed to the possibility of interception and modification. \\n\\nProtecting the confidentiality and integrity of organizational information can be accomplished by physical means (e.g., employing physical distribution systems) or by logical means (e.g., employing cryptographic techniques). If physical means of protection are employed, then logical means (cryptography) do not have to be employed, and vice versa.\\n\\nSession key regeneration limits the chances of a session key becoming compromised.\\n\\nSatisfies: SRG-OS-000033-GPOS-00014, SRG-OS-000420-GPOS-00186, SRG-OS-000424-GPOS-00188</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000068\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the system to force a frequent session key renegotiation for SSH connections to the server by add or modifying the following line in the \\\"/etc/ssh/sshd_config\\\" file:\\n\\nRekeyLimit 1G 1h\\n\\nRestart the SSH daemon for the settings to take effect.\\n\\n$ sudo systemctl restart sshd.service\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33171r568328_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33171r568328_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:343\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:31-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "high", + "description": "{\"VulnDiscussion\":\"A locally logged-on user who presses Ctrl-Alt-Delete when at the console can reboot the system. If accidentally pressed, as could happen in the case of a mixed OS environment, this can create the risk of short-term loss of availability of systems due to unintentional reboot. In a graphical user environment, risk of unintentional reboot from the Ctrl-Alt-Delete sequence is reduced because the user will be prompted before any action is taken.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230531", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230531r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:345", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33175r619890_fix", + "fixtext_fixref": "F-33175r619890_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-040172", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230527r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:31-05:00", + "severity": "medium", + "version": "RHEL-08-040161", + "weight": "10.000000", + "result": "error", + "ident": { + "text": "CCI-000068", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:343", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The systemd Ctrl-Alt-Delete burst key sequence in RHEL 8 must be disabled.", + "id": "V-230531", + "desc": "A locally logged-on user who presses Ctrl-Alt-Delete when at the console can reboot the system. If accidentally pressed, as could happen in the case of a mixed OS environment, this can create the risk of short-term loss of availability of systems due to unintentional reboot. In a graphical user environment, risk of unintentional reboot from the Ctrl-Alt-Delete sequence is reduced because the user will be prompted before any action is taken.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:345", + "label": "check" + }, + { + "data": "Configure the system to disable the CtrlAltDelBurstAction by added or modifying the following line in the \"/etc/systemd/system.conf\" configuration file:\n\nCtrlAltDelBurstAction=none\n\nReload the daemon for this change to take effect.\n\n$ sudo systemctl daemon-reload", + "label": "fix" + } + ], + "impact": 0.7, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230531\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230531r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"high\",\n \"version\": {\n \"text\": \"RHEL-08-040172\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The systemd Ctrl-Alt-Delete burst key sequence in RHEL 8 must be disabled.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>A locally logged-on user who presses Ctrl-Alt-Delete when at the console can reboot the system. If accidentally pressed, as could happen in the case of a mixed OS environment, this can create the risk of short-term loss of availability of systems due to unintentional reboot. In a graphical user environment, risk of unintentional reboot from the Ctrl-Alt-Delete sequence is reduced because the user will be prompted before any action is taken.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the system to disable the CtrlAltDelBurstAction by added or modifying the following line in the \\\"/etc/systemd/system.conf\\\" configuration file:\\n\\nCtrlAltDelBurstAction=none\\n\\nReload the daemon for this change to take effect.\\n\\n$ sudo systemctl daemon-reload\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33175r619890_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33175r619890_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:345\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:31-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "high", + "description": "{\"VulnDiscussion\":\"If TFTP is required for operational support (such as the transmission of router configurations) its use must be documented with the Information System Security Officer (ISSO), restricted to only authorized personnel, and have access control rules established.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230533", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230533r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:346", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33177r568346_fix", + "fixtext_fixref": "F-33177r568346_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-040190", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230531r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:31-05:00", + "severity": "high", + "version": "RHEL-08-040172", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:345", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Trivial File Transfer Protocol (TFTP) server package must not be installed if not required for RHEL 8 operational support.", + "id": "V-230533", + "desc": "If TFTP is required for operational support (such as the transmission of router configurations) its use must be documented with the Information System Security Officer (ISSO), restricted to only authorized personnel, and have access control rules established.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:346", + "label": "check" + }, + { + "data": "Remove the TFTP package from the system with the following command:\n\n$ sudo yum remove tftp-server", + "label": "fix" + } + ], + "impact": 0.7, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230533\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230533r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"high\",\n \"version\": {\n \"text\": \"RHEL-08-040190\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The Trivial File Transfer Protocol (TFTP) server package must not be installed if not required for RHEL 8 operational support.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>If TFTP is required for operational support (such as the transmission of router configurations) its use must be documented with the Information System Security Officer (ISSO), restricted to only authorized personnel, and have access control rules established.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Remove the TFTP package from the system with the following command:\\n\\n$ sudo yum remove tftp-server\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33177r568346_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33177r568346_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:346\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-11-12T11:37:31-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "high", + "description": "{\"VulnDiscussion\":\"If an account other than root also has a User Identifier (UID) of \\\"0\\\", it has root authority, giving that account unrestricted access to the entire operating system. Multiple accounts with a UID of \\\"0\\\" afford an opportunity for potential intruders to guess a password for a privileged account.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230534", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230534r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:347", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33178r568349_fix", + "fixtext_fixref": "F-33178r568349_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-040200", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230533r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:31-05:00", + "severity": "high", + "version": "RHEL-08-040190", + "weight": "10.000000", + "result": "pass", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:346", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The root account must be the only account having unrestricted access to the RHEL 8 system.", + "id": "V-230534", + "desc": "If an account other than root also has a User Identifier (UID) of \"0\", it has root authority, giving that account unrestricted access to the entire operating system. Multiple accounts with a UID of \"0\" afford an opportunity for potential intruders to guess a password for a privileged account.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:347", + "label": "check" + }, + { + "data": "Change the UID of any account on the system, other than root, that has a UID of \"0\". \n\nIf the account is associated with system commands or applications, the UID should be changed to one greater than \"0\" but less than \"1000\". Otherwise, assign a UID of greater than \"1000\" that has not already been assigned.", + "label": "fix" + } + ], + "impact": 0.7, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230534\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230534r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"high\",\n \"version\": {\n \"text\": \"RHEL-08-040200\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The root account must be the only account having unrestricted access to the RHEL 8 system.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>If an account other than root also has a User Identifier (UID) of \\\"0\\\", it has root authority, giving that account unrestricted access to the entire operating system. Multiple accounts with a UID of \\\"0\\\" afford an opportunity for potential intruders to guess a password for a privileged account.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Change the UID of any account on the system, other than root, that has a UID of \\\"0\\\". \\n\\nIf the account is associated with system commands or applications, the UID should be changed to one greater than \\\"0\\\" but less than \\\"1000\\\". Otherwise, assign a UID of greater than \\\"1000\\\" that has not already been assigned.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33178r568349_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33178r568349_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:347\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-11-12T11:37:31-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages modify the host's route table and are unauthenticated. An illicit ICMP redirect message could result in a man-in-the-middle attack.\\n\\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\\n/etc/sysctl.d/*.conf\\n/run/sysctl.d/*.conf\\n/usr/local/lib/sysctl.d/*.conf\\n/usr/lib/sysctl.d/*.conf\\n/lib/sysctl.d/*.conf\\n/etc/sysctl.conf\\n\\nBased on the information above, if a configuration file that begins with \\\"99-\\\" is created in the \\\"/etc/sysctl.d/\\\" directory, it will take precedence over any other configuration file on the system.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230535", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230535r792936_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:348", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33179r792935_fix", + "fixtext_fixref": "F-33179r792935_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-040210", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230534r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:31-05:00", + "severity": "high", + "version": "RHEL-08-040200", + "weight": "10.000000", + "result": "pass", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:347", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must prevent IPv6 Internet Control Message Protocol (ICMP) redirect messages from being accepted.", + "id": "V-230535", + "desc": "ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages modify the host's route table and are unauthenticated. An illicit ICMP redirect message could result in a man-in-the-middle attack.\n\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\n/etc/sysctl.d/*.conf\n/run/sysctl.d/*.conf\n/usr/local/lib/sysctl.d/*.conf\n/usr/lib/sysctl.d/*.conf\n/lib/sysctl.d/*.conf\n/etc/sysctl.conf\n\nBased on the information above, if a configuration file that begins with \"99-\" is created in the \"/etc/sysctl.d/\" directory, it will take precedence over any other configuration file on the system.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:348", + "label": "check" + }, + { + "data": "Configure RHEL 8 to prevent IPv6 ICMP redirect messages from being accepted.\n\nAdd or edit the following line in a system configuration file, which begins with \"99-\", in the \"/etc/sysctl.d/\" directory:\n\nnet.ipv6.conf.default.accept_redirects = 0\n\nLoad settings from all system configuration files with the following command:\n\n$ sudo sysctl --system", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230535\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230535r792936_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-040210\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must prevent IPv6 Internet Control Message Protocol (ICMP) redirect messages from being accepted.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages modify the host's route table and are unauthenticated. An illicit ICMP redirect message could result in a man-in-the-middle attack.\\n\\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\\n/etc/sysctl.d/*.conf\\n/run/sysctl.d/*.conf\\n/usr/local/lib/sysctl.d/*.conf\\n/usr/lib/sysctl.d/*.conf\\n/lib/sysctl.d/*.conf\\n/etc/sysctl.conf\\n\\nBased on the information above, if a configuration file that begins with \\\"99-\\\" is created in the \\\"/etc/sysctl.d/\\\" directory, it will take precedence over any other configuration file on the system.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure RHEL 8 to prevent IPv6 ICMP redirect messages from being accepted.\\n\\nAdd or edit the following line in a system configuration file, which begins with \\\"99-\\\", in the \\\"/etc/sysctl.d/\\\" directory:\\n\\nnet.ipv6.conf.default.accept_redirects = 0\\n\\nLoad settings from all system configuration files with the following command:\\n\\n$ sudo sysctl --system\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33179r792935_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33179r792935_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:348\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:31-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages contain information from the system's route table, possibly revealing portions of the network topology.\\n\\nThere are notable differences between Internet Protocol version 4 (IPv4) and Internet Protocol version 6 (IPv6). There is only a directive to disable sending of IPv4 redirected packets. Refer to RFC4294 for an explanation of \\\"IPv6 Node Requirements\\\", which resulted in this difference between IPv4 and IPv6.\\n\\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\\n/etc/sysctl.d/*.conf\\n/run/sysctl.d/*.conf\\n/usr/local/lib/sysctl.d/*.conf\\n/usr/lib/sysctl.d/*.conf\\n/lib/sysctl.d/*.conf\\n/etc/sysctl.conf\\n\\nBased on the information above, if a configuration file that begins with \\\"99-\\\" is created in the \\\"/etc/sysctl.d/\\\" directory, it will take precedence over any other configuration file on the system.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230536", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230536r792939_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:349", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33180r792938_fix", + "fixtext_fixref": "F-33180r792938_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-040220", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230535r792936_rule", + "role": "full", + "time": "2021-11-12T11:37:31-05:00", + "severity": "medium", + "version": "RHEL-08-040210", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:348", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must not send Internet Control Message Protocol (ICMP) redirects.", + "id": "V-230536", + "desc": "ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages contain information from the system's route table, possibly revealing portions of the network topology.\n\nThere are notable differences between Internet Protocol version 4 (IPv4) and Internet Protocol version 6 (IPv6). There is only a directive to disable sending of IPv4 redirected packets. Refer to RFC4294 for an explanation of \"IPv6 Node Requirements\", which resulted in this difference between IPv4 and IPv6.\n\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\n/etc/sysctl.d/*.conf\n/run/sysctl.d/*.conf\n/usr/local/lib/sysctl.d/*.conf\n/usr/lib/sysctl.d/*.conf\n/lib/sysctl.d/*.conf\n/etc/sysctl.conf\n\nBased on the information above, if a configuration file that begins with \"99-\" is created in the \"/etc/sysctl.d/\" directory, it will take precedence over any other configuration file on the system.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:349", + "label": "check" + }, + { + "data": "Configure RHEL 8 to not allow interfaces to perform IPv4 ICMP redirects.\n\nAdd or edit the following line in a system configuration file, which begins with \"99-\", in the \"/etc/sysctl.d/\" directory:\n\nnet.ipv4.conf.all.send_redirects=0\n\nLoad settings from all system configuration files with the following command:\n\n$ sudo sysctl --system", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230536\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230536r792939_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-040220\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must not send Internet Control Message Protocol (ICMP) redirects.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages contain information from the system's route table, possibly revealing portions of the network topology.\\n\\nThere are notable differences between Internet Protocol version 4 (IPv4) and Internet Protocol version 6 (IPv6). There is only a directive to disable sending of IPv4 redirected packets. Refer to RFC4294 for an explanation of \\\"IPv6 Node Requirements\\\", which resulted in this difference between IPv4 and IPv6.\\n\\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\\n/etc/sysctl.d/*.conf\\n/run/sysctl.d/*.conf\\n/usr/local/lib/sysctl.d/*.conf\\n/usr/lib/sysctl.d/*.conf\\n/lib/sysctl.d/*.conf\\n/etc/sysctl.conf\\n\\nBased on the information above, if a configuration file that begins with \\\"99-\\\" is created in the \\\"/etc/sysctl.d/\\\" directory, it will take precedence over any other configuration file on the system.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure RHEL 8 to not allow interfaces to perform IPv4 ICMP redirects.\\n\\nAdd or edit the following line in a system configuration file, which begins with \\\"99-\\\", in the \\\"/etc/sysctl.d/\\\" directory:\\n\\nnet.ipv4.conf.all.send_redirects=0\\n\\nLoad settings from all system configuration files with the following command:\\n\\n$ sudo sysctl --system\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33180r792938_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33180r792938_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:349\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:31-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Responding to broadcast ICMP echoes facilitates network mapping and provides a vector for amplification attacks.\\n\\nThere are notable differences between Internet Protocol version 4 (IPv4) and Internet Protocol version 6 (IPv6). IPv6 does not implement the same method of broadcast as IPv4. Instead, IPv6 uses multicast addressing to the all-hosts multicast group. Refer to RFC4294 for an explanation of \\\"IPv6 Node Requirements\\\", which resulted in this difference between IPv4 and IPv6.\\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\\n/etc/sysctl.d/*.conf\\n/run/sysctl.d/*.conf\\n/usr/local/lib/sysctl.d/*.conf\\n/usr/lib/sysctl.d/*.conf\\n/lib/sysctl.d/*.conf\\n/etc/sysctl.conf\\n\\nBased on the information above, if a configuration file that begins with \\\"99-\\\" is created in the \\\"/etc/sysctl.d/\\\" directory, it will take precedence over any other configuration file on the system.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230537", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230537r792942_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:350", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33181r792941_fix", + "fixtext_fixref": "F-33181r792941_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-040230", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230536r792939_rule", + "role": "full", + "time": "2021-11-12T11:37:31-05:00", + "severity": "medium", + "version": "RHEL-08-040220", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:349", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must not respond to Internet Control Message Protocol (ICMP) echoes sent to a broadcast address.", + "id": "V-230537", + "desc": "Responding to broadcast ICMP echoes facilitates network mapping and provides a vector for amplification attacks.\n\nThere are notable differences between Internet Protocol version 4 (IPv4) and Internet Protocol version 6 (IPv6). IPv6 does not implement the same method of broadcast as IPv4. Instead, IPv6 uses multicast addressing to the all-hosts multicast group. Refer to RFC4294 for an explanation of \"IPv6 Node Requirements\", which resulted in this difference between IPv4 and IPv6.\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\n/etc/sysctl.d/*.conf\n/run/sysctl.d/*.conf\n/usr/local/lib/sysctl.d/*.conf\n/usr/lib/sysctl.d/*.conf\n/lib/sysctl.d/*.conf\n/etc/sysctl.conf\n\nBased on the information above, if a configuration file that begins with \"99-\" is created in the \"/etc/sysctl.d/\" directory, it will take precedence over any other configuration file on the system.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:350", + "label": "check" + }, + { + "data": "Configure RHEL 8 to not respond to IPv4 ICMP echoes sent to a broadcast address.\n\nAdd or edit the following line in a system configuration file, which begins with \"99-\", in the \"/etc/sysctl.d/\" directory:\n\nnet.ipv4.icmp_echo_ignore_broadcasts=1\n\nLoad settings from all system configuration files with the following command:\n\n$ sudo sysctl --system", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230537\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230537r792942_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-040230\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must not respond to Internet Control Message Protocol (ICMP) echoes sent to a broadcast address.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Responding to broadcast ICMP echoes facilitates network mapping and provides a vector for amplification attacks.\\n\\nThere are notable differences between Internet Protocol version 4 (IPv4) and Internet Protocol version 6 (IPv6). IPv6 does not implement the same method of broadcast as IPv4. Instead, IPv6 uses multicast addressing to the all-hosts multicast group. Refer to RFC4294 for an explanation of \\\"IPv6 Node Requirements\\\", which resulted in this difference between IPv4 and IPv6.\\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\\n/etc/sysctl.d/*.conf\\n/run/sysctl.d/*.conf\\n/usr/local/lib/sysctl.d/*.conf\\n/usr/lib/sysctl.d/*.conf\\n/lib/sysctl.d/*.conf\\n/etc/sysctl.conf\\n\\nBased on the information above, if a configuration file that begins with \\\"99-\\\" is created in the \\\"/etc/sysctl.d/\\\" directory, it will take precedence over any other configuration file on the system.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure RHEL 8 to not respond to IPv4 ICMP echoes sent to a broadcast address.\\n\\nAdd or edit the following line in a system configuration file, which begins with \\\"99-\\\", in the \\\"/etc/sysctl.d/\\\" directory:\\n\\nnet.ipv4.icmp_echo_ignore_broadcasts=1\\n\\nLoad settings from all system configuration files with the following command:\\n\\n$ sudo sysctl --system\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33181r792941_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33181r792941_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:350\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:31-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Source-routed packets allow the source of the packet to suggest that routers forward the packet along a different path than configured on the router, which can be used to bypass network security measures. This requirement applies only to the forwarding of source-routed traffic, such as when forwarding is enabled and the system is functioning as a router.\\n\\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\\n/etc/sysctl.d/*.conf\\n/run/sysctl.d/*.conf\\n/usr/local/lib/sysctl.d/*.conf\\n/usr/lib/sysctl.d/*.conf\\n/lib/sysctl.d/*.conf\\n/etc/sysctl.conf\\n\\nBased on the information above, if a configuration file that begins with \\\"99-\\\" is created in the \\\"/etc/sysctl.d/\\\" directory, it will take precedence over any other configuration file on the system.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230538", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230538r792945_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:351", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33182r792944_fix", + "fixtext_fixref": "F-33182r792944_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-040240", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230537r792942_rule", + "role": "full", + "time": "2021-11-12T11:37:31-05:00", + "severity": "medium", + "version": "RHEL-08-040230", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:350", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must not forward IPv6 source-routed packets.", + "id": "V-230538", + "desc": "Source-routed packets allow the source of the packet to suggest that routers forward the packet along a different path than configured on the router, which can be used to bypass network security measures. This requirement applies only to the forwarding of source-routed traffic, such as when forwarding is enabled and the system is functioning as a router.\n\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\n/etc/sysctl.d/*.conf\n/run/sysctl.d/*.conf\n/usr/local/lib/sysctl.d/*.conf\n/usr/lib/sysctl.d/*.conf\n/lib/sysctl.d/*.conf\n/etc/sysctl.conf\n\nBased on the information above, if a configuration file that begins with \"99-\" is created in the \"/etc/sysctl.d/\" directory, it will take precedence over any other configuration file on the system.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:351", + "label": "check" + }, + { + "data": "Configure RHEL 8 to not forward IPv6 source-routed packets.\n\nAdd or edit the following line in a system configuration file, which begins with \"99-\", in the \"/etc/sysctl.d/\" directory:\n\nnet.ipv6.conf.all.accept_source_route=0\n\nLoad settings from all system configuration files with the following command:\n\n$ sudo sysctl --system", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230538\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230538r792945_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-040240\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must not forward IPv6 source-routed packets.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Source-routed packets allow the source of the packet to suggest that routers forward the packet along a different path than configured on the router, which can be used to bypass network security measures. This requirement applies only to the forwarding of source-routed traffic, such as when forwarding is enabled and the system is functioning as a router.\\n\\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\\n/etc/sysctl.d/*.conf\\n/run/sysctl.d/*.conf\\n/usr/local/lib/sysctl.d/*.conf\\n/usr/lib/sysctl.d/*.conf\\n/lib/sysctl.d/*.conf\\n/etc/sysctl.conf\\n\\nBased on the information above, if a configuration file that begins with \\\"99-\\\" is created in the \\\"/etc/sysctl.d/\\\" directory, it will take precedence over any other configuration file on the system.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure RHEL 8 to not forward IPv6 source-routed packets.\\n\\nAdd or edit the following line in a system configuration file, which begins with \\\"99-\\\", in the \\\"/etc/sysctl.d/\\\" directory:\\n\\nnet.ipv6.conf.all.accept_source_route=0\\n\\nLoad settings from all system configuration files with the following command:\\n\\n$ sudo sysctl --system\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33182r792944_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33182r792944_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:351\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:31-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Source-routed packets allow the source of the packet to suggest that routers forward the packet along a different path than configured on the router, which can be used to bypass network security measures. This requirement applies only to the forwarding of source-routed traffic, such as when forwarding is enabled and the system is functioning as a router.\\n\\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\\n/etc/sysctl.d/*.conf\\n/run/sysctl.d/*.conf\\n/usr/local/lib/sysctl.d/*.conf\\n/usr/lib/sysctl.d/*.conf\\n/lib/sysctl.d/*.conf\\n/etc/sysctl.conf\\n\\nBased on the information above, if a configuration file that begins with \\\"99-\\\" is created in the \\\"/etc/sysctl.d/\\\" directory, it will take precedence over any other configuration file on the system.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230539", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230539r792948_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:352", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33183r792947_fix", + "fixtext_fixref": "F-33183r792947_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-040250", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230538r792945_rule", + "role": "full", + "time": "2021-11-12T11:37:31-05:00", + "severity": "medium", + "version": "RHEL-08-040240", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:351", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must not forward IPv6 source-routed packets by default.", + "id": "V-230539", + "desc": "Source-routed packets allow the source of the packet to suggest that routers forward the packet along a different path than configured on the router, which can be used to bypass network security measures. This requirement applies only to the forwarding of source-routed traffic, such as when forwarding is enabled and the system is functioning as a router.\n\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\n/etc/sysctl.d/*.conf\n/run/sysctl.d/*.conf\n/usr/local/lib/sysctl.d/*.conf\n/usr/lib/sysctl.d/*.conf\n/lib/sysctl.d/*.conf\n/etc/sysctl.conf\n\nBased on the information above, if a configuration file that begins with \"99-\" is created in the \"/etc/sysctl.d/\" directory, it will take precedence over any other configuration file on the system.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:352", + "label": "check" + }, + { + "data": "Configure RHEL 8 to not forward IPv6 source-routed packets by default.\n\nAdd or edit the following line in a system configuration file, which begins with \"99-\", in the \"/etc/sysctl.d/\" directory:\n\nnet.ipv6.conf.default.accept_source_route=0\n\nLoad settings from all system configuration files with the following command:\n\n$ sudo sysctl --system", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230539\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230539r792948_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-040250\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must not forward IPv6 source-routed packets by default.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Source-routed packets allow the source of the packet to suggest that routers forward the packet along a different path than configured on the router, which can be used to bypass network security measures. This requirement applies only to the forwarding of source-routed traffic, such as when forwarding is enabled and the system is functioning as a router.\\n\\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\\n/etc/sysctl.d/*.conf\\n/run/sysctl.d/*.conf\\n/usr/local/lib/sysctl.d/*.conf\\n/usr/lib/sysctl.d/*.conf\\n/lib/sysctl.d/*.conf\\n/etc/sysctl.conf\\n\\nBased on the information above, if a configuration file that begins with \\\"99-\\\" is created in the \\\"/etc/sysctl.d/\\\" directory, it will take precedence over any other configuration file on the system.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure RHEL 8 to not forward IPv6 source-routed packets by default.\\n\\nAdd or edit the following line in a system configuration file, which begins with \\\"99-\\\", in the \\\"/etc/sysctl.d/\\\" directory:\\n\\nnet.ipv6.conf.default.accept_source_route=0\\n\\nLoad settings from all system configuration files with the following command:\\n\\n$ sudo sysctl --system\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33183r792947_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33183r792947_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:352\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:31-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Routing protocol daemons are typically used on routers to exchange network topology information with other routers. If this software is used when not required, system network information may be unnecessarily transmitted across the network.\\n\\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\\n/etc/sysctl.d/*.conf\\n/run/sysctl.d/*.conf\\n/usr/local/lib/sysctl.d/*.conf\\n/usr/lib/sysctl.d/*.conf\\n/lib/sysctl.d/*.conf\\n/etc/sysctl.conf\\n\\nBased on the information above, if a configuration file that begins with \\\"99-\\\" is created in the \\\"/etc/sysctl.d/\\\" directory, it will take precedence over any other configuration file on the system.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230540", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230540r792951_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:353", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33184r792950_fix", + "fixtext_fixref": "F-33184r792950_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-040260", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230539r792948_rule", + "role": "full", + "time": "2021-11-12T11:37:31-05:00", + "severity": "medium", + "version": "RHEL-08-040250", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:352", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must not enable IPv6 packet forwarding unless the system is a router.", + "id": "V-230540", + "desc": "Routing protocol daemons are typically used on routers to exchange network topology information with other routers. If this software is used when not required, system network information may be unnecessarily transmitted across the network.\n\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\n/etc/sysctl.d/*.conf\n/run/sysctl.d/*.conf\n/usr/local/lib/sysctl.d/*.conf\n/usr/lib/sysctl.d/*.conf\n/lib/sysctl.d/*.conf\n/etc/sysctl.conf\n\nBased on the information above, if a configuration file that begins with \"99-\" is created in the \"/etc/sysctl.d/\" directory, it will take precedence over any other configuration file on the system.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:353", + "label": "check" + }, + { + "data": "Configure RHEL 8 to not allow IPv6 packet forwarding, unless the system is a router.\n\nAdd or edit the following line in a system configuration file, which begins with \"99-\", in the \"/etc/sysctl.d/\" directory:\n\nnet.ipv6.conf.all.forwarding=0\n\nLoad settings from all system configuration files with the following command:\n\n$ sudo sysctl --system", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230540\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230540r792951_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-040260\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must not enable IPv6 packet forwarding unless the system is a router.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Routing protocol daemons are typically used on routers to exchange network topology information with other routers. If this software is used when not required, system network information may be unnecessarily transmitted across the network.\\n\\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\\n/etc/sysctl.d/*.conf\\n/run/sysctl.d/*.conf\\n/usr/local/lib/sysctl.d/*.conf\\n/usr/lib/sysctl.d/*.conf\\n/lib/sysctl.d/*.conf\\n/etc/sysctl.conf\\n\\nBased on the information above, if a configuration file that begins with \\\"99-\\\" is created in the \\\"/etc/sysctl.d/\\\" directory, it will take precedence over any other configuration file on the system.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure RHEL 8 to not allow IPv6 packet forwarding, unless the system is a router.\\n\\nAdd or edit the following line in a system configuration file, which begins with \\\"99-\\\", in the \\\"/etc/sysctl.d/\\\" directory:\\n\\nnet.ipv6.conf.all.forwarding=0\\n\\nLoad settings from all system configuration files with the following command:\\n\\n$ sudo sysctl --system\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33184r792950_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33184r792950_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:353\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:31-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Routing protocol daemons are typically used on routers to exchange network topology information with other routers. If this software is used when not required, system network information may be unnecessarily transmitted across the network.\\n\\nAn illicit router advertisement message could result in a man-in-the-middle attack.\\n\\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\\n/etc/sysctl.d/*.conf\\n/run/sysctl.d/*.conf\\n/usr/local/lib/sysctl.d/*.conf\\n/usr/lib/sysctl.d/*.conf\\n/lib/sysctl.d/*.conf\\n/etc/sysctl.conf\\n\\nBased on the information above, if a configuration file that begins with \\\"99-\\\" is created in the \\\"/etc/sysctl.d/\\\" directory, it will take precedence over any other configuration file on the system.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230541", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230541r792954_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:354", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33185r792953_fix", + "fixtext_fixref": "F-33185r792953_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-040261", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230540r792951_rule", + "role": "full", + "time": "2021-11-12T11:37:31-05:00", + "severity": "medium", + "version": "RHEL-08-040260", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:353", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must not accept router advertisements on all IPv6 interfaces.", + "id": "V-230541", + "desc": "Routing protocol daemons are typically used on routers to exchange network topology information with other routers. If this software is used when not required, system network information may be unnecessarily transmitted across the network.\n\nAn illicit router advertisement message could result in a man-in-the-middle attack.\n\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\n/etc/sysctl.d/*.conf\n/run/sysctl.d/*.conf\n/usr/local/lib/sysctl.d/*.conf\n/usr/lib/sysctl.d/*.conf\n/lib/sysctl.d/*.conf\n/etc/sysctl.conf\n\nBased on the information above, if a configuration file that begins with \"99-\" is created in the \"/etc/sysctl.d/\" directory, it will take precedence over any other configuration file on the system.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:354", + "label": "check" + }, + { + "data": "Configure RHEL 8 to not accept router advertisements on all IPv6 interfaces unless the system is a router.\n\nAdd or edit the following line in a system configuration file, which begins with \"99-\", in the \"/etc/sysctl.d/\" directory:\n\nnet.ipv6.conf.all.accept_ra=0\n\nLoad settings from all system configuration files with the following command:\n\n$ sudo sysctl --system", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230541\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230541r792954_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-040261\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must not accept router advertisements on all IPv6 interfaces.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Routing protocol daemons are typically used on routers to exchange network topology information with other routers. If this software is used when not required, system network information may be unnecessarily transmitted across the network.\\n\\nAn illicit router advertisement message could result in a man-in-the-middle attack.\\n\\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\\n/etc/sysctl.d/*.conf\\n/run/sysctl.d/*.conf\\n/usr/local/lib/sysctl.d/*.conf\\n/usr/lib/sysctl.d/*.conf\\n/lib/sysctl.d/*.conf\\n/etc/sysctl.conf\\n\\nBased on the information above, if a configuration file that begins with \\\"99-\\\" is created in the \\\"/etc/sysctl.d/\\\" directory, it will take precedence over any other configuration file on the system.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure RHEL 8 to not accept router advertisements on all IPv6 interfaces unless the system is a router.\\n\\nAdd or edit the following line in a system configuration file, which begins with \\\"99-\\\", in the \\\"/etc/sysctl.d/\\\" directory:\\n\\nnet.ipv6.conf.all.accept_ra=0\\n\\nLoad settings from all system configuration files with the following command:\\n\\n$ sudo sysctl --system\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33185r792953_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33185r792953_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:354\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:31-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Routing protocol daemons are typically used on routers to exchange network topology information with other routers. If this software is used when not required, system network information may be unnecessarily transmitted across the network.\\n\\nAn illicit router advertisement message could result in a man-in-the-middle attack.\\n\\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\\n/etc/sysctl.d/*.conf\\n/run/sysctl.d/*.conf\\n/usr/local/lib/sysctl.d/*.conf\\n/usr/lib/sysctl.d/*.conf\\n/lib/sysctl.d/*.conf\\n/etc/sysctl.conf\\n\\nBased on the information above, if a configuration file that begins with \\\"99-\\\" is created in the \\\"/etc/sysctl.d/\\\" directory, it will take precedence over any other configuration file on the system.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230542", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230542r792957_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:355", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33186r792956_fix", + "fixtext_fixref": "F-33186r792956_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-040262", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230541r792954_rule", + "role": "full", + "time": "2021-11-12T11:37:31-05:00", + "severity": "medium", + "version": "RHEL-08-040261", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:354", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must not accept router advertisements on all IPv6 interfaces by default.", + "id": "V-230542", + "desc": "Routing protocol daemons are typically used on routers to exchange network topology information with other routers. If this software is used when not required, system network information may be unnecessarily transmitted across the network.\n\nAn illicit router advertisement message could result in a man-in-the-middle attack.\n\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\n/etc/sysctl.d/*.conf\n/run/sysctl.d/*.conf\n/usr/local/lib/sysctl.d/*.conf\n/usr/lib/sysctl.d/*.conf\n/lib/sysctl.d/*.conf\n/etc/sysctl.conf\n\nBased on the information above, if a configuration file that begins with \"99-\" is created in the \"/etc/sysctl.d/\" directory, it will take precedence over any other configuration file on the system.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:355", + "label": "check" + }, + { + "data": "Configure RHEL 8 to not accept router advertisements on all IPv6 interfaces by default unless the system is a router.\n\nAdd or edit the following line in a system configuration file, which begins with \"99-\", in the \"/etc/sysctl.d/\" directory:\n\nnet.ipv6.conf.default.accept_ra=0\n\nLoad settings from all system configuration files with the following command:\n\n$ sudo sysctl --system", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230542\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230542r792957_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-040262\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must not accept router advertisements on all IPv6 interfaces by default.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Routing protocol daemons are typically used on routers to exchange network topology information with other routers. If this software is used when not required, system network information may be unnecessarily transmitted across the network.\\n\\nAn illicit router advertisement message could result in a man-in-the-middle attack.\\n\\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\\n/etc/sysctl.d/*.conf\\n/run/sysctl.d/*.conf\\n/usr/local/lib/sysctl.d/*.conf\\n/usr/lib/sysctl.d/*.conf\\n/lib/sysctl.d/*.conf\\n/etc/sysctl.conf\\n\\nBased on the information above, if a configuration file that begins with \\\"99-\\\" is created in the \\\"/etc/sysctl.d/\\\" directory, it will take precedence over any other configuration file on the system.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure RHEL 8 to not accept router advertisements on all IPv6 interfaces by default unless the system is a router.\\n\\nAdd or edit the following line in a system configuration file, which begins with \\\"99-\\\", in the \\\"/etc/sysctl.d/\\\" directory:\\n\\nnet.ipv6.conf.default.accept_ra=0\\n\\nLoad settings from all system configuration files with the following command:\\n\\n$ sudo sysctl --system\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33186r792956_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33186r792956_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:355\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:31-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages contain information from the system's route table, possibly revealing portions of the network topology.\\n\\nThere are notable differences between Internet Protocol version 4 (IPv4) and Internet Protocol version 6 (IPv6). There is only a directive to disable sending of IPv4 redirected packets. Refer to RFC4294 for an explanation of \\\"IPv6 Node Requirements\\\", which resulted in this difference between IPv4 and IPv6.\\n\\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\\n/etc/sysctl.d/*.conf\\n/run/sysctl.d/*.conf\\n/usr/local/lib/sysctl.d/*.conf\\n/usr/lib/sysctl.d/*.conf\\n/lib/sysctl.d/*.conf\\n/etc/sysctl.conf\\n\\nBased on the information above, if a configuration file that begins with \\\"99-\\\" is created in the \\\"/etc/sysctl.d/\\\" directory, it will take precedence over any other configuration file on the system.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230543", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230543r792960_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:356", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33187r792959_fix", + "fixtext_fixref": "F-33187r792959_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-040270", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230542r792957_rule", + "role": "full", + "time": "2021-11-12T11:37:31-05:00", + "severity": "medium", + "version": "RHEL-08-040262", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:355", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must not allow interfaces to perform Internet Control Message Protocol (ICMP) redirects by default.", + "id": "V-230543", + "desc": "ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages contain information from the system's route table, possibly revealing portions of the network topology.\n\nThere are notable differences between Internet Protocol version 4 (IPv4) and Internet Protocol version 6 (IPv6). There is only a directive to disable sending of IPv4 redirected packets. Refer to RFC4294 for an explanation of \"IPv6 Node Requirements\", which resulted in this difference between IPv4 and IPv6.\n\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\n/etc/sysctl.d/*.conf\n/run/sysctl.d/*.conf\n/usr/local/lib/sysctl.d/*.conf\n/usr/lib/sysctl.d/*.conf\n/lib/sysctl.d/*.conf\n/etc/sysctl.conf\n\nBased on the information above, if a configuration file that begins with \"99-\" is created in the \"/etc/sysctl.d/\" directory, it will take precedence over any other configuration file on the system.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:356", + "label": "check" + }, + { + "data": "Configure RHEL 8 to not allow interfaces to perform Internet Protocol version 4 (IPv4) ICMP redirects by default.\n\nAdd or edit the following line in a system configuration file, which begins with \"99-\", in the \"/etc/sysctl.d/\" directory:\n\nnet.ipv4.conf.default.send_redirects = 0\n\nLoad settings from all system configuration files with the following command:\n\n$ sudo sysctl --system", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230543\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230543r792960_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-040270\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must not allow interfaces to perform Internet Control Message Protocol (ICMP) redirects by default.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages contain information from the system's route table, possibly revealing portions of the network topology.\\n\\nThere are notable differences between Internet Protocol version 4 (IPv4) and Internet Protocol version 6 (IPv6). There is only a directive to disable sending of IPv4 redirected packets. Refer to RFC4294 for an explanation of \\\"IPv6 Node Requirements\\\", which resulted in this difference between IPv4 and IPv6.\\n\\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\\n/etc/sysctl.d/*.conf\\n/run/sysctl.d/*.conf\\n/usr/local/lib/sysctl.d/*.conf\\n/usr/lib/sysctl.d/*.conf\\n/lib/sysctl.d/*.conf\\n/etc/sysctl.conf\\n\\nBased on the information above, if a configuration file that begins with \\\"99-\\\" is created in the \\\"/etc/sysctl.d/\\\" directory, it will take precedence over any other configuration file on the system.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure RHEL 8 to not allow interfaces to perform Internet Protocol version 4 (IPv4) ICMP redirects by default.\\n\\nAdd or edit the following line in a system configuration file, which begins with \\\"99-\\\", in the \\\"/etc/sysctl.d/\\\" directory:\\n\\nnet.ipv4.conf.default.send_redirects = 0\\n\\nLoad settings from all system configuration files with the following command:\\n\\n$ sudo sysctl --system\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33187r792959_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33187r792959_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:356\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:31-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages modify the host's route table and are unauthenticated. An illicit ICMP redirect message could result in a man-in-the-middle attack.\\n\\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\\n/etc/sysctl.d/*.conf\\n/run/sysctl.d/*.conf\\n/usr/local/lib/sysctl.d/*.conf\\n/usr/lib/sysctl.d/*.conf\\n/lib/sysctl.d/*.conf\\n/etc/sysctl.conf\\n\\nBased on the information above, if a configuration file that begins with \\\"99-\\\" is created in the \\\"/etc/sysctl.d/\\\" directory, it will take precedence over any other configuration file on the system.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230544", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230544r792963_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:357", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33188r792962_fix", + "fixtext_fixref": "F-33188r792962_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-040280", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230543r792960_rule", + "role": "full", + "time": "2021-11-12T11:37:31-05:00", + "severity": "medium", + "version": "RHEL-08-040270", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:356", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must ignore IPv6 Internet Control Message Protocol (ICMP) redirect messages.", + "id": "V-230544", + "desc": "ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages modify the host's route table and are unauthenticated. An illicit ICMP redirect message could result in a man-in-the-middle attack.\n\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\n/etc/sysctl.d/*.conf\n/run/sysctl.d/*.conf\n/usr/local/lib/sysctl.d/*.conf\n/usr/lib/sysctl.d/*.conf\n/lib/sysctl.d/*.conf\n/etc/sysctl.conf\n\nBased on the information above, if a configuration file that begins with \"99-\" is created in the \"/etc/sysctl.d/\" directory, it will take precedence over any other configuration file on the system.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:357", + "label": "check" + }, + { + "data": "Configure RHEL 8 to ignore IPv6 ICMP redirect messages.\n\nAdd or edit the following line in a system configuration file, which begins with \"99-\", in the \"/etc/sysctl.d/\" directory:\n\nnet.ipv6.conf.all.accept_redirects = 0\n\nLoad settings from all system configuration files with the following command:\n\n$ sudo sysctl --system", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230544\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230544r792963_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-040280\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must ignore IPv6 Internet Control Message Protocol (ICMP) redirect messages.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages modify the host's route table and are unauthenticated. An illicit ICMP redirect message could result in a man-in-the-middle attack.\\n\\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\\n/etc/sysctl.d/*.conf\\n/run/sysctl.d/*.conf\\n/usr/local/lib/sysctl.d/*.conf\\n/usr/lib/sysctl.d/*.conf\\n/lib/sysctl.d/*.conf\\n/etc/sysctl.conf\\n\\nBased on the information above, if a configuration file that begins with \\\"99-\\\" is created in the \\\"/etc/sysctl.d/\\\" directory, it will take precedence over any other configuration file on the system.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure RHEL 8 to ignore IPv6 ICMP redirect messages.\\n\\nAdd or edit the following line in a system configuration file, which begins with \\\"99-\\\", in the \\\"/etc/sysctl.d/\\\" directory:\\n\\nnet.ipv6.conf.all.accept_redirects = 0\\n\\nLoad settings from all system configuration files with the following command:\\n\\n$ sudo sysctl --system\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33188r792962_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33188r792962_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:357\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:31-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\\n/etc/sysctl.d/*.conf\\n/run/sysctl.d/*.conf\\n/usr/local/lib/sysctl.d/*.conf\\n/usr/lib/sysctl.d/*.conf\\n/lib/sysctl.d/*.conf\\n/etc/sysctl.conf\\n\\nBased on the information above, if a configuration file that begins with \\\"99-\\\" is created in the \\\"/etc/sysctl.d/\\\" directory, it will take precedence over any other configuration file on the system.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230545", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230545r792966_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:358", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33189r792965_fix", + "fixtext_fixref": "F-33189r792965_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-040281", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230544r792963_rule", + "role": "full", + "time": "2021-11-12T11:37:31-05:00", + "severity": "medium", + "version": "RHEL-08-040280", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:357", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must disable access to network bpf syscall from unprivileged processes.", + "id": "V-230545", + "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\n/etc/sysctl.d/*.conf\n/run/sysctl.d/*.conf\n/usr/local/lib/sysctl.d/*.conf\n/usr/lib/sysctl.d/*.conf\n/lib/sysctl.d/*.conf\n/etc/sysctl.conf\n\nBased on the information above, if a configuration file that begins with \"99-\" is created in the \"/etc/sysctl.d/\" directory, it will take precedence over any other configuration file on the system.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:358", + "label": "check" + }, + { + "data": "Configure RHEL 8 to prevent privilege escalation thru the kernel by disabling access to the bpf syscall by adding the following line to a file, which begins with \"99-\", in the \"/etc/sysctl.d\" directory:\n\nkernel.unprivileged_bpf_disabled = 1\n\nThe system configuration files need to be reloaded for the changes to take effect. To reload the contents of the files, run the following command:\n\n$ sudo sysctl --system", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230545\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230545r792966_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-040281\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must disable access to network bpf syscall from unprivileged processes.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\\n/etc/sysctl.d/*.conf\\n/run/sysctl.d/*.conf\\n/usr/local/lib/sysctl.d/*.conf\\n/usr/lib/sysctl.d/*.conf\\n/lib/sysctl.d/*.conf\\n/etc/sysctl.conf\\n\\nBased on the information above, if a configuration file that begins with \\\"99-\\\" is created in the \\\"/etc/sysctl.d/\\\" directory, it will take precedence over any other configuration file on the system.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure RHEL 8 to prevent privilege escalation thru the kernel by disabling access to the bpf syscall by adding the following line to a file, which begins with \\\"99-\\\", in the \\\"/etc/sysctl.d\\\" directory:\\n\\nkernel.unprivileged_bpf_disabled = 1\\n\\nThe system configuration files need to be reloaded for the changes to take effect. To reload the contents of the files, run the following command:\\n\\n$ sudo sysctl --system\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33189r792965_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33189r792965_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:358\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:31-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\\n/etc/sysctl.d/*.conf\\n/run/sysctl.d/*.conf\\n/usr/local/lib/sysctl.d/*.conf\\n/usr/lib/sysctl.d/*.conf\\n/lib/sysctl.d/*.conf\\n/etc/sysctl.conf\\n\\nBased on the information above, if a configuration file that begins with \\\"99-\\\" is created in the \\\"/etc/sysctl.d/\\\" directory, it will take precedence over any other configuration file on the system.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230546", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230546r792969_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:359", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33190r792968_fix", + "fixtext_fixref": "F-33190r792968_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-040282", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230545r792966_rule", + "role": "full", + "time": "2021-11-12T11:37:31-05:00", + "severity": "medium", + "version": "RHEL-08-040281", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:358", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must restrict usage of ptrace to descendant processes.", + "id": "V-230546", + "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\n/etc/sysctl.d/*.conf\n/run/sysctl.d/*.conf\n/usr/local/lib/sysctl.d/*.conf\n/usr/lib/sysctl.d/*.conf\n/lib/sysctl.d/*.conf\n/etc/sysctl.conf\n\nBased on the information above, if a configuration file that begins with \"99-\" is created in the \"/etc/sysctl.d/\" directory, it will take precedence over any other configuration file on the system.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:359", + "label": "check" + }, + { + "data": "Configure RHEL 8 to restrict usage of ptrace to descendant processes by adding the following line to a file, which begins with \"99-\", in the \"/etc/sysctl.d\" directory:\n\nkernel.yama.ptrace_scope = 1\n\nThe system configuration files need to be reloaded for the changes to take effect. To reload the contents of the files, run the following command:\n\n$ sudo sysctl --system", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230546\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230546r792969_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-040282\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must restrict usage of ptrace to descendant processes.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\\n/etc/sysctl.d/*.conf\\n/run/sysctl.d/*.conf\\n/usr/local/lib/sysctl.d/*.conf\\n/usr/lib/sysctl.d/*.conf\\n/lib/sysctl.d/*.conf\\n/etc/sysctl.conf\\n\\nBased on the information above, if a configuration file that begins with \\\"99-\\\" is created in the \\\"/etc/sysctl.d/\\\" directory, it will take precedence over any other configuration file on the system.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure RHEL 8 to restrict usage of ptrace to descendant processes by adding the following line to a file, which begins with \\\"99-\\\", in the \\\"/etc/sysctl.d\\\" directory:\\n\\nkernel.yama.ptrace_scope = 1\\n\\nThe system configuration files need to be reloaded for the changes to take effect. To reload the contents of the files, run the following command:\\n\\n$ sudo sysctl --system\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33190r792968_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33190r792968_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:359\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:31-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\\n/etc/sysctl.d/*.conf\\n/run/sysctl.d/*.conf\\n/usr/local/lib/sysctl.d/*.conf\\n/usr/lib/sysctl.d/*.conf\\n/lib/sysctl.d/*.conf\\n/etc/sysctl.conf\\n\\nBased on the information above, if a configuration file that begins with \\\"99-\\\" is created in the \\\"/etc/sysctl.d/\\\" directory, it will take precedence over any other configuration file on the system.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230547", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230547r792972_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:360", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33191r792971_fix", + "fixtext_fixref": "F-33191r792971_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-040283", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230546r792969_rule", + "role": "full", + "time": "2021-11-12T11:37:31-05:00", + "severity": "medium", + "version": "RHEL-08-040282", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:359", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must restrict exposed kernel pointer addresses access.", + "id": "V-230547", + "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\n/etc/sysctl.d/*.conf\n/run/sysctl.d/*.conf\n/usr/local/lib/sysctl.d/*.conf\n/usr/lib/sysctl.d/*.conf\n/lib/sysctl.d/*.conf\n/etc/sysctl.conf\n\nBased on the information above, if a configuration file that begins with \"99-\" is created in the \"/etc/sysctl.d/\" directory, it will take precedence over any other configuration file on the system.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:360", + "label": "check" + }, + { + "data": "Configure RHEL 8 to restrict exposed kernel pointer addresses access by adding the following line to a file, which begins with \"99-\", in the \"/etc/sysctl.d\" directory:\n\nkernel.kptr_restrict = 1\n\nThe system configuration files need to be reloaded for the changes to take effect. To reload the contents of the files, run the following command:\n\n$ sudo sysctl --system", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230547\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230547r792972_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-040283\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must restrict exposed kernel pointer addresses access.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\\n/etc/sysctl.d/*.conf\\n/run/sysctl.d/*.conf\\n/usr/local/lib/sysctl.d/*.conf\\n/usr/lib/sysctl.d/*.conf\\n/lib/sysctl.d/*.conf\\n/etc/sysctl.conf\\n\\nBased on the information above, if a configuration file that begins with \\\"99-\\\" is created in the \\\"/etc/sysctl.d/\\\" directory, it will take precedence over any other configuration file on the system.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure RHEL 8 to restrict exposed kernel pointer addresses access by adding the following line to a file, which begins with \\\"99-\\\", in the \\\"/etc/sysctl.d\\\" directory:\\n\\nkernel.kptr_restrict = 1\\n\\nThe system configuration files need to be reloaded for the changes to take effect. To reload the contents of the files, run the following command:\\n\\n$ sudo sysctl --system\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33191r792971_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33191r792971_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:360\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:31-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\\n/etc/sysctl.d/*.conf\\n/run/sysctl.d/*.conf\\n/usr/local/lib/sysctl.d/*.conf\\n/usr/lib/sysctl.d/*.conf\\n/lib/sysctl.d/*.conf\\n/etc/sysctl.conf\\n\\nBased on the information above, if a configuration file that begins with \\\"99-\\\" is created in the \\\"/etc/sysctl.d/\\\" directory, it will take precedence over any other configuration file on the system.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230548", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230548r792975_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:361", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33192r792974_fix", + "fixtext_fixref": "F-33192r792974_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-040284", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230547r792972_rule", + "role": "full", + "time": "2021-11-12T11:37:31-05:00", + "severity": "medium", + "version": "RHEL-08-040283", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:360", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must disable the use of user namespaces.", + "id": "V-230548", + "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\n/etc/sysctl.d/*.conf\n/run/sysctl.d/*.conf\n/usr/local/lib/sysctl.d/*.conf\n/usr/lib/sysctl.d/*.conf\n/lib/sysctl.d/*.conf\n/etc/sysctl.conf\n\nBased on the information above, if a configuration file that begins with \"99-\" is created in the \"/etc/sysctl.d/\" directory, it will take precedence over any other configuration file on the system.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:361", + "label": "check" + }, + { + "data": "Configure RHEL 8 to disable the use of user namespaces by adding the following line to a file, which begins with \"99-\", in the \"/etc/sysctl.d\" directory:\n\nNote: User namespaces are used primarily for Linux containers. If containers are in use, this requirement is not applicable. \n\nuser.max_user_namespaces = 0\n\nThe system configuration files need to be reloaded for the changes to take effect. To reload the contents of the files, run the following command:\n\n$ sudo sysctl --system", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230548\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230548r792975_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-040284\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must disable the use of user namespaces.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\\n/etc/sysctl.d/*.conf\\n/run/sysctl.d/*.conf\\n/usr/local/lib/sysctl.d/*.conf\\n/usr/lib/sysctl.d/*.conf\\n/lib/sysctl.d/*.conf\\n/etc/sysctl.conf\\n\\nBased on the information above, if a configuration file that begins with \\\"99-\\\" is created in the \\\"/etc/sysctl.d/\\\" directory, it will take precedence over any other configuration file on the system.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure RHEL 8 to disable the use of user namespaces by adding the following line to a file, which begins with \\\"99-\\\", in the \\\"/etc/sysctl.d\\\" directory:\\n\\nNote: User namespaces are used primarily for Linux containers. If containers are in use, this requirement is not applicable. \\n\\nuser.max_user_namespaces = 0\\n\\nThe system configuration files need to be reloaded for the changes to take effect. To reload the contents of the files, run the following command:\\n\\n$ sudo sysctl --system\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33192r792974_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33192r792974_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:361\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:31-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\\n/etc/sysctl.d/*.conf\\n/run/sysctl.d/*.conf\\n/usr/local/lib/sysctl.d/*.conf\\n/usr/lib/sysctl.d/*.conf\\n/lib/sysctl.d/*.conf\\n/etc/sysctl.conf\\n\\nBased on the information above, if a configuration file that begins with \\\"99-\\\" is created in the \\\"/etc/sysctl.d/\\\" directory, it will take precedence over any other configuration file on the system.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230549", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230549r792978_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:362", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33193r792977_fix", + "fixtext_fixref": "F-33193r792977_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-040285", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230548r792975_rule", + "role": "full", + "time": "2021-11-12T11:37:31-05:00", + "severity": "medium", + "version": "RHEL-08-040284", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:361", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must use reverse path filtering on all IPv4 interfaces.", + "id": "V-230549", + "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\n/etc/sysctl.d/*.conf\n/run/sysctl.d/*.conf\n/usr/local/lib/sysctl.d/*.conf\n/usr/lib/sysctl.d/*.conf\n/lib/sysctl.d/*.conf\n/etc/sysctl.conf\n\nBased on the information above, if a configuration file that begins with \"99-\" is created in the \"/etc/sysctl.d/\" directory, it will take precedence over any other configuration file on the system.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:362", + "label": "check" + }, + { + "data": "Configure RHEL 8 to use reverse path filtering on all IPv4 interfaces by adding the following line to a file, which begins with \"99-\", in the \"/etc/sysctl.d\" directory:\n\nnet.ipv4.conf.all.rp_filter = 1\n\nThe system configuration files need to be reloaded for the changes to take effect. To reload the contents of the files, run the following command:\n\n$ sudo sysctl --system", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230549\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230549r792978_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-040285\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must use reverse path filtering on all IPv4 interfaces.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nThe sysctl --system command will load settings from all system configuration files. All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. Files are read from directories in the following list from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.\\n/etc/sysctl.d/*.conf\\n/run/sysctl.d/*.conf\\n/usr/local/lib/sysctl.d/*.conf\\n/usr/lib/sysctl.d/*.conf\\n/lib/sysctl.d/*.conf\\n/etc/sysctl.conf\\n\\nBased on the information above, if a configuration file that begins with \\\"99-\\\" is created in the \\\"/etc/sysctl.d/\\\" directory, it will take precedence over any other configuration file on the system.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure RHEL 8 to use reverse path filtering on all IPv4 interfaces by adding the following line to a file, which begins with \\\"99-\\\", in the \\\"/etc/sysctl.d\\\" directory:\\n\\nnet.ipv4.conf.all.rp_filter = 1\\n\\nThe system configuration files need to be reloaded for the changes to take effect. To reload the contents of the files, run the following command:\\n\\n$ sudo sysctl --system\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33193r792977_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33193r792977_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:362\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:31-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"If unrestricted mail relaying is permitted, unauthorized senders could use this host as a mail relay for the purpose of sending spam or other unauthorized activity.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230550", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230550r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:363", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33194r568397_fix", + "fixtext_fixref": "F-33194r568397_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-040290", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230549r792978_rule", + "role": "full", + "time": "2021-11-12T11:37:31-05:00", + "severity": "medium", + "version": "RHEL-08-040285", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:362", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must be configured to prevent unrestricted mail relaying.", + "id": "V-230550", + "desc": "If unrestricted mail relaying is permitted, unauthorized senders could use this host as a mail relay for the purpose of sending spam or other unauthorized activity.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:363", + "label": "check" + }, + { + "data": "If \"postfix\" is installed, modify the \"/etc/postfix/main.cf\" file to restrict client connections to the local network with the following command:\n\n$ sudo postconf -e 'smtpd_client_restrictions = permit_mynetworks,reject'", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230550\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230550r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-040290\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must be configured to prevent unrestricted mail relaying.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>If unrestricted mail relaying is permitted, unauthorized senders could use this host as a mail relay for the purpose of sending spam or other unauthorized activity.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"If \\\"postfix\\\" is installed, modify the \\\"/etc/postfix/main.cf\\\" file to restrict client connections to the local network with the following command:\\n\\n$ sudo postconf -e 'smtpd_client_restrictions = permit_mynetworks,reject'\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33194r568397_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33194r568397_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:363\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-11-12T11:37:31-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"The security risk of using X11 forwarding is that the client's X11 display server may be exposed to attack when the SSH client requests forwarding. A system administrator may have a stance in which they want to protect clients that may expose themselves to attack by unwittingly requesting X11 forwarding, which can warrant a \\\"no\\\" setting.\\n\\nX11 forwarding should be enabled with caution. Users with the ability to bypass file permissions on the remote host (for the user's X11 authorization database) can access the local X11 display through the forwarded connection. An attacker may then be able to perform activities such as keystroke monitoring if the ForwardX11Trusted option is also enabled.\\n\\nIf X11 services are not required for the system's intended function, they should be disabled or restricted as appropriate to the system’s needs.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230555", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230555r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:364", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33199r568412_fix", + "fixtext_fixref": "F-33199r568412_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-040340", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230550r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:31-05:00", + "severity": "medium", + "version": "RHEL-08-040290", + "weight": "10.000000", + "result": "pass", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:363", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 remote X connections for interactive users must be disabled unless to fulfill documented and validated mission requirements.", + "id": "V-230555", + "desc": "The security risk of using X11 forwarding is that the client's X11 display server may be exposed to attack when the SSH client requests forwarding. A system administrator may have a stance in which they want to protect clients that may expose themselves to attack by unwittingly requesting X11 forwarding, which can warrant a \"no\" setting.\n\nX11 forwarding should be enabled with caution. Users with the ability to bypass file permissions on the remote host (for the user's X11 authorization database) can access the local X11 display through the forwarded connection. An attacker may then be able to perform activities such as keystroke monitoring if the ForwardX11Trusted option is also enabled.\n\nIf X11 services are not required for the system's intended function, they should be disabled or restricted as appropriate to the system’s needs.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:364", + "label": "check" + }, + { + "data": "Edit the \"/etc/ssh/sshd_config\" file to uncomment or add the line for the \"X11Forwarding\" keyword and set its value to \"no\" (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor):\n\nX11Forwarding no\n\nThe SSH service must be restarted for changes to take effect:\n\n$ sudo systemctl restart sshd", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230555\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230555r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-040340\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 remote X connections for interactive users must be disabled unless to fulfill documented and validated mission requirements.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>The security risk of using X11 forwarding is that the client's X11 display server may be exposed to attack when the SSH client requests forwarding. A system administrator may have a stance in which they want to protect clients that may expose themselves to attack by unwittingly requesting X11 forwarding, which can warrant a \\\"no\\\" setting.\\n\\nX11 forwarding should be enabled with caution. Users with the ability to bypass file permissions on the remote host (for the user's X11 authorization database) can access the local X11 display through the forwarded connection. An attacker may then be able to perform activities such as keystroke monitoring if the ForwardX11Trusted option is also enabled.\\n\\nIf X11 services are not required for the system's intended function, they should be disabled or restricted as appropriate to the system’s needs.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Edit the \\\"/etc/ssh/sshd_config\\\" file to uncomment or add the line for the \\\"X11Forwarding\\\" keyword and set its value to \\\"no\\\" (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor):\\n\\nX11Forwarding no\\n\\nThe SSH service must be restarted for changes to take effect:\\n\\n$ sudo systemctl restart sshd\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33199r568412_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33199r568412_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:364\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:31-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"When X11 forwarding is enabled, there may be additional exposure to the server and client displays if the sshd proxy display is configured to listen on the wildcard address. By default, sshd binds the forwarding server to the loopback address and sets the hostname part of the DIPSLAY environment variable to localhost. This prevents remote hosts from connecting to the proxy display.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230556", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230556r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:365", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33200r568415_fix", + "fixtext_fixref": "F-33200r568415_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-040341", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230555r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:31-05:00", + "severity": "medium", + "version": "RHEL-08-040340", + "weight": "10.000000", + "result": "error", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:364", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The RHEL 8 SSH daemon must prevent remote hosts from connecting to the proxy display.", + "id": "V-230556", + "desc": "When X11 forwarding is enabled, there may be additional exposure to the server and client displays if the sshd proxy display is configured to listen on the wildcard address. By default, sshd binds the forwarding server to the loopback address and sets the hostname part of the DIPSLAY environment variable to localhost. This prevents remote hosts from connecting to the proxy display.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:365", + "label": "check" + }, + { + "data": "Configure the SSH daemon to prevent remote hosts from connecting to the proxy display.\n\nEdit the \"/etc/ssh/sshd_config\" file to uncomment or add the line for the \"X11UseLocalhost\" keyword and set its value to \"yes\" (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor):\n\nX11UseLocalhost yes", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230556\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230556r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-040341\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The RHEL 8 SSH daemon must prevent remote hosts from connecting to the proxy display.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>When X11 forwarding is enabled, there may be additional exposure to the server and client displays if the sshd proxy display is configured to listen on the wildcard address. By default, sshd binds the forwarding server to the loopback address and sets the hostname part of the DIPSLAY environment variable to localhost. This prevents remote hosts from connecting to the proxy display.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the SSH daemon to prevent remote hosts from connecting to the proxy display.\\n\\nEdit the \\\"/etc/ssh/sshd_config\\\" file to uncomment or add the line for the \\\"X11UseLocalhost\\\" keyword and set its value to \\\"yes\\\" (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor):\\n\\nX11UseLocalhost yes\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33200r568415_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33200r568415_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:365\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:31-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Restricting TFTP to a specific directory prevents remote users from copying, transferring, or overwriting system files.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230557", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230557r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:366", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33201r568418_fix", + "fixtext_fixref": "F-33201r568418_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-040350", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230556r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:31-05:00", + "severity": "medium", + "version": "RHEL-08-040341", + "weight": "10.000000", + "result": "error", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:365", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "If the Trivial File Transfer Protocol (TFTP) server is required, the RHEL 8 TFTP daemon must be configured to operate in secure mode.", + "id": "V-230557", + "desc": "Restricting TFTP to a specific directory prevents remote users from copying, transferring, or overwriting system files.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:366", + "label": "check" + }, + { + "data": "Configure the TFTP daemon to operate in secure mode by adding the following line to \"/etc/xinetd.d/tftp\" (or modify the line to have the required value):\n\nserver_args = -s /var/lib/tftpboot", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230557\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230557r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-040350\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"If the Trivial File Transfer Protocol (TFTP) server is required, the RHEL 8 TFTP daemon must be configured to operate in secure mode.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Restricting TFTP to a specific directory prevents remote users from copying, transferring, or overwriting system files.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the TFTP daemon to operate in secure mode by adding the following line to \\\"/etc/xinetd.d/tftp\\\" (or modify the line to have the required value):\\n\\nserver_args = -s /var/lib/tftpboot\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33201r568418_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33201r568418_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:366\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-11-12T11:37:31-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "high", + "description": "{\"VulnDiscussion\":\"The FTP service provides an unencrypted remote access that does not provide for the confidentiality and integrity of user passwords or the remote session. If a privileged user were to log on using this service, the privileged user password could be compromised. SSH or other encrypted file transfer methods must be used in place of this service.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230558", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230558r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:367", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33202r568421_fix", + "fixtext_fixref": "F-33202r568421_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-040360", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230557r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:31-05:00", + "severity": "medium", + "version": "RHEL-08-040350", + "weight": "10.000000", + "result": "pass", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:366", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "A File Transfer Protocol (FTP) server package must not be installed unless mission essential on RHEL 8.", + "id": "V-230558", + "desc": "The FTP service provides an unencrypted remote access that does not provide for the confidentiality and integrity of user passwords or the remote session. If a privileged user were to log on using this service, the privileged user password could be compromised. SSH or other encrypted file transfer methods must be used in place of this service.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:367", + "label": "check" + }, + { + "data": "Document the FTP server package with the ISSO as an operational requirement or remove it from the system with the following command:\n\n$ sudo yum remove vsftpd", + "label": "fix" + } + ], + "impact": 0.7, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230558\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230558r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"high\",\n \"version\": {\n \"text\": \"RHEL-08-040360\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"A File Transfer Protocol (FTP) server package must not be installed unless mission essential on RHEL 8.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>The FTP service provides an unencrypted remote access that does not provide for the confidentiality and integrity of user passwords or the remote session. If a privileged user were to log on using this service, the privileged user password could be compromised. SSH or other encrypted file transfer methods must be used in place of this service.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Document the FTP server package with the ISSO as an operational requirement or remove it from the system with the following command:\\n\\n$ sudo yum remove vsftpd\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33202r568421_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33202r568421_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:367\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-11-12T11:37:31-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000381" + ], + "nist": [ + "CM-7 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\\n\\nThe gssproxy package is a proxy for GSS API credential handling and could expose secrets on some networks. It is not needed for normal function of the OS.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230559", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230559r646887_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:368", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33203r568424_fix", + "fixtext_fixref": "F-33203r568424_fix", + "ident": { + "text": "CCI-000381", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-040370", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230558r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:31-05:00", + "severity": "high", + "version": "RHEL-08-040360", + "weight": "10.000000", + "result": "pass", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:367", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The gssproxy package must not be installed unless mission essential on RHEL 8.", + "id": "V-230559", + "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\n\nThe gssproxy package is a proxy for GSS API credential handling and could expose secrets on some networks. It is not needed for normal function of the OS.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:368", + "label": "check" + }, + { + "data": "Document the gssproxy package with the ISSO as an operational requirement or remove it from the system with the following command:\n\n$ sudo yum remove gssproxy", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230559\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230559r646887_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-040370\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The gssproxy package must not be installed unless mission essential on RHEL 8.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\\n\\nThe gssproxy package is a proxy for GSS API credential handling and could expose secrets on some networks. It is not needed for normal function of the OS.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000381\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Document the gssproxy package with the ISSO as an operational requirement or remove it from the system with the following command:\\n\\n$ sudo yum remove gssproxy\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33203r568424_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33203r568424_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:368\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:31-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\\n\\nThe iprutils package provides a suite of utilities to manage and configure SCSI devices supported by the ipr SCSI storage device driver.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230560", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230560r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:369", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33204r568427_fix", + "fixtext_fixref": "F-33204r568427_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-040380", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230559r646887_rule", + "role": "full", + "time": "2021-11-12T11:37:31-05:00", + "severity": "medium", + "version": "RHEL-08-040370", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000381", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:368", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The iprutils package must not be installed unless mission essential on RHEL 8.", + "id": "V-230560", + "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\n\nThe iprutils package provides a suite of utilities to manage and configure SCSI devices supported by the ipr SCSI storage device driver.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:369", + "label": "check" + }, + { + "data": "Document the iprutils package with the ISSO as an operational requirement or remove it from the system with the following command:\n\n$ sudo yum remove iprutils", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230560\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230560r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-040380\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The iprutils package must not be installed unless mission essential on RHEL 8.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\\n\\nThe iprutils package provides a suite of utilities to manage and configure SCSI devices supported by the ipr SCSI storage device driver.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Document the iprutils package with the ISSO as an operational requirement or remove it from the system with the following command:\\n\\n$ sudo yum remove iprutils\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33204r568427_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33204r568427_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:369\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:31-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\\n\\nThe tuned package contains a daemon that tunes the system settings dynamically. It does so by monitoring the usage of several system components periodically. Based on that information, components will then be put into lower or higher power savings modes to adapt to the current usage. The tuned package is not needed for normal OS operations.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230561", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230561r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:370", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33205r568430_fix", + "fixtext_fixref": "F-33205r568430_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-040390", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230560r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:31-05:00", + "severity": "medium", + "version": "RHEL-08-040380", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:369", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The tuned package must not be installed unless mission essential on RHEL 8.", + "id": "V-230561", + "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\n\nThe tuned package contains a daemon that tunes the system settings dynamically. It does so by monitoring the usage of several system components periodically. Based on that information, components will then be put into lower or higher power savings modes to adapt to the current usage. The tuned package is not needed for normal OS operations.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:370", + "label": "check" + }, + { + "data": "Document the tuned package with the ISSO as an operational requirement or remove it from the system with the following command:\n\n$ sudo yum remove tuned", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230561\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230561r627750_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-040390\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The tuned package must not be installed unless mission essential on RHEL 8.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\\n\\nThe tuned package contains a daemon that tunes the system settings dynamically. It does so by monitoring the usage of several system components periodically. Based on that information, components will then be put into lower or higher power savings modes to adapt to the current usage. The tuned package is not needed for normal OS operations.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Document the tuned package with the ISSO as an operational requirement or remove it from the system with the following command:\\n\\n$ sudo yum remove tuned\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-33205r568430_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-33205r568430_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:370\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:31-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000803" + ], + "nist": [ + "IA-7" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Unapproved mechanisms that are used for authentication to the cryptographic module are not verified and therefore cannot be relied upon to provide confidentiality or integrity, and DoD data may be compromised.\\n\\nRHEL 8 systems utilizing encryption are required to use FIPS-compliant mechanisms for authenticating to cryptographic modules.\\n\\nCurrently, Kerberos does not utilize FIPS 140-2 cryptography.\\n\\nFIPS 140-2 is the current standard for validating that mechanisms used to access cryptographic modules utilize authentication that meets DoD requirements. This allows for Security Levels 1, 2, 3, or 4 for use on a general-purpose computing system.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-237640", + "group_title": "SRG-OS-000120-GPOS-00061", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-237640r646890_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:413", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-40822r646889_fix", + "fixtext_fixref": "F-40822r646889_fix", + "ident": { + "text": "CCI-000803", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-010163", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230561r627750_rule", + "role": "full", + "time": "2021-11-12T11:37:31-05:00", + "severity": "medium", + "version": "RHEL-08-040390", + "weight": "10.000000", + "result": "fail", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:370", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The krb5-server package must not be installed on RHEL 8.", + "id": "V-237640", + "desc": "Unapproved mechanisms that are used for authentication to the cryptographic module are not verified and therefore cannot be relied upon to provide confidentiality or integrity, and DoD data may be compromised.\n\nRHEL 8 systems utilizing encryption are required to use FIPS-compliant mechanisms for authenticating to cryptographic modules.\n\nCurrently, Kerberos does not utilize FIPS 140-2 cryptography.\n\nFIPS 140-2 is the current standard for validating that mechanisms used to access cryptographic modules utilize authentication that meets DoD requirements. This allows for Security Levels 1, 2, 3, or 4 for use on a general-purpose computing system.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:413", + "label": "check" + }, + { + "data": "Document the krb5-server package with the ISSO as an operational requirement or remove it from the system with the following command:\n\n$ sudo yum remove krb5-server", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-237640\",\n \"title\": {\n \"text\": \"SRG-OS-000120-GPOS-00061\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-237640r646890_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-010163\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"The krb5-server package must not be installed on RHEL 8.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Unapproved mechanisms that are used for authentication to the cryptographic module are not verified and therefore cannot be relied upon to provide confidentiality or integrity, and DoD data may be compromised.\\n\\nRHEL 8 systems utilizing encryption are required to use FIPS-compliant mechanisms for authenticating to cryptographic modules.\\n\\nCurrently, Kerberos does not utilize FIPS 140-2 cryptography.\\n\\nFIPS 140-2 is the current standard for validating that mechanisms used to access cryptographic modules utilize authentication that meets DoD requirements. This allows for Security Levels 1, 2, 3, or 4 for use on a general-purpose computing system.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000803\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Document the krb5-server package with the ISSO as an operational requirement or remove it from the system with the following command:\\n\\n$ sudo yum remove krb5-server\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-40822r646889_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-40822r646889_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:413\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-11-12T11:37:31-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"The sudo command allows a user to execute programs with elevated (administrator) privileges. It prompts the user for their password and confirms your request to execute a command by checking a file, called sudoers. If the \\\"sudoers\\\" file is not configured correctly, any user defined on the system can initiate privileged actions on the target system.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-237641", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-237641r646893_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:414", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-40823r646892_fix", + "fixtext_fixref": "F-40823r646892_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-010382", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-237640r646890_rule", + "role": "full", + "time": "2021-11-12T11:37:31-05:00", + "severity": "medium", + "version": "RHEL-08-010163", + "weight": "10.000000", + "result": "pass", + "ident": { + "text": "CCI-000803", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:413", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must restrict privilege elevation to authorized personnel.", + "id": "V-237641", + "desc": "The sudo command allows a user to execute programs with elevated (administrator) privileges. It prompts the user for their password and confirms your request to execute a command by checking a file, called sudoers. If the \"sudoers\" file is not configured correctly, any user defined on the system can initiate privileged actions on the target system.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:414", + "label": "check" + }, + { + "data": "Remove the following entries from the sudoers file:\nALL ALL=(ALL) ALL\nALL ALL=(ALL:ALL) ALL", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-237641\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-237641r646893_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-010382\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must restrict privilege elevation to authorized personnel.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>The sudo command allows a user to execute programs with elevated (administrator) privileges. It prompts the user for their password and confirms your request to execute a command by checking a file, called sudoers. If the \\\"sudoers\\\" file is not configured correctly, any user defined on the system can initiate privileged actions on the target system.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Remove the following entries from the sudoers file:\\nALL ALL=(ALL) ALL\\nALL ALL=(ALL:ALL) ALL\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-40823r646892_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-40823r646892_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:414\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:31-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-002227" + ], + "nist": [ + "AC-6 (5)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"The sudoers security policy requires that users authenticate themselves before they can use sudo. When sudoers requires authentication, it validates the invoking user's credentials. If the rootpw, targetpw, or runaspw flags are defined and not disabled, by default the operating system will prompt the invoking user for the \\\"root\\\" user password. \\nFor more information on each of the listed configurations, reference the sudoers(5) manual page.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-237642", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-237642r646896_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:415", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-40824r646895_fix", + "fixtext_fixref": "F-40824r646895_fix", + "ident": { + "text": "CCI-002227", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-010383", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-237641r646893_rule", + "role": "full", + "time": "2021-11-12T11:37:31-05:00", + "severity": "medium", + "version": "RHEL-08-010382", + "weight": "10.000000", + "result": "error", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:414", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must use the invoking user's password for privilege escalation when using \"sudo\".", + "id": "V-237642", + "desc": "The sudoers security policy requires that users authenticate themselves before they can use sudo. When sudoers requires authentication, it validates the invoking user's credentials. If the rootpw, targetpw, or runaspw flags are defined and not disabled, by default the operating system will prompt the invoking user for the \"root\" user password. \nFor more information on each of the listed configurations, reference the sudoers(5) manual page.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:415", + "label": "check" + }, + { + "data": "Define the following in the Defaults section of the /etc/sudoers file or a configuration file in the /etc/sudoers.d/ directory:\nDefaults !targetpw\nDefaults !rootpw\nDefaults !runaspw", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-237642\",\n \"title\": {\n \"text\": \"SRG-OS-000480-GPOS-00227\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-237642r646896_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-010383\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must use the invoking user's password for privilege escalation when using \\\"sudo\\\".\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>The sudoers security policy requires that users authenticate themselves before they can use sudo. When sudoers requires authentication, it validates the invoking user's credentials. If the rootpw, targetpw, or runaspw flags are defined and not disabled, by default the operating system will prompt the invoking user for the \\\"root\\\" user password. \\nFor more information on each of the listed configurations, reference the sudoers(5) manual page.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-002227\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Define the following in the Defaults section of the /etc/sudoers file or a configuration file in the /etc/sudoers.d/ directory:\\nDefaults !targetpw\\nDefaults !rootpw\\nDefaults !runaspw\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-40824r646895_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-40824r646895_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:415\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:31-05:00" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-002038" + ], + "nist": [ + "IA-11" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without re-authentication, users may access resources or perform tasks for which they do not have authorization. \\n\\nWhen operating systems provide the capability to escalate a functional capability, it is critical the organization requires the user to re-authenticate when using the \\\"sudo\\\" command.\\n\\nIf the value is set to an integer less than 0, the user's time stamp will not expire and the user will not have to re-authenticate for privileged actions until the user's session is terminated.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-237643", + "group_title": "SRG-OS-000373-GPOS-00156", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-237643r792980_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:416", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-40825r646898_fix", + "fixtext_fixref": "F-40825r646898_fix", + "ident": { + "text": "CCI-002038", + "system": "http://cyber.mil/cci" + }, + "reference": { + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "dc:title": "DPMS Target Red Hat Enterprise Linux 8", + "dc:subject": "Red Hat Enterprise Linux 8", + "dc:publisher": "DISA", + "dc:type": "DPMS Target", + "dc:identifier": 2921 + }, + "selected": "true", + "version": "RHEL-08-010384", + "weight": "10.000000", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-237642r646896_rule", + "role": "full", + "time": "2021-11-12T11:37:31-05:00", + "severity": "medium", + "version": "RHEL-08-010383", + "weight": "10.000000", + "result": "error", + "ident": { + "text": "CCI-002227", + "system": "http://cyber.mil/cci" + }, + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:415", + "href": "U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml" } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must require re-authentication when using the \"sudo\" command.", + "id": "V-237643", + "desc": "Without re-authentication, users may access resources or perform tasks for which they do not have authorization. \n\nWhen operating systems provide the capability to escalate a functional capability, it is critical the organization requires the user to re-authenticate when using the \"sudo\" command.\n\nIf the value is set to an integer less than 0, the user's time stamp will not expire and the user will not have to re-authenticate for privileged actions until the user's session is terminated.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:416", + "label": "check" + }, + { + "data": "Configure the \"sudo\" command to require re-authentication.\nEdit the /etc/sudoers file:\n$ sudo visudo\n\nAdd or modify the following line:\nDefaults timestamp_timeout=[value]\nNote: The \"[value]\" must be a number that is greater than or equal to \"0\".", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-237643\",\n \"title\": {\n \"text\": \"SRG-OS-000373-GPOS-00156\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<GroupDescription></GroupDescription>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-237643r792980_rule\",\n \"selected\": \"true\",\n \"weight\": \"10.000000\",\n \"role\": \"full\",\n \"severity\": \"medium\",\n \"version\": {\n \"text\": \"RHEL-08-010384\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"title\": {\n \"text\": \"RHEL 8 must require re-authentication when using the \\\"sudo\\\" command.\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"description\": {\n \"text\": \"<VulnDiscussion>Without re-authentication, users may access resources or perform tasks for which they do not have authorization. \\n\\nWhen operating systems provide the capability to escalate a functional capability, it is critical the organization requires the user to re-authenticate when using the \\\"sudo\\\" command.\\n\\nIf the value is set to an integer less than 0, the user's time stamp will not expire and the user will not have to re-authenticate for privileged actions until the user's session is terminated.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\"\n },\n \"reference\": {\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"dc:title\": \"DPMS Target Red Hat Enterprise Linux 8\",\n \"dc:subject\": \"Red Hat Enterprise Linux 8\",\n \"dc:publisher\": \"DISA\",\n \"dc:type\": \"DPMS Target\",\n \"dc:identifier\": 2921\n },\n \"ident\": {\n \"text\": \"CCI-002038\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"fixtext\": {\n \"text\": \"Configure the \\\"sudo\\\" command to require re-authentication.\\nEdit the /etc/sudoers file:\\n$ sudo visudo\\n\\nAdd or modify the following line:\\nDefaults timestamp_timeout=[value]\\nNote: The \\\"[value]\\\" must be a number that is greater than or equal to \\\"0\\\".\",\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"xml:lang\": \"en\",\n \"fixref\": \"F-40825r646898_fix\"\n },\n \"fix\": {\n \"xmlns:xhtml\": \"http://www.w3.org/1999/xhtml\",\n \"id\": \"F-40825r646898_fix\"\n },\n \"check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:416\",\n \"href\": \"U_RHEL_8_V1R3_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-11-12T11:37:31-05:00" + } + ] + } + ], + "sha256": "261f0fedb13a3de13b08e99e28b92370b8c62d7f33c3acc63683b28b70711f00" + } + ], + "passthrough": { + "auxiliary_data": [ + { + "name": "XCCDF", + "data": { + "Benchmark": { + "xmlns": "http://checklists.nist.gov/xccdf/1.2", + "xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", + "resolved": "1", + "status": { + "text": "accepted", + "date": "2021-08-18" + }, + "rear-matter": { + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en" + }, + "plain-text": [ + { + "text": "Release: 1.3 Benchmark Date: 27 Oct 2021", + "id": "release-info" + }, + { + "text": "3.2.2.36079", + "id": "generator" + }, + { + "text": "1.10.0", + "id": "conventionsVersion" + } ], - "sha256": "a25df5ef7454da7247d72f2cfdc7ca801fda221db25515a9a965f2f93f82d55b" + "metadata": { + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "dc:creator": { + "text": "DISA", + "xmlns:dc": "http://purl.org/dc/elements/1.1/" + }, + "dc:publisher": { + "text": "DISA", + "xmlns:dc": "http://purl.org/dc/elements/1.1/" + }, + "dc:contributor": { + "text": "DISA", + "xmlns:dc": "http://purl.org/dc/elements/1.1/" + }, + "dc:source": { + "text": "STIG.DOD.MIL", + "xmlns:dc": "http://purl.org/dc/elements/1.1/" + } + }, + "Profile": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "title": { + "text": "I - Mission Critical Classified", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en" + }, + "description": { + "text": "<ProfileDescription></ProfileDescription>", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en" + }, + "select": [ + { + "idref": "xccdf_mil.disa.stig_group_V-230221", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230223", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230231", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230232", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230233", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230234", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230235", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230236", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230237", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230238", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230239", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230241", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230244", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230245", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230246", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230247", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230248", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230249", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230250", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230253", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230255", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230257", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230258", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230259", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230264", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230265", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230266", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230267", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230268", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230269", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230270", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230271", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230272", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230273", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230281", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230282", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230283", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230284", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230286", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230287", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230288", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230289", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230290", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230291", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230292", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230293", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230294", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230295", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230296", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230297", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230298", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230300", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230301", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230306", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230307", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230308", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230311", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230313", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230314", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230315", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230324", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230330", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230332", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230333", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230334", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230335", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230336", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230337", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230340", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230341", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230342", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230343", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230344", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230345", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230346", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230348", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230349", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230350", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230356", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230357", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230358", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230359", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230360", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230361", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230362", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230363", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230364", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230365", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230366", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230367", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230368", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230369", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230370", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230373", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230375", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230377", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230378", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230380", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230382", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230383", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230386", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230388", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230390", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230391", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230392", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230393", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230394", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230395", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230396", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230397", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230398", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230399", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230400", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230401", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230402", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230403", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230404", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230405", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230406", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230407", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230408", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230409", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230410", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230411", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230412", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230413", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230414", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230415", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230416", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230417", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230418", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230419", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230420", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230421", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230422", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230423", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230424", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230425", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230426", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230427", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230428", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230429", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230430", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230431", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230432", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230433", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230434", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230435", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230436", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230437", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230438", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230439", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230440", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230441", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230442", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230443", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230444", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230445", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230446", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230447", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230448", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230449", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230450", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230451", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230452", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230453", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230454", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230455", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230456", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230457", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230458", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230459", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230460", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230461", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230462", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230463", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230464", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230465", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230467", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230471", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230472", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230473", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230474", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230477", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230478", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230480", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230483", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230485", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230486", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230487", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230488", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230489", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230492", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230494", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230495", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230496", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230497", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230498", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230499", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230503", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230507", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230508", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230509", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230510", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230511", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230512", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230513", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230514", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230515", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230516", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230517", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230518", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230519", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230520", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230521", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230522", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230526", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230527", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230531", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230533", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230534", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230535", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230536", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230537", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230538", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230539", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230540", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230541", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230542", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230543", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230544", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230545", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230546", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230547", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230548", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230549", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230550", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230555", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230556", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230557", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230558", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230559", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230560", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230561", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237640", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237641", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237642", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237643", + "selected": "true" + } + ] + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "title": { + "text": "I - Mission Critical Public", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en" + }, + "description": { + "text": "<ProfileDescription></ProfileDescription>", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en" + }, + "select": [ + { + "idref": "xccdf_mil.disa.stig_group_V-230221", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230223", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230231", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230232", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230233", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230234", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230235", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230236", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230237", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230238", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230239", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230241", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230244", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230245", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230246", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230247", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230248", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230249", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230250", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230253", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230255", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230257", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230258", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230259", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230264", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230265", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230266", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230267", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230268", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230269", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230270", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230271", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230272", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230273", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230281", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230282", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230283", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230284", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230286", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230287", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230288", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230289", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230290", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230291", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230292", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230293", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230294", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230295", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230296", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230297", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230298", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230300", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230301", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230306", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230307", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230308", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230311", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230313", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230314", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230315", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230324", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230330", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230332", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230333", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230334", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230335", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230336", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230337", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230340", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230341", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230342", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230343", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230344", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230345", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230346", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230348", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230349", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230350", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230356", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230357", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230358", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230359", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230360", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230361", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230362", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230363", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230364", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230365", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230366", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230367", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230368", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230369", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230370", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230373", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230375", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230377", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230378", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230380", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230382", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230383", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230386", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230388", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230390", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230391", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230392", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230393", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230394", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230395", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230396", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230397", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230398", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230399", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230400", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230401", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230402", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230403", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230404", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230405", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230406", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230407", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230408", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230409", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230410", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230411", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230412", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230413", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230414", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230415", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230416", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230417", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230418", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230419", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230420", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230421", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230422", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230423", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230424", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230425", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230426", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230427", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230428", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230429", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230430", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230431", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230432", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230433", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230434", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230435", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230436", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230437", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230438", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230439", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230440", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230441", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230442", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230443", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230444", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230445", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230446", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230447", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230448", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230449", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230450", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230451", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230452", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230453", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230454", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230455", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230456", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230457", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230458", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230459", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230460", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230461", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230462", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230463", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230464", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230465", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230467", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230471", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230472", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230473", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230474", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230477", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230478", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230480", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230483", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230485", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230486", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230487", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230488", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230489", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230492", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230494", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230495", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230496", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230497", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230498", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230499", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230503", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230507", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230508", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230509", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230510", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230511", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230512", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230513", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230514", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230515", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230516", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230517", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230518", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230519", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230520", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230521", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230522", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230526", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230527", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230531", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230533", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230534", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230535", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230536", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230537", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230538", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230539", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230540", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230541", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230542", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230543", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230544", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230545", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230546", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230547", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230548", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230549", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230550", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230555", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230556", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230557", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230558", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230559", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230560", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230561", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237640", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237641", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237642", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237643", + "selected": "true" + } + ] + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "title": { + "text": "I - Mission Critical Sensitive", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en" + }, + "description": { + "text": "<ProfileDescription></ProfileDescription>", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en" + }, + "select": [ + { + "idref": "xccdf_mil.disa.stig_group_V-230221", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230223", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230231", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230232", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230233", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230234", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230235", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230236", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230237", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230238", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230239", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230241", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230244", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230245", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230246", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230247", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230248", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230249", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230250", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230253", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230255", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230257", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230258", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230259", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230264", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230265", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230266", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230267", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230268", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230269", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230270", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230271", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230272", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230273", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230281", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230282", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230283", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230284", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230286", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230287", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230288", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230289", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230290", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230291", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230292", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230293", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230294", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230295", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230296", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230297", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230298", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230300", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230301", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230306", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230307", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230308", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230311", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230313", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230314", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230315", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230324", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230330", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230332", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230333", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230334", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230335", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230336", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230337", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230340", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230341", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230342", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230343", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230344", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230345", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230346", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230348", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230349", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230350", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230356", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230357", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230358", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230359", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230360", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230361", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230362", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230363", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230364", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230365", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230366", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230367", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230368", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230369", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230370", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230373", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230375", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230377", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230378", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230380", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230382", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230383", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230386", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230388", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230390", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230391", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230392", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230393", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230394", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230395", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230396", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230397", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230398", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230399", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230400", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230401", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230402", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230403", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230404", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230405", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230406", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230407", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230408", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230409", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230410", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230411", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230412", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230413", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230414", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230415", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230416", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230417", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230418", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230419", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230420", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230421", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230422", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230423", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230424", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230425", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230426", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230427", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230428", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230429", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230430", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230431", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230432", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230433", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230434", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230435", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230436", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230437", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230438", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230439", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230440", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230441", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230442", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230443", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230444", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230445", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230446", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230447", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230448", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230449", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230450", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230451", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230452", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230453", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230454", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230455", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230456", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230457", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230458", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230459", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230460", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230461", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230462", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230463", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230464", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230465", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230467", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230471", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230472", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230473", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230474", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230477", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230478", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230480", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230483", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230485", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230486", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230487", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230488", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230489", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230492", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230494", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230495", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230496", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230497", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230498", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230499", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230503", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230507", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230508", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230509", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230510", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230511", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230512", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230513", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230514", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230515", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230516", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230517", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230518", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230519", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230520", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230521", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230522", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230526", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230527", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230531", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230533", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230534", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230535", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230536", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230537", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230538", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230539", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230540", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230541", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230542", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230543", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230544", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230545", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230546", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230547", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230548", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230549", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230550", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230555", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230556", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230557", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230558", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230559", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230560", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230561", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237640", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237641", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237642", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237643", + "selected": "true" + } + ] + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "title": { + "text": "II - Mission Support Classified", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en" + }, + "description": { + "text": "<ProfileDescription></ProfileDescription>", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en" + }, + "select": [ + { + "idref": "xccdf_mil.disa.stig_group_V-230221", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230223", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230231", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230232", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230233", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230234", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230235", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230236", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230237", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230238", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230239", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230241", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230244", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230245", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230246", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230247", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230248", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230249", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230250", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230253", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230255", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230257", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230258", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230259", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230264", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230265", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230266", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230267", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230268", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230269", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230270", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230271", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230272", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230273", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230281", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230282", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230283", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230284", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230286", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230287", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230288", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230289", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230290", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230291", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230292", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230293", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230294", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230295", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230296", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230297", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230298", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230300", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230301", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230306", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230307", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230308", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230311", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230313", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230314", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230315", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230324", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230330", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230332", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230333", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230334", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230335", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230336", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230337", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230340", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230341", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230342", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230343", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230344", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230345", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230346", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230348", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230349", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230350", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230356", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230357", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230358", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230359", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230360", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230361", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230362", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230363", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230364", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230365", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230366", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230367", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230368", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230369", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230370", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230373", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230375", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230377", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230378", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230380", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230382", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230383", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230386", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230388", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230390", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230391", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230392", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230393", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230394", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230395", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230396", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230397", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230398", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230399", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230400", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230401", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230402", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230403", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230404", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230405", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230406", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230407", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230408", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230409", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230410", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230411", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230412", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230413", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230414", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230415", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230416", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230417", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230418", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230419", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230420", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230421", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230422", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230423", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230424", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230425", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230426", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230427", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230428", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230429", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230430", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230431", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230432", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230433", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230434", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230435", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230436", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230437", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230438", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230439", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230440", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230441", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230442", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230443", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230444", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230445", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230446", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230447", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230448", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230449", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230450", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230451", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230452", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230453", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230454", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230455", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230456", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230457", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230458", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230459", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230460", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230461", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230462", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230463", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230464", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230465", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230467", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230471", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230472", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230473", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230474", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230477", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230478", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230480", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230483", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230485", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230486", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230487", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230488", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230489", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230492", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230494", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230495", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230496", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230497", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230498", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230499", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230503", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230507", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230508", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230509", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230510", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230511", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230512", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230513", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230514", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230515", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230516", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230517", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230518", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230519", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230520", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230521", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230522", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230526", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230527", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230531", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230533", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230534", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230535", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230536", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230537", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230538", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230539", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230540", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230541", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230542", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230543", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230544", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230545", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230546", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230547", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230548", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230549", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230550", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230555", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230556", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230557", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230558", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230559", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230560", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230561", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237640", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237641", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237642", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237643", + "selected": "true" + } + ] + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "title": { + "text": "II - Mission Support Public", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en" + }, + "description": { + "text": "<ProfileDescription></ProfileDescription>", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en" + }, + "select": [ + { + "idref": "xccdf_mil.disa.stig_group_V-230221", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230223", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230231", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230232", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230233", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230234", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230235", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230236", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230237", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230238", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230239", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230241", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230244", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230245", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230246", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230247", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230248", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230249", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230250", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230253", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230255", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230257", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230258", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230259", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230264", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230265", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230266", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230267", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230268", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230269", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230270", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230271", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230272", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230273", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230281", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230282", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230283", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230284", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230286", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230287", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230288", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230289", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230290", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230291", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230292", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230293", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230294", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230295", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230296", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230297", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230298", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230300", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230301", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230306", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230307", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230308", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230311", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230313", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230314", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230315", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230324", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230330", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230332", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230333", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230334", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230335", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230336", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230337", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230340", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230341", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230342", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230343", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230344", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230345", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230346", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230348", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230349", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230350", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230356", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230357", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230358", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230359", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230360", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230361", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230362", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230363", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230364", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230365", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230366", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230367", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230368", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230369", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230370", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230373", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230375", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230377", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230378", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230380", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230382", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230383", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230386", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230388", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230390", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230391", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230392", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230393", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230394", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230395", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230396", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230397", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230398", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230399", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230400", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230401", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230402", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230403", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230404", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230405", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230406", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230407", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230408", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230409", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230410", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230411", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230412", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230413", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230414", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230415", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230416", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230417", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230418", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230419", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230420", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230421", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230422", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230423", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230424", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230425", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230426", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230427", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230428", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230429", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230430", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230431", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230432", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230433", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230434", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230435", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230436", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230437", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230438", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230439", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230440", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230441", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230442", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230443", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230444", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230445", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230446", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230447", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230448", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230449", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230450", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230451", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230452", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230453", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230454", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230455", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230456", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230457", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230458", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230459", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230460", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230461", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230462", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230463", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230464", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230465", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230467", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230471", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230472", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230473", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230474", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230477", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230478", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230480", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230483", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230485", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230486", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230487", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230488", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230489", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230492", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230494", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230495", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230496", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230497", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230498", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230499", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230503", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230507", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230508", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230509", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230510", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230511", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230512", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230513", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230514", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230515", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230516", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230517", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230518", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230519", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230520", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230521", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230522", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230526", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230527", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230531", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230533", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230534", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230535", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230536", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230537", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230538", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230539", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230540", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230541", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230542", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230543", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230544", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230545", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230546", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230547", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230548", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230549", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230550", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230555", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230556", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230557", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230558", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230559", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230560", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230561", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237640", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237641", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237642", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237643", + "selected": "true" + } + ] + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "title": { + "text": "II - Mission Support Sensitive", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en" + }, + "description": { + "text": "<ProfileDescription></ProfileDescription>", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en" + }, + "select": [ + { + "idref": "xccdf_mil.disa.stig_group_V-230221", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230223", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230231", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230232", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230233", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230234", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230235", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230236", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230237", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230238", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230239", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230241", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230244", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230245", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230246", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230247", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230248", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230249", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230250", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230253", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230255", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230257", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230258", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230259", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230264", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230265", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230266", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230267", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230268", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230269", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230270", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230271", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230272", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230273", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230281", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230282", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230283", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230284", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230286", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230287", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230288", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230289", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230290", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230291", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230292", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230293", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230294", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230295", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230296", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230297", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230298", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230300", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230301", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230306", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230307", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230308", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230311", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230313", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230314", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230315", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230324", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230330", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230332", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230333", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230334", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230335", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230336", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230337", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230340", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230341", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230342", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230343", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230344", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230345", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230346", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230348", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230349", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230350", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230356", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230357", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230358", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230359", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230360", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230361", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230362", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230363", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230364", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230365", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230366", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230367", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230368", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230369", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230370", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230373", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230375", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230377", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230378", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230380", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230382", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230383", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230386", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230388", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230390", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230391", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230392", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230393", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230394", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230395", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230396", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230397", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230398", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230399", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230400", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230401", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230402", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230403", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230404", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230405", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230406", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230407", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230408", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230409", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230410", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230411", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230412", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230413", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230414", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230415", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230416", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230417", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230418", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230419", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230420", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230421", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230422", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230423", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230424", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230425", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230426", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230427", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230428", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230429", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230430", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230431", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230432", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230433", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230434", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230435", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230436", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230437", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230438", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230439", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230440", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230441", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230442", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230443", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230444", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230445", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230446", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230447", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230448", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230449", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230450", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230451", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230452", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230453", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230454", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230455", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230456", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230457", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230458", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230459", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230460", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230461", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230462", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230463", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230464", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230465", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230467", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230471", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230472", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230473", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230474", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230477", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230478", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230480", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230483", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230485", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230486", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230487", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230488", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230489", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230492", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230494", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230495", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230496", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230497", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230498", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230499", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230503", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230507", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230508", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230509", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230510", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230511", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230512", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230513", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230514", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230515", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230516", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230517", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230518", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230519", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230520", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230521", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230522", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230526", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230527", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230531", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230533", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230534", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230535", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230536", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230537", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230538", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230539", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230540", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230541", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230542", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230543", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230544", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230545", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230546", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230547", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230548", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230549", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230550", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230555", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230556", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230557", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230558", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230559", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230560", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230561", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237640", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237641", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237642", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237643", + "selected": "true" + } + ] + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "title": { + "text": "III - Administrative Classified", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en" + }, + "description": { + "text": "<ProfileDescription></ProfileDescription>", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en" + }, + "select": [ + { + "idref": "xccdf_mil.disa.stig_group_V-230221", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230223", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230231", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230232", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230233", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230234", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230235", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230236", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230237", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230238", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230239", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230241", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230244", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230245", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230246", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230247", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230248", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230249", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230250", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230253", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230255", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230257", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230258", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230259", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230264", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230265", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230266", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230267", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230268", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230269", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230270", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230271", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230272", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230273", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230281", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230282", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230283", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230284", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230286", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230287", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230288", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230289", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230290", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230291", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230292", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230293", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230294", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230295", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230296", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230297", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230298", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230300", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230301", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230306", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230307", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230308", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230311", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230313", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230314", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230315", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230324", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230330", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230332", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230333", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230334", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230335", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230336", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230337", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230340", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230341", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230342", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230343", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230344", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230345", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230346", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230348", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230349", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230350", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230356", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230357", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230358", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230359", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230360", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230361", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230362", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230363", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230364", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230365", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230366", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230367", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230368", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230369", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230370", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230373", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230375", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230377", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230378", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230380", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230382", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230383", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230386", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230388", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230390", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230391", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230392", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230393", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230394", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230395", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230396", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230397", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230398", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230399", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230400", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230401", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230402", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230403", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230404", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230405", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230406", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230407", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230408", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230409", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230410", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230411", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230412", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230413", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230414", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230415", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230416", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230417", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230418", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230419", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230420", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230421", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230422", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230423", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230424", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230425", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230426", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230427", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230428", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230429", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230430", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230431", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230432", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230433", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230434", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230435", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230436", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230437", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230438", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230439", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230440", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230441", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230442", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230443", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230444", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230445", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230446", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230447", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230448", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230449", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230450", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230451", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230452", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230453", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230454", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230455", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230456", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230457", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230458", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230459", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230460", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230461", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230462", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230463", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230464", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230465", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230467", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230471", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230472", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230473", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230474", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230477", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230478", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230480", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230483", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230485", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230486", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230487", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230488", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230489", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230492", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230494", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230495", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230496", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230497", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230498", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230499", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230503", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230507", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230508", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230509", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230510", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230511", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230512", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230513", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230514", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230515", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230516", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230517", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230518", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230519", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230520", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230521", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230522", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230526", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230527", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230531", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230533", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230534", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230535", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230536", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230537", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230538", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230539", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230540", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230541", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230542", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230543", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230544", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230545", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230546", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230547", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230548", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230549", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230550", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230555", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230556", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230557", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230558", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230559", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230560", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230561", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237640", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237641", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237642", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237643", + "selected": "true" + } + ] + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "title": { + "text": "III - Administrative Public", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en" + }, + "description": { + "text": "<ProfileDescription></ProfileDescription>", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en" + }, + "select": [ + { + "idref": "xccdf_mil.disa.stig_group_V-230221", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230223", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230231", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230232", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230233", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230234", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230235", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230236", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230237", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230238", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230239", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230241", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230244", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230245", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230246", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230247", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230248", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230249", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230250", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230253", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230255", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230257", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230258", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230259", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230264", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230265", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230266", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230267", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230268", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230269", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230270", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230271", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230272", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230273", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230281", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230282", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230283", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230284", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230286", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230287", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230288", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230289", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230290", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230291", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230292", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230293", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230294", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230295", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230296", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230297", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230298", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230300", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230301", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230306", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230307", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230308", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230311", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230313", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230314", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230315", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230324", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230330", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230332", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230333", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230334", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230335", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230336", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230337", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230340", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230341", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230342", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230343", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230344", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230345", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230346", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230348", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230349", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230350", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230356", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230357", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230358", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230359", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230360", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230361", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230362", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230363", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230364", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230365", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230366", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230367", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230368", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230369", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230370", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230373", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230375", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230377", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230378", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230380", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230382", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230383", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230386", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230388", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230390", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230391", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230392", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230393", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230394", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230395", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230396", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230397", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230398", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230399", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230400", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230401", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230402", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230403", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230404", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230405", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230406", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230407", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230408", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230409", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230410", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230411", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230412", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230413", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230414", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230415", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230416", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230417", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230418", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230419", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230420", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230421", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230422", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230423", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230424", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230425", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230426", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230427", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230428", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230429", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230430", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230431", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230432", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230433", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230434", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230435", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230436", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230437", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230438", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230439", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230440", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230441", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230442", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230443", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230444", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230445", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230446", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230447", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230448", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230449", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230450", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230451", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230452", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230453", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230454", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230455", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230456", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230457", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230458", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230459", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230460", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230461", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230462", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230463", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230464", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230465", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230467", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230471", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230472", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230473", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230474", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230477", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230478", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230480", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230483", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230485", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230486", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230487", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230488", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230489", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230492", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230494", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230495", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230496", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230497", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230498", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230499", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230503", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230507", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230508", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230509", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230510", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230511", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230512", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230513", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230514", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230515", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230516", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230517", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230518", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230519", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230520", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230521", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230522", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230526", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230527", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230531", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230533", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230534", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230535", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230536", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230537", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230538", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230539", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230540", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230541", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230542", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230543", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230544", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230545", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230546", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230547", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230548", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230549", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230550", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230555", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230556", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230557", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230558", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230559", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230560", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230561", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237640", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237641", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237642", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237643", + "selected": "true" + } + ] + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "title": { + "text": "III - Administrative Sensitive", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en" + }, + "description": { + "text": "<ProfileDescription></ProfileDescription>", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en" + }, + "select": [ + { + "idref": "xccdf_mil.disa.stig_group_V-230221", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230223", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230231", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230232", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230233", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230234", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230235", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230236", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230237", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230238", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230239", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230241", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230244", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230245", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230246", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230247", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230248", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230249", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230250", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230253", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230255", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230257", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230258", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230259", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230264", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230265", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230266", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230267", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230268", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230269", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230270", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230271", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230272", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230273", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230281", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230282", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230283", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230284", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230286", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230287", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230288", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230289", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230290", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230291", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230292", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230293", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230294", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230295", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230296", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230297", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230298", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230300", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230301", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230306", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230307", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230308", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230311", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230313", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230314", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230315", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230324", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230330", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230332", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230333", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230334", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230335", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230336", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230337", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230340", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230341", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230342", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230343", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230344", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230345", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230346", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230348", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230349", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230350", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230356", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230357", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230358", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230359", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230360", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230361", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230362", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230363", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230364", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230365", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230366", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230367", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230368", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230369", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230370", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230373", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230375", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230377", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230378", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230380", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230382", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230383", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230386", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230388", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230390", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230391", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230392", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230393", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230394", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230395", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230396", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230397", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230398", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230399", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230400", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230401", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230402", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230403", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230404", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230405", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230406", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230407", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230408", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230409", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230410", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230411", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230412", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230413", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230414", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230415", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230416", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230417", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230418", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230419", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230420", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230421", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230422", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230423", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230424", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230425", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230426", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230427", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230428", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230429", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230430", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230431", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230432", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230433", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230434", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230435", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230436", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230437", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230438", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230439", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230440", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230441", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230442", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230443", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230444", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230445", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230446", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230447", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230448", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230449", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230450", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230451", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230452", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230453", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230454", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230455", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230456", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230457", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230458", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230459", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230460", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230461", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230462", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230463", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230464", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230465", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230467", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230471", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230472", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230473", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230474", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230477", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230478", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230480", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230483", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230485", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230486", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230487", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230488", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230489", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230492", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230494", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230495", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230496", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230497", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230498", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230499", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230503", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230507", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230508", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230509", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230510", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230511", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230512", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230513", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230514", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230515", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230516", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230517", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230518", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230519", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230520", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230521", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230522", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230526", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230527", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230531", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230533", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230534", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230535", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230536", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230537", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230538", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230539", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230540", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230541", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230542", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230543", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230544", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230545", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230546", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230547", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230548", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230549", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230550", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230555", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230556", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230557", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230558", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230559", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230560", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230561", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237640", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237641", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237642", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237643", + "selected": "true" + } + ] + }, + { + "id": "xccdf_mil.disa.stig_profile_CAT_I_Only", + "title": { + "text": "CAT I Only", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en" + }, + "description": { + "text": "This profile only includes rules that are Severity Category I.", + "xmlns:xhtml": "http://www.w3.org/1999/xhtml", + "xml:lang": "en" + }, + "select": [ + { + "idref": "xccdf_mil.disa.stig_rule_SV-230231r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230232r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230233r743919_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230236r743928_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230237r743931_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230238r646862_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230239r646864_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230241r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230244r743934_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230245r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230246r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230247r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230248r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230249r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230250r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230253r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230255r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230257r792862_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230258r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230259r792864_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230266r792870_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230267r792873_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230268r792876_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230269r792879_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230270r792882_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230271r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230272r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230273r743943_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230281r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230282r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230286r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230287r743951_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230288r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230289r743954_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230290r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230291r743957_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230292r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230293r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230294r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230295r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230296r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230297r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230298r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230300r743959_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230301r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230306r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230307r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230308r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230311r792894_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230313r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230314r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230315r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230324r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230330r646870_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230332r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230333r743966_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230334r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230335r743969_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230336r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230337r743972_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230340r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230341r743978_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230342r646872_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230343r743981_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230344r646874_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230345r743984_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230346r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230348r743987_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230349r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230350r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230356r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230357r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230358r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230359r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230360r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230361r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230362r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230363r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230364r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230365r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230366r646878_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230367r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230368r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230369r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230370r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230373r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230375r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230377r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230378r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230382r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230383r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230386r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230388r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230390r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230391r743998_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230392r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230393r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230394r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230395r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230396r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230397r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230398r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230399r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230400r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230401r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230402r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230403r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230404r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230405r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230406r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230407r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230408r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230409r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230410r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230411r744000_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230412r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230413r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230414r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230415r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230416r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230417r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230418r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230419r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230420r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230421r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230422r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230423r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230424r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230425r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230426r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230427r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230428r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230429r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230430r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230431r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230432r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230433r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230434r744002_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230435r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230436r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230437r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230438r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230439r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230440r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230441r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230442r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230443r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230444r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230445r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230446r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230447r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230448r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230449r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230450r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230451r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230452r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230453r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230454r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230455r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230456r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230457r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230458r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230459r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230460r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230461r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230462r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230463r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230464r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230465r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230467r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230471r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230472r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230473r744008_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230474r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230477r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230478r744011_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230480r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230483r744014_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230485r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230486r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230488r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230489r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230494r792911_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230495r792914_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230496r792917_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230497r792920_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230498r792922_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230499r792924_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230503r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230507r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230508r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230509r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230510r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230511r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230512r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230513r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230514r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230515r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230516r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230517r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230518r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230519r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230520r792927_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230521r792930_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230522r792933_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230526r744032_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230527r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230535r792936_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230536r792939_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230537r792942_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230538r792945_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230539r792948_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230540r792951_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230541r792954_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230542r792957_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230543r792960_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230544r792963_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230545r792966_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230546r792969_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230547r792972_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230548r792975_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230549r792978_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230550r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230555r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230556r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230557r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230559r646887_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230560r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230561r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-237640r646890_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-237641r646893_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-237642r646896_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-237643r792980_rule", + "selected": "false" + } + ] + } + ] + } } + } ] + } } \ No newline at end of file diff --git a/test/sample_data/xccdf_results/xccdf-scc-rhel7-hdf.json b/test/sample_data/xccdf_results/xccdf-scc-rhel7-hdf.json index db6c033bb..eea4dc8a1 100644 --- a/test/sample_data/xccdf_results/xccdf-scc-rhel7-hdf.json +++ b/test/sample_data/xccdf_results/xccdf-scc-rhel7-hdf.json @@ -1,33552 +1,40694 @@ { - "platform": { - "name": "Heimdall Tools", - "release": "2.6.17", - "target_id": "cpe:/o:redhat:enterprise_linux:7" - }, - "version": "2.6.17", - "statistics": { - "duration": 0 - }, - "profiles": [ + "platform": { + "name": "Heimdall Tools", + "release": "2.6.28", + "target_id": "cpe:/o:redhat:enterprise_linux:7" + }, + "version": "2.6.28", + "statistics": {}, + "profiles": [ + { + "name": "xccdf_mil.disa.stig_benchmark_RHEL_7_STIG", + "version": "SCAP_1.2", + "title": "Red Hat Enterprise Linux 7 Security Technical Implementation Guide", + "maintainer": "DISA", + "summary": "This Security Technical Implementation Guide is published as a tool to improve the security of Department of Defense (DoD) information systems. The requirements are derived from the National Institute of Standards and Technology (NIST) 800-53 and related documents. Comments or proposed revisions to this document should be sent via email to the following address: disa.stig_spt@mail.mil.", + "description": "{\n \"cdf:description\": \"This Security Technical Implementation Guide is published as a tool to improve the security of Department of Defense (DoD) information systems. The requirements are derived from the National Institute of Standards and Technology (NIST) 800-53 and related documents. Comments or proposed revisions to this document should be sent via email to the following address: disa.stig_spt@mail.mil.\",\n \"cdf:front-matter\": \"\",\n \"cdf:metadata\": {\n \"dc:creator\": \"DISA\",\n \"dc:publisher\": \"DISA\",\n \"dc:contributor\": \"DISA\",\n \"dc:source\": \"STIG.DOD.MIL\"\n },\n \"cdf:plain-text\": [\n {\n \"text\": \"Release: 3.2 Benchmark Date: 22 Jan 2021\",\n \"id\": \"release-info\"\n },\n {\n \"text\": \"3.2.1.41666\",\n \"id\": \"generator\"\n },\n {\n \"text\": \"1.10.0\",\n \"id\": \"conventionsVersion\"\n }\n ],\n \"cdf:rear-matter\": \"\",\n \"cdf:reference\": {\n \"href\": \"https://cyber.mil\",\n \"dc:publisher\": \"DISA\",\n \"dc:source\": \"STIG.DOD.MIL\"\n },\n \"cdf:status\": {\n \"text\": \"accepted\",\n \"date\": \"2020-12-08\"\n },\n \"cdf:version\": {\n \"text\": 3.002,\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"xmlns:cdf\": \"http://checklists.nist.gov/xccdf/1.2\",\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"xsi:schemaLocation\": \"http://checklists.nist.gov/xccdf/1.2 http://scap.nist.gov/schema/xccdf/1.2/xccdf_1.2.xsd http://cpe.mitre.org/dictionary/2.0 http://scap.nist.gov/schema/cpe/2.3/cpe-dictionary_2.3.xsd http://cpe.mitre.org/language/2.0 http://scap.nist.gov/schema/cpe/2.3/cpe-language_2.3.xsd\",\n \"cdf:TestResult.cdf:benchmark\": {\n \"href\": \"#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-xccdf.xml\",\n \"id\": \"xccdf_mil.disa.stig_benchmark_RHEL_7_STIG\"\n },\n \"cdf:TestResult.start-time\": \"2021-04-29T14:16:20\",\n \"cdf:TestResult.end-time\": \"2021-04-29T14:24:10\",\n \"cdf:TestResult.id\": \"xccdf_mil.disa.stig_testresult_scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-xccdf.xml---xccdf_mil.disa.stig_profile_MAC-1_Classified-1\",\n \"cdf:TestResult.cdf:identity\": {\n \"text\": \"root\",\n \"privileged\": \"true\",\n \"authenticated\": \"true\"\n },\n \"cdf:TestResult.cdf:organization\": \"NIWC Atlantic\",\n \"cdf:TestResult.cdf:platform.idref\": \"cpe:/o:redhat:enterprise_linux:7\",\n \"cdf:TestResult.cdf:profile.idref\": \"xccdf_mil.disa.stig_profile_MAC-1_Classified\",\n \"cdf:TestResult.cdf:score\": [\n {\n \"text\": 96.63,\n \"system\": \"urn:xccdf:scoring:spawar-adjusted\",\n \"maximum\": \"100\"\n },\n {\n \"text\": 96.63,\n \"system\": \"urn:xccdf:scoring:spawar-original\",\n \"maximum\": \"100\"\n },\n {\n \"text\": 96.6292134831461,\n \"system\": \"urn:xccdf:scoring:default\",\n \"maximum\": \"100\"\n },\n {\n \"text\": 1720,\n \"system\": \"urn:xccdf:scoring:flat\",\n \"maximum\": \"1780\"\n },\n {\n \"text\": 172,\n \"system\": \"urn:xccdf:scoring:flat-unweighted\",\n \"maximum\": \"178\"\n },\n {\n \"text\": 0,\n \"system\": \"urn:xccdf:scoring:absolute\",\n \"maximum\": \"1\"\n }\n ],\n \"cdf:TestResult.cdf:set-value\": [\n {\n \"text\": 900,\n \"idref\": \"xccdf_mil.disa.stig_value_inactivity_timeout_value\"\n },\n {\n \"text\": -1,\n \"idref\": \"xccdf_mil.disa.stig_value_var_password_pam_ucredit\"\n },\n {\n \"text\": -1,\n \"idref\": \"xccdf_mil.disa.stig_value_var_password_pam_lcredit\"\n },\n {\n \"text\": -1,\n \"idref\": \"xccdf_mil.disa.stig_value_var_password_pam_dcredit\"\n },\n {\n \"text\": -1,\n \"idref\": \"xccdf_mil.disa.stig_value_var_password_pam_ocredit\"\n },\n {\n \"text\": 8,\n \"idref\": \"xccdf_mil.disa.stig_value_var_password_pam_difok\"\n },\n {\n \"text\": 4,\n \"idref\": \"xccdf_mil.disa.stig_value_var_password_pam_minclass\"\n },\n {\n \"text\": 3,\n \"idref\": \"xccdf_mil.disa.stig_value_var_password_pam_maxrepeat\"\n },\n {\n \"text\": 4,\n \"idref\": \"xccdf_mil.disa.stig_value_var_password_pam_maxclassrepeat\"\n },\n {\n \"text\": 1,\n \"idref\": \"xccdf_mil.disa.stig_value_var_accounts_minimum_age_login_defs\"\n },\n {\n \"text\": 60,\n \"idref\": \"xccdf_mil.disa.stig_value_var_accounts_maximum_age_login_defs\"\n },\n {\n \"text\": 5,\n \"idref\": \"xccdf_mil.disa.stig_value_var_password_pam_unix_remember\"\n },\n {\n \"text\": 15,\n \"idref\": \"xccdf_mil.disa.stig_value_var_password_pam_minlen\"\n },\n {\n \"text\": 0,\n \"idref\": \"xccdf_mil.disa.stig_value_var_account_disable_post_pw_expiration\"\n },\n {\n \"text\": 4,\n \"idref\": \"xccdf_mil.disa.stig_value_var_accounts_fail_delay\"\n },\n {\n \"text\": 77,\n \"idref\": \"xccdf_mil.disa.stig_value_var_accounts_user_umask\"\n },\n {\n \"text\": \"root\",\n \"idref\": \"xccdf_mil.disa.stig_value_var_auditd_action_mail_acct\"\n },\n {\n \"text\": 10,\n \"idref\": \"xccdf_mil.disa.stig_value_var_accounts_max_concurrent_login_sessions\"\n },\n {\n \"text\": 600,\n \"idref\": \"xccdf_mil.disa.stig_value_sshd_idle_timeout_value\"\n },\n {\n \"text\": 0,\n \"idref\": \"xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_all_accept_source_route_value\"\n },\n {\n \"text\": 0,\n \"idref\": \"xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_default_accept_source_route_value\"\n },\n {\n \"text\": 1,\n \"idref\": \"xccdf_mil.disa.stig_value_sysctl_net_ipv4_icmp_echo_ignore_broadcasts_value\"\n },\n {\n \"text\": 0,\n \"idref\": \"xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_default_accept_redirects_value\"\n },\n {\n \"text\": 0,\n \"idref\": \"xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_all_accept_redirects_value\"\n },\n {\n \"text\": 0,\n \"idref\": \"xccdf_mil.disa.stig_value_sysctl_net_ipv6_conf_all_accept_source_route_value\"\n }\n ],\n \"cdf:TestResult.cdf:target\": \"LOCKDOWN\",\n \"cdf:TestResult.cdf:target-address\": [\n \"127.0.0.1\",\n \"192.168.0.16\"\n ],\n \"cdf:TestResult.cdf:target-facts\": {\n \"cdf:fact\": [\n {\n \"text\": \"LOCKDOWN\",\n \"type\": \"string\",\n \"name\": \"urn:scap:fact:asset:identifier:host_name\"\n },\n {\n \"type\": \"string\",\n \"name\": \"urn:scap:fact:asset:identifier:domain\"\n },\n {\n \"text\": \"LOCKDOWN.\",\n \"type\": \"string\",\n \"name\": \"urn:scap:fact:asset:identifier:fqdn\"\n },\n {\n \"text\": \"RedHat Variant\",\n \"type\": \"string\",\n \"name\": \"urn:scap:fact:asset:identifier:os_name\"\n },\n {\n \"text\": 7.7,\n \"type\": \"string\",\n \"name\": \"urn:scap:fact:asset:identifier:os_version\"\n },\n {\n \"text\": \"Intel(R) Core(TM) i7-10850H CPU @ 2.70GHz\",\n \"type\": \"string\",\n \"name\": \"urn:scap:fact:asset:identifier:processor\"\n },\n {\n \"text\": \"x86_64\",\n \"type\": \"string\",\n \"name\": \"urn:scap:fact:asset:identifier:processor_architecture\"\n },\n {\n \"text\": 2712.006,\n \"type\": \"string\",\n \"name\": \"urn:scap:fact:asset:identifier:processor_mhz\"\n },\n {\n \"text\": 3789,\n \"type\": \"string\",\n \"name\": \"urn:scap:fact:asset:identifier:physical_memory\"\n },\n {\n \"text\": \"innotek GmbH\",\n \"type\": \"string\",\n \"name\": \"urn:scap:fact:asset:identifier:manufacturer\"\n },\n {\n \"text\": 0,\n \"type\": \"string\",\n \"name\": \"urn:scap:fact:asset:identifier:ein\"\n },\n {\n \"text\": \"VirtualBox\",\n \"type\": \"string\",\n \"name\": \"urn:scap:fact:asset:identifier:bios_version\"\n },\n {\n \"text\": \"VirtualBox\",\n \"type\": \"string\",\n \"name\": \"urn:scap:fact:asset:identifier:model\"\n },\n {\n \"text\": \"lo\",\n \"type\": \"string\",\n \"name\": \"urn:scap:fact:asset:identifier:interface_name\"\n },\n {\n \"text\": \"127.0.0.1\",\n \"type\": \"string\",\n \"name\": \"urn:scap:fact:asset:identifier:ipv4\"\n },\n {\n \"text\": \"00:00:00:00:00:00\",\n \"type\": \"string\",\n \"name\": \"urn:scap:fact:asset:identifier:mac\"\n },\n {\n \"text\": \"enp0s3\",\n \"type\": \"string\",\n \"name\": \"urn:scap:fact:asset:identifier:interface_name\"\n },\n {\n \"text\": \"192.168.0.16\",\n \"type\": \"string\",\n \"name\": \"urn:scap:fact:asset:identifier:ipv4\"\n },\n {\n \"text\": \"08:00:27:cd:b1:fb\",\n \"type\": \"string\",\n \"name\": \"urn:scap:fact:asset:identifier:mac\"\n }\n ]\n },\n \"cdf:TestResult.cdf:target-id-ref\": {\n \"href\": \"\",\n \"system\": \"http://scap.nist.gov/schema/asset-identification/1.1\",\n \"name\": \"SCC_LOCKDOWN\"\n },\n \"cdf:TestResult.test-system\": \"cpe:/a:spawar:scc:5.4\",\n \"cdf:TestResult.version\": \"003.002\"\n}", + "license": "terms-of-use", + "copyright": "DISA", + "copyright_email": "disa.stig_spt@mail.mil", + "supports": [], + "attributes": [], + "groups": [], + "status": "loaded", + "controls": [ { - "name": "xccdf_mil.disa.stig_benchmark_RHEL_7_STIG", - "version": "SCAP_1.2", - "title": "Red Hat Enterprise Linux 7 Security Technical Implementation Guide", - "maintainer": "DISA", - "summary": "This Security Technical Implementation Guide is published as a tool to improve the security of Department of Defense (DoD) information systems. The requirements are derived from the National Institute of Standards and Technology (NIST) 800-53 and related documents. Comments or proposed revisions to this document should be sent via email to the following address: disa.stig_spt@mail.mil.", - "description": "{\n \"cdf:description\": \"This Security Technical Implementation Guide is published as a tool to improve the security of Department of Defense (DoD) information systems. The requirements are derived from the National Institute of Standards and Technology (NIST) 800-53 and related documents. Comments or proposed revisions to this document should be sent via email to the following address: disa.stig_spt@mail.mil.\",\n \"cdf:front-matter\": \"\",\n \"cdf:metadata\": {\n \"dc:creator\": \"DISA\",\n \"dc:publisher\": \"DISA\",\n \"dc:contributor\": \"DISA\",\n \"dc:source\": \"STIG.DOD.MIL\"\n },\n \"cdf:plain-text\": [\n {\n \"text\": \"Release: 3.2 Benchmark Date: 22 Jan 2021\",\n \"id\": \"release-info\"\n },\n {\n \"text\": \"3.2.1.41666\",\n \"id\": \"generator\"\n },\n {\n \"text\": \"1.10.0\",\n \"id\": \"conventionsVersion\"\n }\n ],\n \"cdf:rear-matter\": \"\",\n \"cdf:reference\": {\n \"href\": \"https://cyber.mil\",\n \"dc:publisher\": \"DISA\",\n \"dc:source\": \"STIG.DOD.MIL\"\n },\n \"cdf:status\": {\n \"text\": \"accepted\",\n \"date\": \"2020-12-08\"\n },\n \"cdf:version\": {\n \"text\": 3.002,\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"xmlns:cdf\": \"http://checklists.nist.gov/xccdf/1.2\",\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"xsi:schemaLocation\": \"http://checklists.nist.gov/xccdf/1.2 http://scap.nist.gov/schema/xccdf/1.2/xccdf_1.2.xsd http://cpe.mitre.org/dictionary/2.0 http://scap.nist.gov/schema/cpe/2.3/cpe-dictionary_2.3.xsd http://cpe.mitre.org/language/2.0 http://scap.nist.gov/schema/cpe/2.3/cpe-language_2.3.xsd\",\n \"cdf:TestResult.cdf:benchmark\": {\n \"href\": \"#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-xccdf.xml\",\n \"id\": \"xccdf_mil.disa.stig_benchmark_RHEL_7_STIG\"\n },\n \"cdf:TestResult.start-time\": \"2021-04-29T14:16:20\",\n \"cdf:TestResult.end-time\": \"2021-04-29T14:24:10\",\n \"cdf:TestResult.id\": \"xccdf_mil.disa.stig_testresult_scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-xccdf.xml---xccdf_mil.disa.stig_profile_MAC-1_Classified-1\",\n \"cdf:TestResult.cdf:identity\": {\n \"text\": \"root\",\n \"privileged\": \"true\",\n \"authenticated\": \"true\"\n },\n \"cdf:TestResult.cdf:organization\": \"NIWC Atlantic\",\n \"cdf:TestResult.cdf:platform.idref\": \"cpe:/o:redhat:enterprise_linux:7\",\n \"cdf:TestResult.cdf:profile.idref\": \"xccdf_mil.disa.stig_profile_MAC-1_Classified\",\n \"cdf:TestResult.cdf:score\": [\n {\n \"text\": 96.63,\n \"system\": \"urn:xccdf:scoring:spawar-adjusted\",\n \"maximum\": \"100\"\n },\n {\n \"text\": 96.63,\n \"system\": \"urn:xccdf:scoring:spawar-original\",\n \"maximum\": \"100\"\n },\n {\n \"text\": 96.6292134831461,\n \"system\": \"urn:xccdf:scoring:default\",\n \"maximum\": \"100\"\n },\n {\n \"text\": 1720,\n \"system\": \"urn:xccdf:scoring:flat\",\n \"maximum\": \"1780\"\n },\n {\n \"text\": 172,\n \"system\": \"urn:xccdf:scoring:flat-unweighted\",\n \"maximum\": \"178\"\n },\n {\n \"text\": 0,\n \"system\": \"urn:xccdf:scoring:absolute\",\n \"maximum\": \"1\"\n }\n ],\n \"cdf:TestResult.cdf:set-value\": [\n {\n \"text\": 900,\n \"idref\": \"xccdf_mil.disa.stig_value_inactivity_timeout_value\"\n },\n {\n \"text\": -1,\n \"idref\": \"xccdf_mil.disa.stig_value_var_password_pam_ucredit\"\n },\n {\n \"text\": -1,\n \"idref\": \"xccdf_mil.disa.stig_value_var_password_pam_lcredit\"\n },\n {\n \"text\": -1,\n \"idref\": \"xccdf_mil.disa.stig_value_var_password_pam_dcredit\"\n },\n {\n \"text\": -1,\n \"idref\": \"xccdf_mil.disa.stig_value_var_password_pam_ocredit\"\n },\n {\n \"text\": 8,\n \"idref\": \"xccdf_mil.disa.stig_value_var_password_pam_difok\"\n },\n {\n \"text\": 4,\n \"idref\": \"xccdf_mil.disa.stig_value_var_password_pam_minclass\"\n },\n {\n \"text\": 3,\n \"idref\": \"xccdf_mil.disa.stig_value_var_password_pam_maxrepeat\"\n },\n {\n \"text\": 4,\n \"idref\": \"xccdf_mil.disa.stig_value_var_password_pam_maxclassrepeat\"\n },\n {\n \"text\": 1,\n \"idref\": \"xccdf_mil.disa.stig_value_var_accounts_minimum_age_login_defs\"\n },\n {\n \"text\": 60,\n \"idref\": \"xccdf_mil.disa.stig_value_var_accounts_maximum_age_login_defs\"\n },\n {\n \"text\": 5,\n \"idref\": \"xccdf_mil.disa.stig_value_var_password_pam_unix_remember\"\n },\n {\n \"text\": 15,\n \"idref\": \"xccdf_mil.disa.stig_value_var_password_pam_minlen\"\n },\n {\n \"text\": 0,\n \"idref\": \"xccdf_mil.disa.stig_value_var_account_disable_post_pw_expiration\"\n },\n {\n \"text\": 4,\n \"idref\": \"xccdf_mil.disa.stig_value_var_accounts_fail_delay\"\n },\n {\n \"text\": 77,\n \"idref\": \"xccdf_mil.disa.stig_value_var_accounts_user_umask\"\n },\n {\n \"text\": \"root\",\n \"idref\": \"xccdf_mil.disa.stig_value_var_auditd_action_mail_acct\"\n },\n {\n \"text\": 10,\n \"idref\": \"xccdf_mil.disa.stig_value_var_accounts_max_concurrent_login_sessions\"\n },\n {\n \"text\": 600,\n \"idref\": \"xccdf_mil.disa.stig_value_sshd_idle_timeout_value\"\n },\n {\n \"text\": 0,\n \"idref\": \"xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_all_accept_source_route_value\"\n },\n {\n \"text\": 0,\n \"idref\": \"xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_default_accept_source_route_value\"\n },\n {\n \"text\": 1,\n \"idref\": \"xccdf_mil.disa.stig_value_sysctl_net_ipv4_icmp_echo_ignore_broadcasts_value\"\n },\n {\n \"text\": 0,\n \"idref\": \"xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_default_accept_redirects_value\"\n },\n {\n \"text\": 0,\n \"idref\": \"xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_all_accept_redirects_value\"\n },\n {\n \"text\": 0,\n \"idref\": \"xccdf_mil.disa.stig_value_sysctl_net_ipv6_conf_all_accept_source_route_value\"\n }\n ],\n \"cdf:TestResult.cdf:target\": \"LOCKDOWN\",\n \"cdf:TestResult.cdf:target-address\": [\n \"127.0.0.1\",\n \"192.168.0.16\"\n ],\n \"cdf:TestResult.cdf:target-facts\": {\n \"cdf:fact\": [\n {\n \"text\": \"LOCKDOWN\",\n \"type\": \"string\",\n \"name\": \"urn:scap:fact:asset:identifier:host_name\"\n },\n {\n \"type\": \"string\",\n \"name\": \"urn:scap:fact:asset:identifier:domain\"\n },\n {\n \"text\": \"LOCKDOWN.\",\n \"type\": \"string\",\n \"name\": \"urn:scap:fact:asset:identifier:fqdn\"\n },\n {\n \"text\": \"RedHat Variant\",\n \"type\": \"string\",\n \"name\": \"urn:scap:fact:asset:identifier:os_name\"\n },\n {\n \"text\": 7.7,\n \"type\": \"string\",\n \"name\": \"urn:scap:fact:asset:identifier:os_version\"\n },\n {\n \"text\": \"Intel(R) Core(TM) i7-10850H CPU @ 2.70GHz\",\n \"type\": \"string\",\n \"name\": \"urn:scap:fact:asset:identifier:processor\"\n },\n {\n \"text\": \"x86_64\",\n \"type\": \"string\",\n \"name\": \"urn:scap:fact:asset:identifier:processor_architecture\"\n },\n {\n \"text\": 2712.006,\n \"type\": \"string\",\n \"name\": \"urn:scap:fact:asset:identifier:processor_mhz\"\n },\n {\n \"text\": 3789,\n \"type\": \"string\",\n \"name\": \"urn:scap:fact:asset:identifier:physical_memory\"\n },\n {\n \"text\": \"innotek GmbH\",\n \"type\": \"string\",\n \"name\": \"urn:scap:fact:asset:identifier:manufacturer\"\n },\n {\n \"text\": 0,\n \"type\": \"string\",\n \"name\": \"urn:scap:fact:asset:identifier:ein\"\n },\n {\n \"text\": \"VirtualBox\",\n \"type\": \"string\",\n \"name\": \"urn:scap:fact:asset:identifier:bios_version\"\n },\n {\n \"text\": \"VirtualBox\",\n \"type\": \"string\",\n \"name\": \"urn:scap:fact:asset:identifier:model\"\n },\n {\n \"text\": \"lo\",\n \"type\": \"string\",\n \"name\": \"urn:scap:fact:asset:identifier:interface_name\"\n },\n {\n \"text\": \"127.0.0.1\",\n \"type\": \"string\",\n \"name\": \"urn:scap:fact:asset:identifier:ipv4\"\n },\n {\n \"text\": \"00:00:00:00:00:00\",\n \"type\": \"string\",\n \"name\": \"urn:scap:fact:asset:identifier:mac\"\n },\n {\n \"text\": \"enp0s3\",\n \"type\": \"string\",\n \"name\": \"urn:scap:fact:asset:identifier:interface_name\"\n },\n {\n \"text\": \"192.168.0.16\",\n \"type\": \"string\",\n \"name\": \"urn:scap:fact:asset:identifier:ipv4\"\n },\n {\n \"text\": \"08:00:27:cd:b1:fb\",\n \"type\": \"string\",\n \"name\": \"urn:scap:fact:asset:identifier:mac\"\n }\n ]\n },\n \"cdf:TestResult.cdf:target-id-ref\": {\n \"href\": \"\",\n \"system\": \"http://scap.nist.gov/schema/asset-identification/1.1\",\n \"name\": \"SCC_LOCKDOWN\"\n },\n \"cdf:TestResult.test-system\": \"cpe:/a:spawar:scc:5.4\",\n \"cdf:TestResult.version\": \"003.002\"\n}", - "license": "terms-of-use", - "copyright": "DISA", - "copyright_email": "disa.stig_spt@mail.mil", - "supports": [], - "attributes": [], - "depends": [], - "groups": [], - "status": "loaded", - "controls": [ - { - "id": "V-204393", - "title": "The Red Hat Enterprise Linux operating system must display the Standard Mandatory DoD Notice and Consent Banner before granting local or remote access to the system via a graphical user logon.", - "desc": "Display of a standardized and approved use notification before granting access to the operating system ensures privacy and security notification verbiage used is consistent with applicable federal laws, Executive Orders, directives, policies, regulations, standards, and guidance.\n\nSystem use notifications are required only for access via logon interfaces with human users and are not required when such human interfaces do not exist.\n\nThe banner must be formatted in accordance with applicable DoD policy. Use the following verbiage for operating systems that can accommodate banners of 1300 characters:\n\n\"You are accessing a U.S. Government (USG) Information System (IS) that is provided for USG-authorized use only.\n\nBy using this IS (which includes any device attached to this IS), you consent to the following conditions:\n\n-The USG routinely intercepts and monitors communications on this IS for purposes including, but not limited to, penetration testing, COMSEC monitoring, network operations and defense, personnel misconduct (PM), law enforcement (LE), and counterintelligence (CI) investigations.\n\n-At any time, the USG may inspect and seize data stored on this IS.\n\n-Communications using, or data stored on, this IS are not private, are subject to routine monitoring, interception, and search, and may be disclosed or used for any USG-authorized purpose.\n\n-This IS includes security measures (e.g., authentication and access controls) to protect USG interests--not for your personal benefit or privacy.\n\n-Notwithstanding the above, using this IS does not constitute consent to PM, LE or CI investigative searching or monitoring of the content of privileged communications, or work product, related to personal representation or services by attorneys, psychotherapists, or clergy, and their assistants. Such communications and work product are private and confidential. See User Agreement for details.\"\n\n\nSatisfies: SRG-OS-000023-GPOS-00006, SRG-OS-000024-GPOS-00007, SRG-OS-000228-GPOS-00088", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:922", - "label": "check" - }, - { - "data": "Configure the operating system to display the Standard Mandatory DoD Notice and Consent Banner before granting access to the system.\n\nNote: If the system does not have GNOME installed, this requirement is Not Applicable.\n\nCreate a database to contain the system-wide graphical user logon settings (if it does not already exist) with the following command:\n\n# touch /etc/dconf/db/local.d/01-banner-message\n\nAdd the following line to the [org/gnome/login-screen] section of the \"/etc/dconf/db/local.d/01-banner-message\":\n\n[org/gnome/login-screen]\nbanner-message-enable=true\n\nUpdate the system databases:\n\n# dconf update\n\nUsers must log out and back in again before the system-wide settings take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000048" - ], - "nist": [ - "AC-8 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Display of a standardized and approved use notification before granting access to the operating system ensures privacy and security notification verbiage used is consistent with applicable federal laws, Executive Orders, directives, policies, regulations, standards, and guidance.\\n\\nSystem use notifications are required only for access via logon interfaces with human users and are not required when such human interfaces do not exist.\\n\\nThe banner must be formatted in accordance with applicable DoD policy. Use the following verbiage for operating systems that can accommodate banners of 1300 characters:\\n\\n\\\"You are accessing a U.S. Government (USG) Information System (IS) that is provided for USG-authorized use only.\\n\\nBy using this IS (which includes any device attached to this IS), you consent to the following conditions:\\n\\n-The USG routinely intercepts and monitors communications on this IS for purposes including, but not limited to, penetration testing, COMSEC monitoring, network operations and defense, personnel misconduct (PM), law enforcement (LE), and counterintelligence (CI) investigations.\\n\\n-At any time, the USG may inspect and seize data stored on this IS.\\n\\n-Communications using, or data stored on, this IS are not private, are subject to routine monitoring, interception, and search, and may be disclosed or used for any USG-authorized purpose.\\n\\n-This IS includes security measures (e.g., authentication and access controls) to protect USG interests--not for your personal benefit or privacy.\\n\\n-Notwithstanding the above, using this IS does not constitute consent to PM, LE or CI investigative searching or monitoring of the content of privileged communications, or work product, related to personal representation or services by attorneys, psychotherapists, or clergy, and their assistants. Such communications and work product are private and confidential. See User Agreement for details.\\\"\\n\\n\\nSatisfies: SRG-OS-000023-GPOS-00006, SRG-OS-000024-GPOS-00007, SRG-OS-000228-GPOS-00088\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204393", - "group_title": "SRG-OS-000023-GPOS-00006", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204393r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:922" - } - }, - "fix_id": "F-4517r88372_fix", - "fixtext_fixref": "F-4517r88372_fix", - "ident": [ - { - "text": "CCE-26970-4", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86483", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71859", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000048", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204393r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:16:20", - "idref": "xccdf_mil.disa.stig_rule_SV-204393r603261_rule", - "version": "RHEL-07-010030", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-26970-4", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86483", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71859", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000048", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4517r88372_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:922" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:16:20", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204396", - "title": "The Red Hat Enterprise Linux operating system must enable a user session lock until that user re-establishes access using established identification and authentication procedures.", - "desc": "A session lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not want to log out because of the temporary nature of the absence.\n\nThe session lock is implemented at the point where session activity can be determined.\n\nRegardless of where the session lock is determined and implemented, once invoked, the session lock must remain in place until the user reauthenticates. No other activity aside from reauthentication must unlock the system.\n\nSatisfies: SRG-OS-000028-GPOS-00009, SRG-OS-000030-GPOS-00011", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:988", - "label": "check" - }, - { - "data": "Configure the operating system to enable a user's session lock until that user re-establishes access using established identification and authentication procedures.\n\nCreate a database to contain the system-wide screensaver settings (if it does not already exist) with the following example:\n\n# touch /etc/dconf/db/local.d/00-screensaver\n\nEdit the \"[org/gnome/desktop/screensaver]\" section of the database file and add or update the following lines:\n\n# Set this to true to lock the screen when the screensaver activates\nlock-enabled=true\n\nUpdate the system databases:\n\n# dconf update\n\nUsers must log out and back in again before the system-wide settings take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000056" - ], - "nist": [ - "AC-11 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"A session lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not want to log out because of the temporary nature of the absence.\\n\\nThe session lock is implemented at the point where session activity can be determined.\\n\\nRegardless of where the session lock is determined and implemented, once invoked, the session lock must remain in place until the user reauthenticates. No other activity aside from reauthentication must unlock the system.\\n\\nSatisfies: SRG-OS-000028-GPOS-00009, SRG-OS-000030-GPOS-00011\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204396", - "group_title": "SRG-OS-000028-GPOS-00009", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204396r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:988" - } - }, - "fix_id": "F-4520r88381_fix", - "fixtext_fixref": "F-4520r88381_fix", - "ident": [ - { - "text": "CCE-80112-6", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86515", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71891", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000056", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204396r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:16:23", - "idref": "xccdf_mil.disa.stig_rule_SV-204396r603261_rule", - "version": "RHEL-07-010060", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-80112-6", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86515", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71891", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000056", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4520r88381_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:988" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:16:23", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204397", - "title": "The Red Hat Enterprise Linux operating system must uniquely identify and must authenticate users using multifactor authentication via a graphical user logon.", - "desc": "To assure accountability and prevent unauthenticated access, users must be identified and authenticated to prevent potential misuse and compromise of the system.\n\nMultifactor solutions that require devices separate from information systems gaining access include, for example, hardware tokens providing time-based or challenge-response authenticators and smart cards such as the U.S. Government Personal Identity Verification card and the DoD Common Access Card.\n\nSatisfies: SRG-OS-000375-GPOS-00161,SRG-OS-000375-GPOS-00162", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:92515", - "label": "check" - }, - { - "data": "Configure the operating system to uniquely identify and authenticate users using multifactor authentication via a graphical user logon.\n\nNote: If the system does not have GNOME installed, this requirement is Not Applicable.\n\nCreate a database to contain the system-wide screensaver settings (if it does not already exist) with the following command:\n\nNote: The example is using the database local for the system, so if the system is using another database in \"/etc/dconf/profile/user\", the file should be created under the appropriate subdirectory.\n\n# touch /etc/dconf/db/local.d/00-defaults\n\nEdit \"[org/gnome/login-screen]\" and add or update the following line:\nenable-smartcard-authentication=true\n\nUpdate the system databases:\n# dconf update", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001948", - "CCI-001953", - "CCI-001954" - ], - "nist": [ - "IA-2 (11)", - "IA-2 (12)", - "IA-2 (12)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"To assure accountability and prevent unauthenticated access, users must be identified and authenticated to prevent potential misuse and compromise of the system.\\n\\nMultifactor solutions that require devices separate from information systems gaining access include, for example, hardware tokens providing time-based or challenge-response authenticators and smart cards such as the U.S. Government Personal Identity Verification card and the DoD Common Access Card.\\n\\nSatisfies: SRG-OS-000375-GPOS-00161,SRG-OS-000375-GPOS-00162\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204397", - "group_title": "SRG-OS-000375-GPOS-00160", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204397r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:92515" - } - }, - "fix_id": "F-4521r88384_fix", - "fixtext_fixref": "F-4521r88384_fix", - "ident": [ - { - "text": "SV-92515", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-77819", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001948", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001953", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001954", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204397r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:16:23", - "idref": "xccdf_mil.disa.stig_rule_SV-204397r603261_rule", - "version": "RHEL-07-010061", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "SV-92515", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-77819", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001948", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001953", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001954", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4521r88384_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:92515" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:16:23", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204398", - "title": "The Red Hat Enterprise Linux operating system must initiate a screensaver after a 15-minute period of inactivity for graphical user interfaces.", - "desc": "A session time-out lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not log out because of the temporary nature of the absence. Rather than relying on the user to manually lock their operating system session prior to vacating the vicinity, operating systems need to be able to identify when a user's session has idled and take action to initiate the session lock.\n\nThe session lock is implemented at the point where session activity can be determined and/or controlled.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:981", - "label": "check" - }, - { - "data": "Configure the operating system to initiate a screensaver after a 15-minute period of inactivity for graphical user interfaces.\n\nCreate a database to contain the system-wide screensaver settings (if it does not already exist) with the following command:\n\n# touch /etc/dconf/db/local.d/00-screensaver\n\nEdit /etc/dconf/db/local.d/00-screensaver and add or update the following lines:\n\n[org/gnome/desktop/session]\n# Set the lock time out to 900 seconds before the session is considered idle\nidle-delay=uint32 900\n\nYou must include the \"uint32\" along with the integer key values as shown.\n\nUpdate the system databases:\n\n# dconf update\n\nUsers must log out and back in again before the system-wide settings take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000057" - ], - "nist": [ - "AC-11 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"A session time-out lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not log out because of the temporary nature of the absence. Rather than relying on the user to manually lock their operating system session prior to vacating the vicinity, operating systems need to be able to identify when a user's session has idled and take action to initiate the session lock.\\n\\nThe session lock is implemented at the point where session activity can be determined and/or controlled.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204398", - "group_title": "SRG-OS-000029-GPOS-00010", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204398r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-export": { - "value-id": "xccdf_mil.disa.stig_value_inactivity_timeout_value", - "export-name": "oval:mil.disa.stig.rhel7:var:3828" - }, - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:981" - } - }, - "fix_id": "F-4522r88387_fix", - "fixtext_fixref": "F-4522r88387_fix", - "ident": [ - { - "text": "CCE-80110-0", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86517", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71893", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000057", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204398r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:16:23", - "idref": "xccdf_mil.disa.stig_rule_SV-204398r603261_rule", - "version": "RHEL-07-010070", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-80110-0", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86517", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71893", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000057", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4522r88387_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-export": { - "value-id": "xccdf_mil.disa.stig_value_inactivity_timeout_value", - "export-name": "oval:mil.disa.stig.rhel7:var:3828" - }, - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:981" - } - } - }, - "value": { - "type": "number", - "Id": "xccdf_mil.disa.stig_value_inactivity_timeout_value", - "id": "xccdf_mil.disa.stig_value_inactivity_timeout_value", - "cdf:title": "Inactivity timeout", - "cdf:description": "Choose allowed duration of inactive SSH connections, shells, and X sessions", - "cdf:value": [ - 900, - { - "text": 300, - "selector": "5_minutes" - }, - { - "text": 600, - "selector": "10_minutes" - }, - { - "text": 900, - "selector": "15_minutes" - } - ] - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:16:23", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204399", - "title": "The Red Hat Enterprise Linux operating system must prevent a user from overriding the screensaver lock-delay setting for the graphical user interface.", - "desc": "A session time-out lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not log out because of the temporary nature of the absence. Rather than relying on the user to manually lock their operating system session prior to vacating the vicinity, operating systems need to be able to identify when a user's session has idled and take action to initiate the session lock.\n\nThe session lock is implemented at the point where session activity can be determined and/or controlled.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:999", - "label": "check" - }, - { - "data": "Configure the operating system to prevent a user from overriding a screensaver lock after a 15-minute period of inactivity for graphical user interfaces.\n\nCreate a database to contain the system-wide screensaver settings (if it does not already exist) with the following command:\n\nNote: The example below is using the database \"local\" for the system, so if the system is using another database in \"/etc/dconf/profile/user\", the file should be created under the appropriate subdirectory.\n\n# touch /etc/dconf/db/local.d/locks/session\n\nAdd the setting to lock the screensaver lock delay:\n\n/org/gnome/desktop/screensaver/lock-delay", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000057" - ], - "nist": [ - "AC-11 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"A session time-out lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not log out because of the temporary nature of the absence. Rather than relying on the user to manually lock their operating system session prior to vacating the vicinity, operating systems need to be able to identify when a user's session has idled and take action to initiate the session lock.\\n\\nThe session lock is implemented at the point where session activity can be determined and/or controlled.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204399", - "group_title": "SRG-OS-000029-GPOS-00010", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204399r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:999" - } - }, - "fix_id": "F-4523r88390_fix", - "fixtext_fixref": "F-4523r88390_fix", - "ident": [ - { - "text": "CCE-80371-8", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-87807", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-73155", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000057", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204399r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:16:23", - "idref": "xccdf_mil.disa.stig_rule_SV-204399r603261_rule", - "version": "RHEL-07-010081", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-80371-8", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-87807", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-73155", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000057", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4523r88390_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:999" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:16:23", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204402", - "title": "The Red Hat Enterprise Linux operating system must initiate a session lock for the screensaver after a period of inactivity for graphical user interfaces.", - "desc": "A session time-out lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not log out because of the temporary nature of the absence. Rather than relying on the user to manually lock their operating system session prior to vacating the vicinity, operating systems need to be able to identify when a user's session has idled and take action to initiate the session lock.\n\nThe session lock is implemented at the point where session activity can be determined and/or controlled.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:978", - "label": "check" - }, - { - "data": "Configure the operating system to initiate a session lock after a 15-minute period of inactivity for graphical user interfaces.\n\nCreate a database to contain the system-wide screensaver settings (if it does not already exist) with the following command:\n\n# touch /etc/dconf/db/local.d/00-screensaver\n\nAdd the setting to enable screensaver locking after 15 minutes of inactivity:\n\n[org/gnome/desktop/screensaver]\n\nidle-activation-enabled=true\n\nUpdate the system databases:\n\n# dconf update\n\nUsers must log out and back in again before the system-wide settings take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000057" - ], - "nist": [ - "AC-11 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"A session time-out lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not log out because of the temporary nature of the absence. Rather than relying on the user to manually lock their operating system session prior to vacating the vicinity, operating systems need to be able to identify when a user's session has idled and take action to initiate the session lock.\\n\\nThe session lock is implemented at the point where session activity can be determined and/or controlled.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204402", - "group_title": "SRG-OS-000029-GPOS-00010", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204402r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:978" - } - }, - "fix_id": "F-4526r88399_fix", - "fixtext_fixref": "F-4526r88399_fix", - "ident": [ - { - "text": "CCE-80111-8", - "system": "http://cce.mitre.org" - }, - { - "text": "V-71899", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86523", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000057", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204402r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:16:23", - "idref": "xccdf_mil.disa.stig_rule_SV-204402r603261_rule", - "version": "RHEL-07-010100", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-80111-8", - "system": "http://cce.mitre.org" - }, - { - "text": "V-71899", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86523", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000057", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4526r88399_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:978" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:16:23", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204403", - "title": "The Red Hat Enterprise Linux operating system must prevent a user from overriding the screensaver idle-activation-enabled setting for the graphical user interface.", - "desc": "A session lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not want to log out because of the temporary nature of the absence.\n\nThe session lock is implemented at the point where session activity can be determined.\n\nThe ability to enable/disable a session lock is given to the user by default. Disabling the user's ability to disengage the graphical user interface session lock provides the assurance that all sessions will lock after the specified period of time.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:93703", - "label": "check" - }, - { - "data": "Configure the operating system to prevent a user from overriding a screensaver lock after a 15-minute period of inactivity for graphical user interfaces.\n\nCreate a database to contain the system-wide screensaver settings (if it does not already exist) with the following command:\n\nNote: The example below is using the database \"local\" for the system, so if the system is using another database in \"/etc/dconf/profile/user\", the file should be created under the appropriate subdirectory.\n\n# touch /etc/dconf/db/local.d/locks/session\n\nAdd the setting to lock the screensaver idle-activation-enabled setting:\n\n/org/gnome/desktop/screensaver/idle-activation-enabled", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000057" - ], - "nist": [ - "AC-11 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"A session lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not want to log out because of the temporary nature of the absence.\\n\\nThe session lock is implemented at the point where session activity can be determined.\\n\\nThe ability to enable/disable a session lock is given to the user by default. Disabling the user's ability to disengage the graphical user interface session lock provides the assurance that all sessions will lock after the specified period of time.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204403", - "group_title": "SRG-OS-000029-GPOS-00010", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204403r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:93703" - } - }, - "fix_id": "F-4527r88402_fix", - "fixtext_fixref": "F-4527r88402_fix", - "ident": [ - { - "text": "SV-93703", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-78997", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000057", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204403r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:16:23", - "idref": "xccdf_mil.disa.stig_rule_SV-204403r603261_rule", - "version": "RHEL-07-010101", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "SV-93703", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-78997", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000057", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4527r88402_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:93703" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:16:23", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204404", - "title": "The Red Hat Enterprise Linux operating system must initiate a session lock for graphical user interfaces when the screensaver is activated.", - "desc": "A session time-out lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not log out because of the temporary nature of the absence. Rather than relying on the user to manually lock their operating system session prior to vacating the vicinity, operating systems need to be able to identify when a user's session has idled and take action to initiate the session lock.\n\nThe session lock is implemented at the point where session activity can be determined and/or controlled.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:985", - "label": "check" - }, - { - "data": "Configure the operating system to initiate a session lock for graphical user interfaces when a screensaver is activated.\n\nCreate a database to contain the system-wide screensaver settings (if it does not already exist) with the following command:\n\n# touch /etc/dconf/db/local.d/00-screensaver\n\nAdd the setting to enable session locking when a screensaver is activated:\n\n[org/gnome/desktop/screensaver]\nlock-delay=uint32 5\n\nThe \"uint32\" must be included along with the integer key values as shown.\n\nUpdate the system databases:\n\n# dconf update\n\nUsers must log out and back in again before the system-wide settings take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000057" - ], - "nist": [ - "AC-11 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"A session time-out lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not log out because of the temporary nature of the absence. Rather than relying on the user to manually lock their operating system session prior to vacating the vicinity, operating systems need to be able to identify when a user's session has idled and take action to initiate the session lock.\\n\\nThe session lock is implemented at the point where session activity can be determined and/or controlled.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204404", - "group_title": "SRG-OS-000029-GPOS-00010", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204404r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:985" - } - }, - "fix_id": "F-4528r88405_fix", - "fixtext_fixref": "F-4528r88405_fix", - "ident": [ - { - "text": "CCE-80370-0", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86525", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71901", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000057", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204404r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:16:23", - "idref": "xccdf_mil.disa.stig_rule_SV-204404r603261_rule", - "version": "RHEL-07-010110", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-80370-0", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86525", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71901", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000057", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4528r88405_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:985" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:16:23", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204405", - "title": "The Red Hat Enterprise Linux operating system must be configured so that /etc/pam.d/passwd implements /etc/pam.d/system-auth when changing passwords.", - "desc": "Pluggable authentication modules (PAM) allow for a modular approach to integrating authentication methods. PAM operates in a top-down processing model and if the modules are not listed in the correct order, an important security function could be bypassed if stack entries are not centralized.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:95715", - "label": "check" - }, - { - "data": "Configure PAM to utilize /etc/pam.d/system-auth when changing passwords.\n\nAdd the following line to \"/etc/pam.d/passwd\" (or modify the line to have the required value):\n\npassword substack system-auth", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000192" - ], - "nist": [ - "IA-5 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Pluggable authentication modules (PAM) allow for a modular approach to integrating authentication methods. PAM operates in a top-down processing model and if the modules are not listed in the correct order, an important security function could be bypassed if stack entries are not centralized.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204405", - "group_title": "SRG-OS-000069-GPOS-00037", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204405r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:95715" - } - }, - "fix_id": "F-4529r88408_fix", - "fixtext_fixref": "F-4529r88408_fix", - "ident": [ - { - "text": "SV-95715", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-81003", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000192", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204405r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:16:23", - "idref": "xccdf_mil.disa.stig_rule_SV-204405r603261_rule", - "version": "RHEL-07-010118", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "SV-95715", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-81003", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000192", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4529r88408_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:95715" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:16:23", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204406", - "title": "The Red Hat Enterprise Linux operating system must be configured so that when passwords are changed or new passwords are established, pwquality must be used.", - "desc": "Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. \"pwquality\" enforces complex password construction configuration and has the ability to limit brute-force attacks on the system.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:481", - "label": "check" - }, - { - "data": "Configure the operating system to use \"pwquality\" to enforce password complexity rules.\n\nAdd the following line to \"/etc/pam.d/system-auth\" (or modify the line to have the required value):\n\npassword required pam_pwquality.so retry=3\n\nNote: The value of \"retry\" should be between \"1\" and \"3\".", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000192" - ], - "nist": [ - "IA-5 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. \\\"pwquality\\\" enforces complex password construction configuration and has the ability to limit brute-force attacks on the system.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204406", - "group_title": "SRG-OS-000069-GPOS-00037", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204406r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:481" - } - }, - "fix_id": "F-4530r88411_fix", - "fixtext_fixref": "F-4530r88411_fix", - "ident": [ - { - "text": "CCE-27160-1", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-87811", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-73159", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000192", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204406r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:16:23", - "idref": "xccdf_mil.disa.stig_rule_SV-204406r603261_rule", - "version": "RHEL-07-010119", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-27160-1", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-87811", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-73159", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000192", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4530r88411_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:481" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:16:23", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204407", - "title": "The Red Hat Enterprise Linux operating system must be configured so that when passwords are changed or new passwords are established, the new password must contain at least one upper-case character.", - "desc": "Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\n\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:484", - "label": "check" - }, - { - "data": "Configure the operating system to enforce password complexity by requiring that at least one upper-case character be used by setting the \"ucredit\" option.\n\nAdd the following line to \"/etc/security/pwquality.conf\" (or modify the line to have the required value):\n\nucredit = -1", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000192" - ], - "nist": [ - "IA-5 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204407", - "group_title": "SRG-OS-000069-GPOS-00037", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204407r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-export": { - "value-id": "xccdf_mil.disa.stig_value_var_password_pam_ucredit", - "export-name": "oval:mil.disa.stig.rhel7:var:3805" - }, - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:484" - } - }, - "fix_id": "F-4531r88414_fix", - "fixtext_fixref": "F-4531r88414_fix", - "ident": [ - { - "text": "CCE-27200-5", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86527", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71903", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000192", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204407r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:16:23", - "idref": "xccdf_mil.disa.stig_rule_SV-204407r603261_rule", - "version": "RHEL-07-010120", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-27200-5", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86527", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71903", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000192", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4531r88414_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-export": { - "value-id": "xccdf_mil.disa.stig_value_var_password_pam_ucredit", - "export-name": "oval:mil.disa.stig.rhel7:var:3805" - }, - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:484" - } - } - }, - "value": { - "type": "number", - "Id": "xccdf_mil.disa.stig_value_var_password_pam_ucredit", - "id": "xccdf_mil.disa.stig_value_var_password_pam_ucredit", - "cdf:title": "ucredit", - "cdf:description": "Minimum number of upper case in password", - "cdf:value": [ - -1, - { - "text": -2, - "selector": "2" - }, - { - "text": -1, - "selector": "1" - }, - { - "text": 0, - "selector": "0" - } - ] - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:16:23", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204408", - "title": "The Red Hat Enterprise Linux operating system must be configured so that when passwords are changed or new passwords are established, the new password must contain at least one lower-case character.", - "desc": "Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\n\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:468", - "label": "check" - }, - { - "data": "Configure the system to require at least one lower-case character when creating or changing a password.\n\nAdd or modify the following line\nin \"/etc/security/pwquality.conf\":\n\nlcredit = -1", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000193" - ], - "nist": [ - "IA-5 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204408", - "group_title": "SRG-OS-000070-GPOS-00038", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204408r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-export": { - "value-id": "xccdf_mil.disa.stig_value_var_password_pam_lcredit", - "export-name": "oval:mil.disa.stig.rhel7:var:3798" - }, - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:468" - } - }, - "fix_id": "F-4532r88417_fix", - "fixtext_fixref": "F-4532r88417_fix", - "ident": [ - { - "text": "CCE-27345-8", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86529", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71905", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000193", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204408r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:16:23", - "idref": "xccdf_mil.disa.stig_rule_SV-204408r603261_rule", - "version": "RHEL-07-010130", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-27345-8", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86529", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71905", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000193", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4532r88417_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-export": { - "value-id": "xccdf_mil.disa.stig_value_var_password_pam_lcredit", - "export-name": "oval:mil.disa.stig.rhel7:var:3798" - }, - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:468" - } - } - }, - "value": { - "type": "number", - "Id": "xccdf_mil.disa.stig_value_var_password_pam_lcredit", - "id": "xccdf_mil.disa.stig_value_var_password_pam_lcredit", - "cdf:title": "lcredit", - "cdf:description": "Minimum number of lower case in password", - "cdf:value": [ - -1, - { - "text": -2, - "selector": "2" - }, - { - "text": -1, - "selector": "1" - }, - { - "text": 0, - "selector": "0" - } - ] - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:16:23", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204409", - "title": "The Red Hat Enterprise Linux operating system must be configured so that when passwords are changed or new passwords are assigned, the new password must contain at least one numeric character.", - "desc": "Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\n\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:463", - "label": "check" - }, - { - "data": "Configure the operating system to enforce password complexity by requiring that at least one numeric character be used by setting the \"dcredit\" option.\n\nAdd the following line to /etc/security/pwquality.conf (or modify the line to have the required value):\n\ndcredit = -1", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000194" - ], - "nist": [ - "IA-5 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204409", - "group_title": "SRG-OS-000071-GPOS-00039", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204409r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-export": { - "value-id": "xccdf_mil.disa.stig_value_var_password_pam_dcredit", - "export-name": "oval:mil.disa.stig.rhel7:var:3796" - }, - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:463" - } - }, - "fix_id": "F-4533r88420_fix", - "fixtext_fixref": "F-4533r88420_fix", - "ident": [ - { - "text": "CCE-27214-6", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86531", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71907", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000194", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204409r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:16:23", - "idref": "xccdf_mil.disa.stig_rule_SV-204409r603261_rule", - "version": "RHEL-07-010140", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-27214-6", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86531", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71907", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000194", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4533r88420_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-export": { - "value-id": "xccdf_mil.disa.stig_value_var_password_pam_dcredit", - "export-name": "oval:mil.disa.stig.rhel7:var:3796" - }, - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:463" - } - } - }, - "value": { - "type": "number", - "Id": "xccdf_mil.disa.stig_value_var_password_pam_dcredit", - "id": "xccdf_mil.disa.stig_value_var_password_pam_dcredit", - "cdf:title": "dcredit", - "cdf:description": "Minimum number of digits in password", - "cdf:value": [ - -1, - { - "text": -2, - "selector": "2" - }, - { - "text": -1, - "selector": "1" - }, - { - "text": 0, - "selector": "0" - } - ] - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:16:23", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204410", - "title": "The Red Hat Enterprise Linux operating system must be configured so that when passwords are changed or new passwords are established, the new password must contain at least one special character.", - "desc": "Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\n\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:478", - "label": "check" - }, - { - "data": "Configure the operating system to enforce password complexity by requiring that at least one special character be used by setting the \"ocredit\" option.\n\nAdd the following line to \"/etc/security/pwquality.conf\" (or modify the line to have the required value):\n\nocredit = -1", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001619" - ], - "nist": [ - "IA-5 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204410", - "group_title": "SRG-OS-000266-GPOS-00101", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204410r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-export": { - "value-id": "xccdf_mil.disa.stig_value_var_password_pam_ocredit", - "export-name": "oval:mil.disa.stig.rhel7:var:3803" - }, - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:478" - } - }, - "fix_id": "F-4534r88423_fix", - "fixtext_fixref": "F-4534r88423_fix", - "ident": [ - { - "text": "CCE-27360-7", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86533", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71909", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001619", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204410r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:16:23", - "idref": "xccdf_mil.disa.stig_rule_SV-204410r603261_rule", - "version": "RHEL-07-010150", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-27360-7", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86533", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71909", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001619", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4534r88423_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-export": { - "value-id": "xccdf_mil.disa.stig_value_var_password_pam_ocredit", - "export-name": "oval:mil.disa.stig.rhel7:var:3803" - }, - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:478" - } - } - }, - "value": { - "type": "number", - "Id": "xccdf_mil.disa.stig_value_var_password_pam_ocredit", - "id": "xccdf_mil.disa.stig_value_var_password_pam_ocredit", - "cdf:title": "ocredit", - "cdf:description": "Minimum number of other (special characters) in\npassword", - "cdf:value": [ - -1, - { - "text": -2, - "selector": "2" - }, - { - "text": -1, - "selector": "1" - }, - { - "text": 0, - "selector": "0" - } - ] - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:16:23", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204411", - "title": "The Red Hat Enterprise Linux operating system must be configured so that when passwords are changed a minimum of eight of the total number of characters must be changed.", - "desc": "Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\n\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:466", - "label": "check" - }, - { - "data": "Configure the operating system to require the change of at least eight of the total number of characters when passwords are changed by setting the \"difok\" option.\n\nAdd the following line to \"/etc/security/pwquality.conf\" (or modify the line to have the required value):\n\ndifok = 8", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000195" - ], - "nist": [ - "IA-5 (1) (b)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204411", - "group_title": "SRG-OS-000072-GPOS-00040", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204411r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-export": { - "value-id": "xccdf_mil.disa.stig_value_var_password_pam_difok", - "export-name": "oval:mil.disa.stig.rhel7:var:3797" - }, - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:466" - } - }, - "fix_id": "F-4535r88426_fix", - "fixtext_fixref": "F-4535r88426_fix", - "ident": [ - { - "text": "CCE-26631-2", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86535", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71911", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000195", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204411r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:16:23", - "idref": "xccdf_mil.disa.stig_rule_SV-204411r603261_rule", - "version": "RHEL-07-010160", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-26631-2", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86535", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71911", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000195", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4535r88426_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-export": { - "value-id": "xccdf_mil.disa.stig_value_var_password_pam_difok", - "export-name": "oval:mil.disa.stig.rhel7:var:3797" - }, - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:466" - } - } - }, - "value": { - "type": "number", - "Id": "xccdf_mil.disa.stig_value_var_password_pam_difok", - "id": "xccdf_mil.disa.stig_value_var_password_pam_difok", - "cdf:title": "difok", - "cdf:description": "Minimum number of characters not present in old\npassword", - "cdf:warning": "Keep this high for short passwords", - "cdf:value": [ - 8, - { - "text": 2, - "selector": "2" - }, - { - "text": 3, - "selector": "3" - }, - { - "text": 4, - "selector": "4" - }, - { - "text": 5, - "selector": "5" - }, - { - "text": 6, - "selector": "6" - }, - { - "text": 7, - "selector": "7" - }, - { - "text": 8, - "selector": "8" - }, - { - "text": 15, - "selector": "15" - } - ] - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:16:23", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204412", - "title": "The Red Hat Enterprise Linux operating system must be configured so that when passwords are changed a minimum of four character classes must be changed.", - "desc": "Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\n\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:474", - "label": "check" - }, - { - "data": "Configure the operating system to require the change of at least four character classes when passwords are changed by setting the \"minclass\" option.\n\nAdd the following line to \"/etc/security/pwquality.conf conf\" (or modify the line to have the required value):\n\nminclass = 4", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000195" - ], - "nist": [ - "IA-5 (1) (b)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204412", - "group_title": "SRG-OS-000072-GPOS-00040", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204412r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-export": { - "value-id": "xccdf_mil.disa.stig_value_var_password_pam_minclass", - "export-name": "oval:mil.disa.stig.rhel7:var:3801" - }, - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:474" - } - }, - "fix_id": "F-4536r88429_fix", - "fixtext_fixref": "F-4536r88429_fix", - "ident": [ - { - "text": "CCE-27115-5", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86537", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71913", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000195", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204412r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:16:23", - "idref": "xccdf_mil.disa.stig_rule_SV-204412r603261_rule", - "version": "RHEL-07-010170", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-27115-5", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86537", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71913", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000195", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4536r88429_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-export": { - "value-id": "xccdf_mil.disa.stig_value_var_password_pam_minclass", - "export-name": "oval:mil.disa.stig.rhel7:var:3801" - }, - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:474" - } - } - }, - "value": { - "type": "number", - "Id": "xccdf_mil.disa.stig_value_var_password_pam_minclass", - "id": "xccdf_mil.disa.stig_value_var_password_pam_minclass", - "cdf:title": "minclass", - "cdf:description": "Minimum number of categories of characters that must exist in a password", - "cdf:value": [ - 4, - { - "text": 1, - "selector": "1" - }, - { - "text": 2, - "selector": "2" - }, - { - "text": 3, - "selector": "3" - }, - { - "text": 4, - "selector": "4" - } - ] - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:16:23", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204413", - "title": "The Red Hat Enterprise Linux operating system must be configured so that when passwords are changed the number of repeating consecutive characters must not be more than three characters.", - "desc": "Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\n\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:472", - "label": "check" - }, - { - "data": "Configure the operating system to require the change of the number of repeating consecutive characters when passwords are changed by setting the \"maxrepeat\" option.\n\nAdd the following line to \"/etc/security/pwquality.conf conf\" (or modify the line to have the required value):\n\nmaxrepeat = 3", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000195" - ], - "nist": [ - "IA-5 (1) (b)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204413", - "group_title": "SRG-OS-000072-GPOS-00040", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204413r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-export": { - "value-id": "xccdf_mil.disa.stig_value_var_password_pam_maxrepeat", - "export-name": "oval:mil.disa.stig.rhel7:var:3800" - }, - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:472" - } - }, - "fix_id": "F-4537r88432_fix", - "fixtext_fixref": "F-4537r88432_fix", - "ident": [ - { - "text": "CCE-27333-4", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86539", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71915", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000195", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204413r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:16:23", - "idref": "xccdf_mil.disa.stig_rule_SV-204413r603261_rule", - "version": "RHEL-07-010180", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-27333-4", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86539", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71915", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000195", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4537r88432_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-export": { - "value-id": "xccdf_mil.disa.stig_value_var_password_pam_maxrepeat", - "export-name": "oval:mil.disa.stig.rhel7:var:3800" - }, - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:472" - } - } - }, - "value": { - "type": "number", - "Id": "xccdf_mil.disa.stig_value_var_password_pam_maxrepeat", - "id": "xccdf_mil.disa.stig_value_var_password_pam_maxrepeat", - "cdf:title": "maxrepeat", - "cdf:description": "Maximum Number of Consecutive Repeating Characters in a Password", - "cdf:value": [ - 3, - { - "text": 1, - "selector": "1" - }, - { - "text": 2, - "selector": "2" - }, - { - "text": 3, - "selector": "3" - } - ] - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:16:23", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204414", - "title": "The Red Hat Enterprise Linux operating system must be configured so that when passwords are changed the number of repeating characters of the same character class must not be more than four characters.", - "desc": "Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\n\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:470", - "label": "check" - }, - { - "data": "Configure the operating system to require the change of the number of repeating characters of the same character class when passwords are changed by setting the \"maxclassrepeat\" option.\n\nAdd the following line to \"/etc/security/pwquality.conf\" conf (or modify the line to have the required value):\n\nmaxclassrepeat = 4", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000195" - ], - "nist": [ - "IA-5 (1) (b)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204414", - "group_title": "SRG-OS-000072-GPOS-00040", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204414r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-export": { - "value-id": "xccdf_mil.disa.stig_value_var_password_pam_maxclassrepeat", - "export-name": "oval:mil.disa.stig.rhel7:var:3799" - }, - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:470" - } - }, - "fix_id": "F-4538r88435_fix", - "fixtext_fixref": "F-4538r88435_fix", - "ident": [ - { - "text": "CCE-27512-3", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86541", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71917", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000195", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204414r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:16:23", - "idref": "xccdf_mil.disa.stig_rule_SV-204414r603261_rule", - "version": "RHEL-07-010190", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-27512-3", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86541", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71917", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000195", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4538r88435_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-export": { - "value-id": "xccdf_mil.disa.stig_value_var_password_pam_maxclassrepeat", - "export-name": "oval:mil.disa.stig.rhel7:var:3799" - }, - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:470" - } - } - }, - "value": { - "type": "number", - "Id": "xccdf_mil.disa.stig_value_var_password_pam_maxclassrepeat", - "id": "xccdf_mil.disa.stig_value_var_password_pam_maxclassrepeat", - "cdf:title": "maxclassrepeat", - "cdf:description": "Maximum Number of Consecutive Repeating Characters in a Password From the Same Character Class", - "cdf:value": [ - 4, - { - "text": 1, - "selector": "1" - }, - { - "text": 2, - "selector": "2" - }, - { - "text": 3, - "selector": "3" - }, - { - "text": 4, - "selector": "4" - } - ] - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:16:23", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204415", - "title": "The Red Hat Enterprise Linux operating system must be configured so that the PAM system service is configured to store only encrypted representations of passwords.", - "desc": "Passwords need to be protected at all times, and encryption is the standard method for protecting passwords. If passwords are not encrypted, they can be plainly read (i.e., clear text) and easily compromised. Passwords encrypted with a weak algorithm are no more protected than if they are kept in plain text.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:1367", - "label": "check" - }, - { - "data": "Configure the operating system to store only SHA512 encrypted representations of passwords.\n\nAdd the following line in \"/etc/pam.d/system-auth\":\npam_unix.so sha512 shadow try_first_pass use_authtok\n\nAdd the following line in \"/etc/pam.d/password-auth\":\npam_unix.so sha512 shadow try_first_pass use_authtok\n\nNote: Manual changes to the listed files may be overwritten by the \"authconfig\" program. The \"authconfig\" program should not be used to update the configurations listed in this requirement.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000196" - ], - "nist": [ - "IA-5 (1) (c)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Passwords need to be protected at all times, and encryption is the standard method for protecting passwords. If passwords are not encrypted, they can be plainly read (i.e., clear text) and easily compromised. Passwords encrypted with a weak algorithm are no more protected than if they are kept in plain text.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204415", - "group_title": "SRG-OS-000073-GPOS-00041", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204415r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:1367" - } - }, - "fix_id": "F-4539r88438_fix", - "fixtext_fixref": "F-4539r88438_fix", - "ident": [ - { - "text": "CCE-27104-9", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86543", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71919", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000196", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204415r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:16:23", - "idref": "xccdf_mil.disa.stig_rule_SV-204415r603261_rule", - "version": "RHEL-07-010200", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-27104-9", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86543", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71919", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000196", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4539r88438_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:1367" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:16:23", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204416", - "title": "The Red Hat Enterprise Linux operating system must be configured to use the shadow file to store only encrypted representations of passwords.", - "desc": "Passwords need to be protected at all times, and encryption is the standard method for protecting passwords. If passwords are not encrypted, they can be plainly read (i.e., clear text) and easily compromised. Passwords encrypted with a weak algorithm are no more protected than if they are kept in plain text.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:1365", - "label": "check" - }, - { - "data": "Configure the operating system to store only SHA512 encrypted representations of passwords.\n\nAdd or update the following line in \"/etc/login.defs\":\n\nENCRYPT_METHOD SHA512", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000196" - ], - "nist": [ - "IA-5 (1) (c)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Passwords need to be protected at all times, and encryption is the standard method for protecting passwords. If passwords are not encrypted, they can be plainly read (i.e., clear text) and easily compromised. Passwords encrypted with a weak algorithm are no more protected than if they are kept in plain text.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204416", - "group_title": "SRG-OS-000073-GPOS-00041", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204416r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:1365" - } - }, - "fix_id": "F-4540r88441_fix", - "fixtext_fixref": "F-4540r88441_fix", - "ident": [ - { - "text": "CCE-27124-7", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86545", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71921", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000196", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204416r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:16:23", - "idref": "xccdf_mil.disa.stig_rule_SV-204416r603261_rule", - "version": "RHEL-07-010210", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-27124-7", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86545", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71921", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000196", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4540r88441_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:1365" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:16:23", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204417", - "title": "The Red Hat Enterprise Linux operating system must be configured so that user and group account administration utilities are configured to store only encrypted representations of passwords.", - "desc": "Passwords need to be protected at all times, and encryption is the standard method for protecting passwords. If passwords are not encrypted, they can be plainly read (i.e., clear text) and easily compromised. Passwords encrypted with a weak algorithm are no more protected than if they are kept in plain text.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:1363", - "label": "check" - }, - { - "data": "Configure the operating system to store only SHA512 encrypted representations of passwords.\n\nAdd or update the following line in \"/etc/libuser.conf\" in the [defaults] section:\n\ncrypt_style = sha512", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000196" - ], - "nist": [ - "IA-5 (1) (c)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Passwords need to be protected at all times, and encryption is the standard method for protecting passwords. If passwords are not encrypted, they can be plainly read (i.e., clear text) and easily compromised. Passwords encrypted with a weak algorithm are no more protected than if they are kept in plain text.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204417", - "group_title": "SRG-OS-000073-GPOS-00041", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204417r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:1363" - } - }, - "fix_id": "F-4541r88444_fix", - "fixtext_fixref": "F-4541r88444_fix", - "ident": [ - { - "text": "CCE-27053-8", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86547", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71923", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000196", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204417r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:16:23", - "idref": "xccdf_mil.disa.stig_rule_SV-204417r603261_rule", - "version": "RHEL-07-010220", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-27053-8", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86547", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71923", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000196", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4541r88444_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:1363" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:16:23", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204418", - "title": "The Red Hat Enterprise Linux operating system must be configured so that passwords for new users are restricted to a 24 hours/1 day minimum lifetime.", - "desc": "Enforcing a minimum password lifetime helps to prevent repeated password changes to defeat the password reuse or history enforcement requirement. If users are allowed to immediately and continually change their password, the password could be repeatedly changed in a short period of time to defeat the organization's policy regarding password reuse.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:455", - "label": "check" - }, - { - "data": "Configure the operating system to enforce 24 hours/1 day as the minimum password lifetime.\n\nAdd the following line in \"/etc/login.defs\" (or modify the line to have the required value):\n\nPASS_MIN_DAYS 1", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000198" - ], - "nist": [ - "IA-5 (1) (d)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Enforcing a minimum password lifetime helps to prevent repeated password changes to defeat the password reuse or history enforcement requirement. If users are allowed to immediately and continually change their password, the password could be repeatedly changed in a short period of time to defeat the organization's policy regarding password reuse.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204418", - "group_title": "SRG-OS-000075-GPOS-00043", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204418r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-export": { - "value-id": "xccdf_mil.disa.stig_value_var_accounts_minimum_age_login_defs", - "export-name": "oval:mil.disa.stig.rhel7:var:3794" - }, - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:455" - } - }, - "fix_id": "F-4542r88447_fix", - "fixtext_fixref": "F-4542r88447_fix", - "ident": [ - { - "text": "CCE-27002-5", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86549", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71925", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000198", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204418r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:16:23", - "idref": "xccdf_mil.disa.stig_rule_SV-204418r603261_rule", - "version": "RHEL-07-010230", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-27002-5", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86549", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71925", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000198", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4542r88447_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-export": { - "value-id": "xccdf_mil.disa.stig_value_var_accounts_minimum_age_login_defs", - "export-name": "oval:mil.disa.stig.rhel7:var:3794" - }, - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:455" - } - } - }, - "value": { - "type": "number", - "Id": "xccdf_mil.disa.stig_value_var_accounts_minimum_age_login_defs", - "id": "xccdf_mil.disa.stig_value_var_accounts_minimum_age_login_defs", - "cdf:title": "minimum password age", - "cdf:description": "Minimum age of password in days", - "cdf:warning": "This will only apply to newly created accounts", - "cdf:value": [ - 1, - { - "text": 7, - "selector": "7" - }, - { - "text": 5, - "selector": "5" - }, - { - "text": 2, - "selector": "2" - }, - { - "text": 1, - "selector": "1" - }, - { - "text": 0, - "selector": "0" - } - ] - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:16:23", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204419", - "title": "The Red Hat Enterprise Linux operating system must be configured so that passwords are restricted to a 24 hours/1 day minimum lifetime.", - "desc": "Enforcing a minimum password lifetime helps to prevent repeated password changes to defeat the password reuse or history enforcement requirement. If users are allowed to immediately and continually change their password, the password could be repeatedly changed in a short period of time to defeat the organization's policy regarding password reuse.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:86551", - "label": "check" - }, - { - "data": "Configure non-compliant accounts to enforce a 24 hours/1 day minimum password lifetime:\n\n# chage -m 1 [user]", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000198" - ], - "nist": [ - "IA-5 (1) (d)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Enforcing a minimum password lifetime helps to prevent repeated password changes to defeat the password reuse or history enforcement requirement. If users are allowed to immediately and continually change their password, the password could be repeatedly changed in a short period of time to defeat the organization's policy regarding password reuse.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204419", - "group_title": "SRG-OS-000075-GPOS-00043", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204419r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:86551" - } - }, - "fix_id": "F-4543r88450_fix", - "fixtext_fixref": "F-4543r88450_fix", - "ident": [ - { - "text": "SV-86551", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71927", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000198", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204419r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:16:23", - "idref": "xccdf_mil.disa.stig_rule_SV-204419r603261_rule", - "version": "RHEL-07-010240", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "SV-86551", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71927", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000198", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4543r88450_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:86551" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:16:23", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204420", - "title": "The Red Hat Enterprise Linux operating system must be configured so that passwords for new users are restricted to a 60-day maximum lifetime.", - "desc": "Any password, no matter how complex, can eventually be cracked. Therefore, passwords need to be changed periodically. If the operating system does not limit the lifetime of passwords and force users to change their passwords, there is the risk that the operating system passwords could be compromised.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:453", - "label": "check" - }, - { - "data": "Configure the operating system to enforce a 60-day maximum password lifetime restriction.\n\nAdd the following line in \"/etc/login.defs\" (or modify the line to have the required value):\n\nPASS_MAX_DAYS 60", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000199" - ], - "nist": [ - "IA-5 (1) (d)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Any password, no matter how complex, can eventually be cracked. Therefore, passwords need to be changed periodically. If the operating system does not limit the lifetime of passwords and force users to change their passwords, there is the risk that the operating system passwords could be compromised.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204420", - "group_title": "SRG-OS-000076-GPOS-00044", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204420r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-export": { - "value-id": "xccdf_mil.disa.stig_value_var_accounts_maximum_age_login_defs", - "export-name": "oval:mil.disa.stig.rhel7:var:3793" - }, - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:453" - } - }, - "fix_id": "F-4544r88453_fix", - "fixtext_fixref": "F-4544r88453_fix", - "ident": [ - { - "text": "CCE-27051-2", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86553", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71929", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000199", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204420r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:16:23", - "idref": "xccdf_mil.disa.stig_rule_SV-204420r603261_rule", - "version": "RHEL-07-010250", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-27051-2", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86553", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71929", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000199", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4544r88453_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-export": { - "value-id": "xccdf_mil.disa.stig_value_var_accounts_maximum_age_login_defs", - "export-name": "oval:mil.disa.stig.rhel7:var:3793" - }, - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:453" - } - } - }, - "value": { - "type": "number", - "Id": "xccdf_mil.disa.stig_value_var_accounts_maximum_age_login_defs", - "id": "xccdf_mil.disa.stig_value_var_accounts_maximum_age_login_defs", - "cdf:title": "maximum password age", - "cdf:description": "Maximum age of password in days", - "cdf:warning": "This will only apply to newly created accounts", - "cdf:value": [ - 60, - { - "text": 60, - "selector": "60" - }, - { - "text": 90, - "selector": "90" - }, - { - "text": 120, - "selector": "120" - }, - { - "text": 180, - "selector": "180" - } - ] - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:16:23", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204421", - "title": "The Red Hat Enterprise Linux operating system must be configured so that existing passwords are restricted to a 60-day maximum lifetime.", - "desc": "Any password, no matter how complex, can eventually be cracked. Therefore, passwords need to be changed periodically. If the operating system does not limit the lifetime of passwords and force users to change their passwords, there is the risk that the operating system passwords could be compromised.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:86555", - "label": "check" - }, - { - "data": "Configure non-compliant accounts to enforce a 60-day maximum password lifetime restriction.\n\n# chage -M 60 [user]", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000199" - ], - "nist": [ - "IA-5 (1) (d)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Any password, no matter how complex, can eventually be cracked. Therefore, passwords need to be changed periodically. If the operating system does not limit the lifetime of passwords and force users to change their passwords, there is the risk that the operating system passwords could be compromised.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204421", - "group_title": "SRG-OS-000076-GPOS-00044", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204421r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:86555" - } - }, - "fix_id": "F-4545r88456_fix", - "fixtext_fixref": "F-4545r88456_fix", - "ident": [ - { - "text": "V-71931", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86555", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000199", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204421r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:16:23", - "idref": "xccdf_mil.disa.stig_rule_SV-204421r603261_rule", - "version": "RHEL-07-010260", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "V-71931", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86555", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000199", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4545r88456_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:86555" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:16:23", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204422", - "title": "The Red Hat Enterprise Linux operating system must be configured so that passwords are prohibited from reuse for a minimum of five generations.", - "desc": "Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. If the information system or application allows the user to consecutively reuse their password when that password has exceeded its defined lifetime, the end result is a password that is not changed per policy requirements.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:486", - "label": "check" - }, - { - "data": "Configure the operating system to prohibit password reuse for a minimum of five generations.\n\nAdd the following line in \"/etc/pam.d/system-auth\" and \"/etc/pam.d/password-auth\" (or modify the line to have the required value):\n\npassword requisite pam_pwhistory.so use_authtok remember=5 retry=3\n\nNote: Manual changes to the listed files may be overwritten by the \"authconfig\" program. The \"authconfig\" program should not be used to update the configurations listed in this requirement.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000200" - ], - "nist": [ - "IA-5 (1) (e)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. If the information system or application allows the user to consecutively reuse their password when that password has exceeded its defined lifetime, the end result is a password that is not changed per policy requirements.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204422", - "group_title": "SRG-OS-000077-GPOS-00045", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204422r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-export": { - "value-id": "xccdf_mil.disa.stig_value_var_password_pam_unix_remember", - "export-name": "oval:mil.disa.stig.rhel7:var:3806" - }, - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:486" - } - }, - "fix_id": "F-4546r88459_fix", - "fixtext_fixref": "F-4546r88459_fix", - "ident": [ - { - "text": "CCE-26923-3", - "system": "http://cce.mitre.org" - }, - { - "text": "V-71933", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86557", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000200", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204422r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:16:23", - "idref": "xccdf_mil.disa.stig_rule_SV-204422r603261_rule", - "version": "RHEL-07-010270", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-26923-3", - "system": "http://cce.mitre.org" - }, - { - "text": "V-71933", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86557", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000200", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4546r88459_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-export": { - "value-id": "xccdf_mil.disa.stig_value_var_password_pam_unix_remember", - "export-name": "oval:mil.disa.stig.rhel7:var:3806" - }, - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:486" - } - } - }, - "value": { - "type": "number", - "Id": "xccdf_mil.disa.stig_value_var_password_pam_unix_remember", - "id": "xccdf_mil.disa.stig_value_var_password_pam_unix_remember", - "cdf:title": "remember", - "cdf:description": "The last n passwords for each user are saved in /etc/security/opasswd in order to force password change history and keep the user from alternating between the same password too frequently.", - "cdf:value": [ - 5, - { - "text": 0, - "selector": "0" - }, - { - "text": 4, - "selector": "4" - }, - { - "text": 5, - "selector": "5" - }, - { - "text": 10, - "selector": "10" - }, - { - "text": 24, - "selector": "24" - } - ] - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:16:23", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204423", - "title": "The Red Hat Enterprise Linux operating system must be configured so that passwords are a minimum of 15 characters in length.", - "desc": "The shorter the password, the lower the number of possible combinations that need to be tested before the password is compromised.\n\nPassword complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. Password length is one factor of several that helps to determine strength and how long it takes to crack a password. Use of more characters in a password helps to exponentially increase the time and/or resources required to compromise the password.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:476", - "label": "check" - }, - { - "data": "Configure operating system to enforce a minimum 15-character password length.\n\nAdd the following line to \"/etc/security/pwquality.conf\" (or modify the line to have the required value):\n\nminlen = 15", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000205" - ], - "nist": [ - "IA-5 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"The shorter the password, the lower the number of possible combinations that need to be tested before the password is compromised.\\n\\nPassword complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. Password length is one factor of several that helps to determine strength and how long it takes to crack a password. Use of more characters in a password helps to exponentially increase the time and/or resources required to compromise the password.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204423", - "group_title": "SRG-OS-000078-GPOS-00046", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204423r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-export": { - "value-id": "xccdf_mil.disa.stig_value_var_password_pam_minlen", - "export-name": "oval:mil.disa.stig.rhel7:var:3802" - }, - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:476" - } - }, - "fix_id": "F-4547r88462_fix", - "fixtext_fixref": "F-4547r88462_fix", - "ident": [ - { - "text": "CCE-27293-0", - "system": "http://cce.mitre.org" - }, - { - "text": "V-71935", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86559", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000205", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204423r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:16:23", - "idref": "xccdf_mil.disa.stig_rule_SV-204423r603261_rule", - "version": "RHEL-07-010280", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-27293-0", - "system": "http://cce.mitre.org" - }, - { - "text": "V-71935", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86559", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000205", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4547r88462_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-export": { - "value-id": "xccdf_mil.disa.stig_value_var_password_pam_minlen", - "export-name": "oval:mil.disa.stig.rhel7:var:3802" - }, - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:476" - } - } - }, - "value": { - "type": "number", - "Id": "xccdf_mil.disa.stig_value_var_password_pam_minlen", - "id": "xccdf_mil.disa.stig_value_var_password_pam_minlen", - "cdf:title": "minlen", - "cdf:description": "Minimum number of characters in password", - "cdf:value": [ - 15, - { - "text": 6, - "selector": "6" - }, - { - "text": 7, - "selector": "7" - }, - { - "text": 8, - "selector": "8" - }, - { - "text": 10, - "selector": "10" - }, - { - "text": 12, - "selector": "12" - }, - { - "text": 14, - "selector": "14" - }, - { - "text": 15, - "selector": "15" - } - ] - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:16:23", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204424", - "title": "The Red Hat Enterprise Linux operating system must not have accounts configured with blank or null passwords.", - "desc": "If an account has an empty password, anyone could log on and run commands with the privileges of that account. Accounts with empty passwords should never be used in operational environments.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:1229", - "label": "check" - }, - { - "data": "If an account is configured for password authentication but does not have an assigned password, it may be possible to log on to the account without authenticating.\n\nRemove any instances of the \"nullok\" option in \"/etc/pam.d/system-auth\" and \"/etc/pam.d/password-auth\" to prevent logons with empty passwords.\n\nNote: Manual changes to the listed files may be overwritten by the \"authconfig\" program. The \"authconfig\" program should not be used to update the configurations listed in this requirement.", - "label": "fix" - } - ], - "impact": 0.7, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "high", - "description": "{\"VulnDiscussion\":\"If an account has an empty password, anyone could log on and run commands with the privileges of that account. Accounts with empty passwords should never be used in operational environments.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204424", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204424r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:1229" - } - }, - "fix_id": "F-4548r88465_fix", - "fixtext_fixref": "F-4548r88465_fix", - "ident": [ - { - "text": "CCE-27286-4", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86561", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71937", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204424r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:16:23", - "idref": "xccdf_mil.disa.stig_rule_SV-204424r603261_rule", - "version": "RHEL-07-010290", - "severity": "high", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-27286-4", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86561", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71937", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4548r88465_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:1229" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:16:23", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204425", - "title": "The Red Hat Enterprise Linux operating system must be configured so that the SSH daemon does not allow authentication using an empty password.", - "desc": "Configuring this setting for the SSH daemon provides additional assurance that remote logon via SSH will require a password, even in the event of misconfiguration elsewhere.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:1375", - "label": "check" - }, - { - "data": "To explicitly disallow remote logon from accounts with empty passwords, add or correct the following line in \"/etc/ssh/sshd_config\":\n\nPermitEmptyPasswords no\n\nThe SSH service must be restarted for changes to take effect. Any accounts with empty passwords should be disabled immediately, and PAM configuration should prevent users from being able to assign themselves empty passwords.", - "label": "fix" - } - ], - "impact": 0.7, - "refs": [], - "tags": { - "cci": [ - "CCI-000766" - ], - "nist": [ - "IA-2 (2)" - ], - "severity": "high", - "description": "{\"VulnDiscussion\":\"Configuring this setting for the SSH daemon provides additional assurance that remote logon via SSH will require a password, even in the event of misconfiguration elsewhere.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204425", - "group_title": "SRG-OS-000106-GPOS-00053", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204425r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:1375" - } - }, - "fix_id": "F-4549r88468_fix", - "fixtext_fixref": "F-4549r88468_fix", - "ident": [ - { - "text": "CCE-27471-2", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86563", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71939", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000766", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204425r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:16:23", - "idref": "xccdf_mil.disa.stig_rule_SV-204425r603261_rule", - "version": "RHEL-07-010300", - "severity": "high", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-27471-2", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86563", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71939", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000766", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4549r88468_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:1375" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:16:23", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204426", - "title": "The Red Hat Enterprise Linux operating system must disable account identifiers (individuals, groups, roles, and devices) if the password expires.", - "desc": "Inactive identifiers pose a risk to systems and applications because attackers may exploit an inactive identifier and potentially obtain undetected access to the system. Owners of inactive accounts will not notice if unauthorized access to their user account has been obtained.\n\nOperating systems need to track periods of inactivity and disable application identifiers after zero days of inactivity.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:443", - "label": "check" - }, - { - "data": "Configure the operating system to disable account identifiers (individuals, groups, roles, and devices) after the password expires.\n\nAdd the following line to \"/etc/default/useradd\" (or modify the line to have the required value):\n\nINACTIVE=0", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000795" - ], - "nist": [ - "IA-4 e" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Inactive identifiers pose a risk to systems and applications because attackers may exploit an inactive identifier and potentially obtain undetected access to the system. Owners of inactive accounts will not notice if unauthorized access to their user account has been obtained.\\n\\nOperating systems need to track periods of inactivity and disable application identifiers after zero days of inactivity.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204426", - "group_title": "SRG-OS-000118-GPOS-00060", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204426r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-export": { - "value-id": "xccdf_mil.disa.stig_value_var_account_disable_post_pw_expiration", - "export-name": "oval:mil.disa.stig.rhel7:var:3790" - }, - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:443" - } - }, - "fix_id": "F-4550r88471_fix", - "fixtext_fixref": "F-4550r88471_fix", - "ident": [ - { - "text": "CCE-27471-2", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86565", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71941", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000795", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204426r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:16:25", - "idref": "xccdf_mil.disa.stig_rule_SV-204426r603261_rule", - "version": "RHEL-07-010310", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-27471-2", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86565", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71941", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000795", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4550r88471_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-export": { - "value-id": "xccdf_mil.disa.stig_value_var_account_disable_post_pw_expiration", - "export-name": "oval:mil.disa.stig.rhel7:var:3790" - }, - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:443" - } - } - }, - "value": { - "type": "number", - "Id": "xccdf_mil.disa.stig_value_var_account_disable_post_pw_expiration", - "id": "xccdf_mil.disa.stig_value_var_account_disable_post_pw_expiration", - "cdf:title": "number of days after a password expires until the account is permanently disabled", - "cdf:description": "The number of days to wait after a password expires, until the account will be permanently disabled.", - "cdf:warning": "This will only apply to newly created accounts", - "cdf:value": [ - 0, - { - "text": 0, - "selector": "0" - }, - { - "text": 30, - "selector": "30" - }, - { - "text": 35, - "selector": "35" - }, - { - "text": 40, - "selector": "40" - }, - { - "text": 60, - "selector": "60" - }, - { - "text": 90, - "selector": "90" - }, - { - "text": 180, - "selector": "180" - } - ] - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:16:25", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204429", - "title": "The Red Hat Enterprise Linux operating system must be configured so that users must provide a password for privilege escalation.", - "desc": "Without re-authentication, users may access resources or perform tasks for which they do not have authorization.\n\nWhen operating systems provide the capability to escalate a functional capability, it is critical the user re-authenticate.\n\nSatisfies: SRG-OS-000373-GPOS-00156, SRG-OS-000373-GPOS-00157, SRG-OS-000373-GPOS-00158", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:176", - "label": "check" - }, - { - "data": "Configure the operating system to require users to supply a password for privilege escalation.\n\nCheck the configuration of the \"/etc/sudoers\" file with the following command:\n# visudo\n\nRemove any occurrences of \"NOPASSWD\" tags in the file.\n\nCheck the configuration of the /etc/sudoers.d/* files with the following command:\n# grep -i nopasswd /etc/sudoers.d/*\n\nRemove any occurrences of \"NOPASSWD\" tags in the file.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-002038" - ], - "nist": [ - "IA-11" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without re-authentication, users may access resources or perform tasks for which they do not have authorization.\\n\\nWhen operating systems provide the capability to escalate a functional capability, it is critical the user re-authenticate.\\n\\nSatisfies: SRG-OS-000373-GPOS-00156, SRG-OS-000373-GPOS-00157, SRG-OS-000373-GPOS-00158\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204429", - "group_title": "SRG-OS-000373-GPOS-00156", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204429r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:176" - } - }, - "fix_id": "F-36303r602619_fix", - "fixtext_fixref": "F-36303r602619_fix", - "ident": [ - { - "text": "CCE-80351-0", - "system": "http://cce.mitre.org" - }, - { - "text": "V-71947", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86571", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-002038", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204429r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:16:25", - "idref": "xccdf_mil.disa.stig_rule_SV-204429r603261_rule", - "version": "RHEL-07-010340", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-80351-0", - "system": "http://cce.mitre.org" - }, - { - "text": "V-71947", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86571", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-002038", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-36303r602619_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:176" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:16:25", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204430", - "title": "The Red Hat Enterprise Linux operating system must be configured so that users must re-authenticate for privilege escalation.", - "desc": "Without re-authentication, users may access resources or perform tasks for which they do not have authorization.\n\nWhen operating systems provide the capability to escalate a functional capability, it is critical the user reauthenticate.\n\nSatisfies: SRG-OS-000373-GPOS-00156, SRG-OS-000373-GPOS-00157, SRG-OS-000373-GPOS-00158", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:173", - "label": "check" - }, - { - "data": "Configure the operating system to require users to reauthenticate for privilege escalation.\n\nCheck the configuration of the \"/etc/sudoers\" file with the following command:\n\n# visudo\nRemove any occurrences of \"!authenticate\" tags in the file.\n\nCheck the configuration of the \"/etc/sudoers.d/*\" files with the following command:\n\n# grep -i authenticate /etc/sudoers /etc/sudoers.d/*\nRemove any occurrences of \"!authenticate\" tags in the file(s).", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-002038" - ], - "nist": [ - "IA-11" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without re-authentication, users may access resources or perform tasks for which they do not have authorization.\\n\\nWhen operating systems provide the capability to escalate a functional capability, it is critical the user reauthenticate.\\n\\nSatisfies: SRG-OS-000373-GPOS-00156, SRG-OS-000373-GPOS-00157, SRG-OS-000373-GPOS-00158\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204430", - "group_title": "SRG-OS-000373-GPOS-00156", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204430r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:173" - } - }, - "fix_id": "F-4554r88483_fix", - "fixtext_fixref": "F-4554r88483_fix", - "ident": [ - { - "text": "CCE-80350-2", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86573", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71949", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-002038", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204430r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:16:25", - "idref": "xccdf_mil.disa.stig_rule_SV-204430r603261_rule", - "version": "RHEL-07-010350", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-80350-2", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86573", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71949", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-002038", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4554r88483_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:173" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:16:25", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204431", - "title": "The Red Hat Enterprise Linux operating system must be configured so that the delay between logon prompts following a failed console logon attempt is at least four seconds.", - "desc": "Configuring the operating system to implement organization-wide security implementation guides and security checklists verifies compliance with federal standards and establishes a common security baseline across DoD that reflects the most restrictive security posture consistent with operational requirements.\n\nConfiguration settings are the set of parameters that can be changed in hardware, software, or firmware components of the system that affect the security posture and/or functionality of the system. Security-related parameters are those parameters impacting the security state of the system, including the parameters required to satisfy other security control requirements. Security-related parameters include, for example, registry settings; account, file, and directory permission settings; and settings for functions, ports, protocols, services, and remote connections.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:101", - "label": "check" - }, - { - "data": "Configure the operating system to enforce a delay of at least four seconds between logon prompts following a failed console logon attempt.\n\nModify the \"/etc/login.defs\" file to set the \"FAIL_DELAY\" parameter to \"4\" or greater:\n\nFAIL_DELAY 4", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Configuring the operating system to implement organization-wide security implementation guides and security checklists verifies compliance with federal standards and establishes a common security baseline across DoD that reflects the most restrictive security posture consistent with operational requirements.\\n\\nConfiguration settings are the set of parameters that can be changed in hardware, software, or firmware components of the system that affect the security posture and/or functionality of the system. Security-related parameters are those parameters impacting the security state of the system, including the parameters required to satisfy other security control requirements. Security-related parameters include, for example, registry settings; account, file, and directory permission settings; and settings for functions, ports, protocols, services, and remote connections.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204431", - "group_title": "SRG-OS-000480-GPOS-00226", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204431r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-export": { - "value-id": "xccdf_mil.disa.stig_value_var_accounts_fail_delay", - "export-name": "oval:mil.disa.stig.rhel7:var:3761" - }, - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:101" - } - }, - "fix_id": "F-4555r88486_fix", - "fixtext_fixref": "F-4555r88486_fix", - "ident": [ - { - "text": "CCE-80352-8", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86575", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71951", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204431r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:16:25", - "idref": "xccdf_mil.disa.stig_rule_SV-204431r603261_rule", - "version": "RHEL-07-010430", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-80352-8", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86575", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71951", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4555r88486_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-export": { - "value-id": "xccdf_mil.disa.stig_value_var_accounts_fail_delay", - "export-name": "oval:mil.disa.stig.rhel7:var:3761" - }, - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:101" - } - } - }, - "value": { - "type": "number", - "Id": "xccdf_mil.disa.stig_value_var_accounts_fail_delay", - "id": "xccdf_mil.disa.stig_value_var_accounts_fail_delay", - "cdf:title": "Maximum login attempts delay", - "cdf:description": "Maximum time in seconds between fail login attempts before re-prompting.", - "cdf:value": [ - 4, - { - "text": 1, - "selector": "1" - }, - { - "text": 2, - "selector": "2" - }, - { - "text": 3, - "selector": "3" - }, - { - "text": 4, - "selector": "4" - }, - { - "text": 5, - "selector": "5" - } - ] - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:16:25", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204432", - "title": "The Red Hat Enterprise Linux operating system must not allow an unattended or automatic logon to the system via a graphical user interface.", - "desc": "Failure to restrict system access to authenticated users negatively impacts operating system security.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:1119", - "label": "check" - }, - { - "data": "Configure the operating system to not allow an unattended or automatic logon to the system via a graphical user interface.\n\nNote: If the system does not have GNOME installed, this requirement is Not Applicable.\n\nAdd or edit the line for the \"AutomaticLoginEnable\" parameter in the [daemon] section of the \"/etc/gdm/custom.conf\" file to \"false\":\n\n[daemon]\nAutomaticLoginEnable=false", - "label": "fix" - } - ], - "impact": 0.7, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "high", - "description": "{\"VulnDiscussion\":\"Failure to restrict system access to authenticated users negatively impacts operating system security.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204432", - "group_title": "SRG-OS-000480-GPOS-00229", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204432r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:1119" - } - }, - "fix_id": "F-4556r88489_fix", - "fixtext_fixref": "F-4556r88489_fix", - "ident": [ - { - "text": "CCE-80104-3", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86577", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71953", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204432r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:16:25", - "idref": "xccdf_mil.disa.stig_rule_SV-204432r603261_rule", - "version": "RHEL-07-010440", - "severity": "high", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-80104-3", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86577", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71953", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4556r88489_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:1119" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:16:25", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204433", - "title": "The Red Hat Enterprise Linux operating system must not allow an unrestricted logon to the system.", - "desc": "Failure to restrict system access to authenticated users negatively impacts operating system security.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:1122", - "label": "check" - }, - { - "data": "Configure the operating system to not allow an unrestricted account to log on to the system via a graphical user interface.\n\nNote: If the system does not have GNOME installed, this requirement is Not Applicable.\n\nAdd or edit the line for the \"TimedLoginEnable\" parameter in the [daemon] section of the \"/etc/gdm/custom.conf\" file to \"false\":\n\n[daemon]\nTimedLoginEnable=false", - "label": "fix" - } - ], - "impact": 0.7, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "high", - "description": "{\"VulnDiscussion\":\"Failure to restrict system access to authenticated users negatively impacts operating system security.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204433", - "group_title": "SRG-OS-000480-GPOS-00229", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204433r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:1122" - } - }, - "fix_id": "F-4557r88492_fix", - "fixtext_fixref": "F-4557r88492_fix", - "ident": [ - { - "text": "CCE-80105-0", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86579", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71955", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204433r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:16:26", - "idref": "xccdf_mil.disa.stig_rule_SV-204433r603261_rule", - "version": "RHEL-07-010450", - "severity": "high", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-80105-0", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86579", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71955", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4557r88492_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:1122" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:16:26", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204434", - "title": "The Red Hat Enterprise Linux operating system must not allow users to override SSH environment variables.", - "desc": "Failure to restrict system access to authenticated users negatively impacts operating system security.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:1385", - "label": "check" - }, - { - "data": "Configure the operating system to not allow users to override environment variables to the SSH daemon.\n\nEdit the \"/etc/ssh/sshd_config\" file to uncomment or add the line for \"PermitUserEnvironment\" keyword and set the value to \"no\":\n\nPermitUserEnvironment no\n\nThe SSH service must be restarted for changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Failure to restrict system access to authenticated users negatively impacts operating system security.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204434", - "group_title": "SRG-OS-000480-GPOS-00229", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204434r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:1385" - } - }, - "fix_id": "F-4558r88495_fix", - "fixtext_fixref": "F-4558r88495_fix", - "ident": [ - { - "text": "CCE-27363-1", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86581", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71957", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204434r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:16:26", - "idref": "xccdf_mil.disa.stig_rule_SV-204434r603261_rule", - "version": "RHEL-07-010460", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-27363-1", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86581", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71957", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4558r88495_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:1385" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:16:26", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204435", - "title": "The Red Hat Enterprise Linux operating system must not allow a non-certificate trusted host SSH logon to the system.", - "desc": "Failure to restrict system access to authenticated users negatively impacts operating system security.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:1011", - "label": "check" - }, - { - "data": "Configure the operating system to not allow a non-certificate trusted host SSH logon to the system.\n\nEdit the \"/etc/ssh/sshd_config\" file to uncomment or add the line for \"HostbasedAuthentication\" keyword and set the value to \"no\":\n\nHostbasedAuthentication no\n\nThe SSH service must be restarted for changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Failure to restrict system access to authenticated users negatively impacts operating system security.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204435", - "group_title": "SRG-OS-000480-GPOS-00229", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204435r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:1011" - } - }, - "fix_id": "F-4559r88498_fix", - "fixtext_fixref": "F-4559r88498_fix", - "ident": [ - { - "text": "CCE-27413-4", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86583", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71959", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204435r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:16:26", - "idref": "xccdf_mil.disa.stig_rule_SV-204435r603261_rule", - "version": "RHEL-07-010470", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-27413-4", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86583", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71959", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4559r88498_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:1011" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:16:26", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204436", - "title": "Red Hat Enterprise Linux operating systems prior to version 7.2 with a Basic Input/Output System (BIOS) must require authentication upon booting into single-user and maintenance modes.", - "desc": "If the system does not require valid root authentication before it boots into single-user or maintenance mode, anyone who invokes single-user or maintenance mode is granted privileged access to all files on the system. GRUB 2 is the default boot loader for RHEL 7 and is designed to require a password to boot into single-user mode or make modifications to the boot menu.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:908", - "label": "check" - }, - { - "data": "Configure the system to encrypt the boot password for root.\n\nGenerate an encrypted grub2 password for root with the following command:\n\nNote: The hash generated is an example.\n\n# grub2-mkpasswd-pbkdf2\n\nEnter Password:\nReenter Password:\nPBKDF2 hash of your password is grub.pbkdf2.sha512.10000.F3A7CFAA5A51EED123BE8238C23B25B2A6909AFC9812F0D45\n\nEdit \"/etc/grub.d/40_custom\" and add the following lines below the comments:\n\n# vi /etc/grub.d/40_custom\n\nset superusers=\"root\"\n\npassword_pbkdf2 root {hash from grub2-mkpasswd-pbkdf2 command}\n\nGenerate a new \"grub.conf\" file with the new password with the following commands:\n\n# grub2-mkconfig --output=/tmp/grub2.cfg\n# mv /tmp/grub2.cfg /boot/grub2/grub.cfg", - "label": "fix" - } - ], - "impact": 0.7, - "refs": [], - "tags": { - "cci": [ - "CCI-000213" - ], - "nist": [ - "AC-3" - ], - "severity": "high", - "description": "{\"VulnDiscussion\":\"If the system does not require valid root authentication before it boots into single-user or maintenance mode, anyone who invokes single-user or maintenance mode is granted privileged access to all files on the system. GRUB 2 is the default boot loader for RHEL 7 and is designed to require a password to boot into single-user mode or make modifications to the boot menu.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204436", - "group_title": "SRG-OS-000080-GPOS-00048", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204436r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:908" - } - }, - "fix_id": "F-4560r88501_fix", - "fixtext_fixref": "F-4560r88501_fix", - "ident": [ - { - "text": "CCE-27309-4", - "system": "http://cce.mitre.org" - }, - { - "text": "V-71961", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86585", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000213", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204436r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:16:26", - "idref": "xccdf_mil.disa.stig_rule_SV-204436r603261_rule", - "version": "RHEL-07-010480", - "severity": "high", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-27309-4", - "system": "http://cce.mitre.org" - }, - { - "text": "V-71961", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86585", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000213", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4560r88501_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:908" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:16:26", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204437", - "title": "The Red Hat Enterprise Linux operating system must require authentication upon booting into single-user and maintenance modes.", - "desc": "If the system does not require valid root authentication before it boots into single-user or maintenance mode, anyone who invokes single-user or maintenance mode is granted privileged access to all files on the system.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:92519", - "label": "check" - }, - { - "data": "Configure the operating system to require authentication upon booting into single-user and maintenance modes.\n\nAdd or modify the \"ExecStart\" line in \"/usr/lib/systemd/system/rescue.service\" to include \"/usr/sbin/sulogin\":\n\nExecStart=-/bin/sh -c \"/usr/sbin/sulogin; /usr/bin/systemctl --fail --no-block default\"", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000213" - ], - "nist": [ - "AC-3" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"If the system does not require valid root authentication before it boots into single-user or maintenance mode, anyone who invokes single-user or maintenance mode is granted privileged access to all files on the system.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204437", - "group_title": "SRG-OS-000080-GPOS-00048", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204437r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:92519" - } - }, - "fix_id": "F-4561r88504_fix", - "fixtext_fixref": "F-4561r88504_fix", - "ident": [ - { - "text": "V-77823", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-92519", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000213", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204437r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:16:26", - "idref": "xccdf_mil.disa.stig_rule_SV-204437r603261_rule", - "version": "RHEL-07-010481", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "V-77823", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-92519", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000213", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4561r88504_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:92519" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:16:26", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204438", - "title": "Red Hat Enterprise Linux operating systems version 7.2 or newer with a Basic Input/Output System (BIOS) must require authentication upon booting into single-user and maintenance modes.", - "desc": "If the system does not require valid root authentication before it boots into single-user or maintenance mode, anyone who invokes single-user or maintenance mode is granted privileged access to all files on the system. GRUB 2 is the default boot loader for RHEL 7 and is designed to require a password to boot into single-user mode or make modifications to the boot menu.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:95717", - "label": "check" - }, - { - "data": "Configure the system to encrypt the boot password for root.\n\nGenerate an encrypted grub2 password for root with the following command:\n\nNote: The hash generated is an example.\n\n# grub2-setpassword\nEnter password:\nConfirm password:\n\nEdit the /boot/grub2/grub.cfg file and add or modify the following lines in the \"### BEGIN /etc/grub.d/01_users ###\" section:\n\nset superusers=\"root\"\nexport superusers", - "label": "fix" - } - ], - "impact": 0.7, - "refs": [], - "tags": { - "cci": [ - "CCI-000213" - ], - "nist": [ - "AC-3" - ], - "severity": "high", - "description": "{\"VulnDiscussion\":\"If the system does not require valid root authentication before it boots into single-user or maintenance mode, anyone who invokes single-user or maintenance mode is granted privileged access to all files on the system. GRUB 2 is the default boot loader for RHEL 7 and is designed to require a password to boot into single-user mode or make modifications to the boot menu.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204438", - "group_title": "SRG-OS-000080-GPOS-00048", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204438r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:95717" - } - }, - "fix_id": "F-4562r88507_fix", - "fixtext_fixref": "F-4562r88507_fix", - "ident": [ - { - "text": "CCE-27309-4", - "system": "http://cce.mitre.org" - }, - { - "text": "V-81005", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-95717", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000213", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204438r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:16:26", - "idref": "xccdf_mil.disa.stig_rule_SV-204438r603261_rule", - "version": "RHEL-07-010482", - "severity": "high", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-27309-4", - "system": "http://cce.mitre.org" - }, - { - "text": "V-81005", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-95717", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000213", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4562r88507_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:95717" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:16:26", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204439", - "title": "Red Hat Enterprise Linux operating systems prior to version 7.2 using Unified Extensible Firmware Interface (UEFI) must require authentication upon booting into single-user and maintenance modes.", - "desc": "If the system does not require valid root authentication before it boots into single-user or maintenance mode, anyone who invokes single-user or maintenance mode is granted privileged access to all files on the system. GRUB 2 is the default boot loader for RHEL 7 and is designed to require a password to boot into single-user mode or make modifications to the boot menu.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:912", - "label": "check" - }, - { - "data": "Configure the system to encrypt the boot password for root.\n\nGenerate an encrypted grub2 password for root with the following command:\n\nNote: The hash generated is an example.\n\n# grub2-mkpasswd-pbkdf2\n\nEnter Password:\nReenter Password:\nPBKDF2 hash of your password is grub.pbkdf2.sha512.10000.F3A7CFAA5A51EED123BE8238C23B25B2A6909AFC9812F0D45\n\nEdit \"/etc/grub.d/40_custom\" and add the following lines below the comments:\n\n# vi /etc/grub.d/40_custom\n\nset superusers=\"root\"\n\npassword_pbkdf2 root {hash from grub2-mkpasswd-pbkdf2 command}\n\nGenerate a new \"grub.conf\" file with the new password with the following commands:\n\n# grub2-mkconfig --output=/tmp/grub2.cfg\n# mv /tmp/grub2.cfg /boot/efi/EFI/redhat/grub.cfg", - "label": "fix" - } - ], - "impact": 0.7, - "refs": [], - "tags": { - "cci": [ - "CCI-000213" - ], - "nist": [ - "AC-3" - ], - "severity": "high", - "description": "{\"VulnDiscussion\":\"If the system does not require valid root authentication before it boots into single-user or maintenance mode, anyone who invokes single-user or maintenance mode is granted privileged access to all files on the system. GRUB 2 is the default boot loader for RHEL 7 and is designed to require a password to boot into single-user mode or make modifications to the boot menu.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204439", - "group_title": "SRG-OS-000080-GPOS-00048", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204439r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:912" - } - }, - "fix_id": "F-4563r88510_fix", - "fixtext_fixref": "F-4563r88510_fix", - "ident": [ - { - "text": "CCE-80354-4", - "system": "http://cce.mitre.org" - }, - { - "text": "V-71963", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86587", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000213", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204439r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:16:26", - "idref": "xccdf_mil.disa.stig_rule_SV-204439r603261_rule", - "version": "RHEL-07-010490", - "severity": "high", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-80354-4", - "system": "http://cce.mitre.org" - }, - { - "text": "V-71963", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86587", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000213", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4563r88510_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:912" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:16:26", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204440", - "title": "Red Hat Enterprise Linux operating systems version 7.2 or newer using Unified Extensible Firmware Interface (UEFI) must require authentication upon booting into single-user and maintenance modes.", - "desc": "If the system does not require valid root authentication before it boots into single-user or maintenance mode, anyone who invokes single-user or maintenance mode is granted privileged access to all files on the system. GRUB 2 is the default boot loader for RHEL 7 and is designed to require a password to boot into single-user mode or make modifications to the boot menu.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:95719", - "label": "check" - }, - { - "data": "Configure the system to encrypt the boot password for root.\n\nGenerate an encrypted grub2 password for root with the following command:\n\nNote: The hash generated is an example.\n\n# grub2-setpassword\nEnter password:\nConfirm password:\n\nEdit the /boot/efi/EFI/redhat/grub.cfg file and add or modify the following lines in the \"### BEGIN /etc/grub.d/01_users ###\" section:\n\nset superusers=\"root\"\nexport superusers", - "label": "fix" - } - ], - "impact": 0.7, - "refs": [], - "tags": { - "cci": [ - "CCI-000213" - ], - "nist": [ - "AC-3" - ], - "severity": "high", - "description": "{\"VulnDiscussion\":\"If the system does not require valid root authentication before it boots into single-user or maintenance mode, anyone who invokes single-user or maintenance mode is granted privileged access to all files on the system. GRUB 2 is the default boot loader for RHEL 7 and is designed to require a password to boot into single-user mode or make modifications to the boot menu.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204440", - "group_title": "SRG-OS-000080-GPOS-00048", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204440r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:95719" - } - }, - "fix_id": "F-4564r88513_fix", - "fixtext_fixref": "F-4564r88513_fix", - "ident": [ - { - "text": "CCE-80354-4", - "system": "http://cce.mitre.org" - }, - { - "text": "V-81007", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-95719", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000213", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204440r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:16:26", - "idref": "xccdf_mil.disa.stig_rule_SV-204440r603261_rule", - "version": "RHEL-07-010491", - "severity": "high", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-80354-4", - "system": "http://cce.mitre.org" - }, - { - "text": "V-81007", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-95719", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000213", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4564r88513_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:95719" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:16:26", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204442", - "title": "The Red Hat Enterprise Linux operating system must not have the rsh-server package installed.", - "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\n\nThe rsh-server service provides an unencrypted remote access service that does not provide for the confidentiality and integrity of user passwords or the remote session and has very weak authentication.\n\nIf a privileged user were to log on using this service, the privileged user password could be compromised.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:1271", - "label": "check" - }, - { - "data": "Configure the operating system to disable non-essential capabilities by removing the rsh-server package from the system with the following command:\n\n# yum remove rsh-server", - "label": "fix" - } - ], - "impact": 0.7, - "refs": [], - "tags": { - "cci": [ - "CCI-000381" - ], - "nist": [ - "CM-7 a" - ], - "severity": "high", - "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\\n\\nThe rsh-server service provides an unencrypted remote access service that does not provide for the confidentiality and integrity of user passwords or the remote session and has very weak authentication.\\n\\nIf a privileged user were to log on using this service, the privileged user password could be compromised.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204442", - "group_title": "SRG-OS-000095-GPOS-00049", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204442r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:1271" - } - }, - "fix_id": "F-4566r88519_fix", - "fixtext_fixref": "F-4566r88519_fix", - "ident": [ - { - "text": "CCE-27342-5", - "system": "http://cce.mitre.org" - }, - { - "text": "V-71967", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86591", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000381", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204442r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:16:26", - "idref": "xccdf_mil.disa.stig_rule_SV-204442r603261_rule", - "version": "RHEL-07-020000", - "severity": "high", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-27342-5", - "system": "http://cce.mitre.org" - }, - { - "text": "V-71967", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86591", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000381", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4566r88519_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:1271" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:16:26", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204443", - "title": "The Red Hat Enterprise Linux operating system must not have the ypserv package installed.", - "desc": "Removing the \"ypserv\" package decreases the risk of the accidental (or intentional) activation of NIS or NIS+ services.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:1309", - "label": "check" - }, - { - "data": "Configure the operating system to disable non-essential capabilities by removing the \"ypserv\" package from the system with the following command:\n\n# yum remove ypserv", - "label": "fix" - } - ], - "impact": 0.7, - "refs": [], - "tags": { - "cci": [ - "CCI-000381" - ], - "nist": [ - "CM-7 a" - ], - "severity": "high", - "description": "{\"VulnDiscussion\":\"Removing the \\\"ypserv\\\" package decreases the risk of the accidental (or intentional) activation of NIS or NIS+ services.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204443", - "group_title": "SRG-OS-000095-GPOS-00049", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204443r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:1309" - } - }, - "fix_id": "F-4567r88522_fix", - "fixtext_fixref": "F-4567r88522_fix", - "ident": [ - { - "text": "CCE-27399-5", - "system": "http://cce.mitre.org" - }, - { - "text": "V-71969", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86593", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000381", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204443r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:16:27", - "idref": "xccdf_mil.disa.stig_rule_SV-204443r603261_rule", - "version": "RHEL-07-020010", - "severity": "high", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-27399-5", - "system": "http://cce.mitre.org" - }, - { - "text": "V-71969", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86593", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000381", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4567r88522_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:1309" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:16:27", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204445", - "title": "The Red Hat Enterprise Linux operating system must be configured so that a file integrity tool verifies the baseline operating system configuration at least weekly.", - "desc": "Unauthorized changes to the baseline configuration could make the system vulnerable to various attacks or allow unauthorized access to the operating system. Changes to operating system configurations can have unintended side effects, some of which may be relevant to security.\n\nDetecting such changes and providing an automated response can help avoid unintended, negative consequences that could ultimately affect the security state of the operating system. The operating system's Information Management Officer (IMO)/Information System Security Officer (ISSO) and System Administrators (SAs) must be notified via email and/or monitoring system trap when there is an unauthorized modification of a configuration item.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:525", - "label": "check" - }, - { - "data": "Configure the file integrity tool to run automatically on the system at least weekly. The following example output is generic. It will set cron to run AIDE daily, but other file integrity tools may be used:\n\n# more /etc/cron.daily/aide\n#!/bin/bash\n\n/usr/sbin/aide --check | /bin/mail -s \"$HOSTNAME - Daily aide integrity check run\" root@sysname.mil", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001744" - ], - "nist": [ - "CM-3 (5)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Unauthorized changes to the baseline configuration could make the system vulnerable to various attacks or allow unauthorized access to the operating system. Changes to operating system configurations can have unintended side effects, some of which may be relevant to security.\\n\\nDetecting such changes and providing an automated response can help avoid unintended, negative consequences that could ultimately affect the security state of the operating system. The operating system's Information Management Officer (IMO)/Information System Security Officer (ISSO) and System Administrators (SAs) must be notified via email and/or monitoring system trap when there is an unauthorized modification of a configuration item.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204445", - "group_title": "SRG-OS-000363-GPOS-00150", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204445r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:525" - } - }, - "fix_id": "F-36304r602622_fix", - "fixtext_fixref": "F-36304r602622_fix", - "ident": [ - { - "text": "CCE-26952-2", - "system": "http://cce.mitre.org" - }, - { - "text": "V-71973", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86597", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001744", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204445r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:16:29", - "idref": "xccdf_mil.disa.stig_rule_SV-204445r603261_rule", - "version": "RHEL-07-020030", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-26952-2", - "system": "http://cce.mitre.org" - }, - { - "text": "V-71973", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86597", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001744", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-36304r602622_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:525" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:16:29", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204447", - "title": "The Red Hat Enterprise Linux operating system must prevent the installation of software, patches, service packs, device drivers, or operating system components from a repository without verification they have been digitally signed using a certificate that is issued by a Certificate Authority (CA) that is recognized and approved by the organization.", - "desc": "Changes to any software components can have significant effects on the overall security of the operating system. This requirement ensures the software has not been tampered with and that it has been provided by a trusted vendor.\n\nAccordingly, patches, service packs, device drivers, or operating system components must be signed with a certificate recognized and approved by the organization.\n\nVerifying the authenticity of the software prior to installation validates the integrity of the patch or upgrade received from a vendor. This verifies the software has not been tampered with and that it has been provided by a trusted vendor. Self-signed certificates are disallowed by this requirement. The operating system should not have to verify the software again. This requirement does not mandate DoD certificates for this purpose; however, the certificate used to verify the software must be from an approved CA.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:1027", - "label": "check" - }, - { - "data": "Configure the operating system to verify the signature of packages from a repository prior to install by setting the following option in the \"/etc/yum.conf\" file:\n\ngpgcheck=1", - "label": "fix" - } - ], - "impact": 0.7, - "refs": [], - "tags": { - "cci": [ - "CCI-001749" - ], - "nist": [ - "CM-5 (3)" - ], - "severity": "high", - "description": "{\"VulnDiscussion\":\"Changes to any software components can have significant effects on the overall security of the operating system. This requirement ensures the software has not been tampered with and that it has been provided by a trusted vendor.\\n\\nAccordingly, patches, service packs, device drivers, or operating system components must be signed with a certificate recognized and approved by the organization.\\n\\nVerifying the authenticity of the software prior to installation validates the integrity of the patch or upgrade received from a vendor. This verifies the software has not been tampered with and that it has been provided by a trusted vendor. Self-signed certificates are disallowed by this requirement. The operating system should not have to verify the software again. This requirement does not mandate DoD certificates for this purpose; however, the certificate used to verify the software must be from an approved CA.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204447", - "group_title": "SRG-OS-000366-GPOS-00153", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204447r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:1027" - } - }, - "fix_id": "F-4571r88534_fix", - "fixtext_fixref": "F-4571r88534_fix", - "ident": [ - { - "text": "CCE-26989-4", - "system": "http://cce.mitre.org" - }, - { - "text": "V-71977", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86601", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001749", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204447r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:16:30", - "idref": "xccdf_mil.disa.stig_rule_SV-204447r603261_rule", - "version": "RHEL-07-020050", - "severity": "high", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-26989-4", - "system": "http://cce.mitre.org" - }, - { - "text": "V-71977", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86601", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001749", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4571r88534_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:1027" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:16:30", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204448", - "title": "The Red Hat Enterprise Linux operating system must prevent the installation of software, patches, service packs, device drivers, or operating system components of local packages without verification they have been digitally signed using a certificate that is issued by a Certificate Authority (CA) that is recognized and approved by the organization.", - "desc": "Changes to any software components can have significant effects on the overall security of the operating system. This requirement ensures the software has not been tampered with and that it has been provided by a trusted vendor.\n\nAccordingly, patches, service packs, device drivers, or operating system components must be signed with a certificate recognized and approved by the organization.\n\nVerifying the authenticity of the software prior to installation validates the integrity of the patch or upgrade received from a vendor. This verifies the software has not been tampered with and that it has been provided by a trusted vendor. Self-signed certificates are disallowed by this requirement. The operating system should not have to verify the software again. This requirement does not mandate DoD certificates for this purpose; however, the certificate used to verify the software must be from an approved CA.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:110", - "label": "check" - }, - { - "data": "Configure the operating system to verify the signature of local packages prior to install by setting the following option in the \"/etc/yum.conf\" file:\n\nlocalpkg_gpgcheck=1", - "label": "fix" - } - ], - "impact": 0.7, - "refs": [], - "tags": { - "cci": [ - "CCI-001749" - ], - "nist": [ - "CM-5 (3)" - ], - "severity": "high", - "description": "{\"VulnDiscussion\":\"Changes to any software components can have significant effects on the overall security of the operating system. This requirement ensures the software has not been tampered with and that it has been provided by a trusted vendor.\\n\\nAccordingly, patches, service packs, device drivers, or operating system components must be signed with a certificate recognized and approved by the organization.\\n\\nVerifying the authenticity of the software prior to installation validates the integrity of the patch or upgrade received from a vendor. This verifies the software has not been tampered with and that it has been provided by a trusted vendor. Self-signed certificates are disallowed by this requirement. The operating system should not have to verify the software again. This requirement does not mandate DoD certificates for this purpose; however, the certificate used to verify the software must be from an approved CA.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204448", - "group_title": "SRG-OS-000366-GPOS-00153", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204448r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:110" - } - }, - "fix_id": "F-4572r88537_fix", - "fixtext_fixref": "F-4572r88537_fix", - "ident": [ - { - "text": "CCE-80347-8", - "system": "http://cce.mitre.org" - }, - { - "text": "V-71979", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86603", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001749", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204448r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:16:30", - "idref": "xccdf_mil.disa.stig_rule_SV-204448r603261_rule", - "version": "RHEL-07-020060", - "severity": "high", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-80347-8", - "system": "http://cce.mitre.org" - }, - { - "text": "V-71979", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86603", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001749", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4572r88537_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:110" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:16:30", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204449", - "title": "The Red Hat Enterprise Linux operating system must be configured to disable USB mass storage.", - "desc": "USB mass storage permits easy introduction of unknown devices, thereby facilitating malicious activity.\n\nSatisfies: SRG-OS-000114-GPOS-00059, SRG-OS-000378-GPOS-00163, SRG-OS-000480-GPOS-00227", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:1141", - "label": "check" - }, - { - "data": "Configure the operating system to disable the ability to use the USB Storage kernel module.\n\nCreate a file under \"/etc/modprobe.d\" with the following command:\n\n# touch /etc/modprobe.d/usb-storage.conf\n\nAdd the following line to the created file:\n\ninstall usb-storage /bin/true\n\nConfigure the operating system to disable the ability to use USB mass storage devices.\n\n# vi /etc/modprobe.d/blacklist.conf\n\nAdd or update the line:\n\nblacklist usb-storage", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001958", - "CCI-000778", - "CCI-000366" - ], - "nist": [ - "IA-3", - "IA-3", - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"USB mass storage permits easy introduction of unknown devices, thereby facilitating malicious activity.\\n\\nSatisfies: SRG-OS-000114-GPOS-00059, SRG-OS-000378-GPOS-00163, SRG-OS-000480-GPOS-00227\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204449", - "group_title": "SRG-OS-000114-GPOS-00059", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204449r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:1141" - } - }, - "fix_id": "F-4573r462538_fix", - "fixtext_fixref": "F-4573r462538_fix", - "ident": [ - { - "text": "V-71983", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86607", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001958", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000778", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204449r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:16:30", - "idref": "xccdf_mil.disa.stig_rule_SV-204449r603261_rule", - "version": "RHEL-07-020100", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "V-71983", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86607", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001958", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000778", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4573r462538_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:1141" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:16:30", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204450", - "title": "The Red Hat Enterprise Linux operating system must be configured so that the Datagram Congestion Control Protocol (DCCP) kernel module is disabled unless required.", - "desc": "Disabling DCCP protects the system against exploitation of any flaws in the protocol implementation.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:92517", - "label": "check" - }, - { - "data": "Configure the operating system to disable the ability to use the DCCP kernel module.\n\nCreate a file under \"/etc/modprobe.d\" with the following command:\n\n# touch /etc/modprobe.d/dccp.conf\n\nAdd the following line to the created file:\n\ninstall dccp /bin/true\n\nEnsure that the DCCP module is blacklisted:\n\n# vi /etc/modprobe.d/blacklist.conf\n\nAdd or update the line:\n\nblacklist dccp", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001958" - ], - "nist": [ - "IA-3" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Disabling DCCP protects the system against exploitation of any flaws in the protocol implementation.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204450", - "group_title": "SRG-OS-000378-GPOS-00163", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204450r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:92517" - } - }, - "fix_id": "F-4574r88543_fix", - "fixtext_fixref": "F-4574r88543_fix", - "ident": [ - { - "text": "SV-92517", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-77821", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001958", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204450r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:16:30", - "idref": "xccdf_mil.disa.stig_rule_SV-204450r603261_rule", - "version": "RHEL-07-020101", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "SV-92517", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-77821", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001958", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4574r88543_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:92517" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:16:30", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204451", - "title": "The Red Hat Enterprise Linux operating system must disable the file system automounter unless required.", - "desc": "Automatically mounting file systems permits easy introduction of unknown devices, thereby facilitating malicious activity.\n\nSatisfies: SRG-OS-000114-GPOS-00059, SRG-OS-000378-GPOS-00163, SRG-OS-000480-GPOS-00227", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:86609", - "label": "check" - }, - { - "data": "Configure the operating system to disable the ability to automount devices.\n\nTurn off the automount service with the following commands:\n\n# systemctl stop autofs\n# systemctl disable autofs\n\nIf \"autofs\" is required for Network File System (NFS), it must be documented with the ISSO.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001958", - "CCI-000366", - "CCI-000778" - ], - "nist": [ - "IA-3", - "CM-6 b", - "IA-3" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Automatically mounting file systems permits easy introduction of unknown devices, thereby facilitating malicious activity.\\n\\nSatisfies: SRG-OS-000114-GPOS-00059, SRG-OS-000378-GPOS-00163, SRG-OS-000480-GPOS-00227\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204451", - "group_title": "SRG-OS-000114-GPOS-00059", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204451r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:86609" - } - }, - "fix_id": "F-4575r88546_fix", - "fixtext_fixref": "F-4575r88546_fix", - "ident": [ - { - "text": "CCE-27498-5", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86609", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71985", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001958", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000778", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204451r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:16:30", - "idref": "xccdf_mil.disa.stig_rule_SV-204451r603261_rule", - "version": "RHEL-07-020110", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-27498-5", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86609", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71985", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001958", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000778", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4575r88546_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:86609" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:16:30", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204452", - "title": "The Red Hat Enterprise Linux operating system must remove all software components after updated versions have been installed.", - "desc": "Previous versions of software components that are not removed from the information system after updates have been installed may be exploited by adversaries. Some information technology products may remove older versions of software automatically from the information system.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:108", - "label": "check" - }, - { - "data": "Configure the operating system to remove all software components after updated versions have been installed.\n\nSet the \"clean_requirements_on_remove\" option to \"1\" in the \"/etc/yum.conf\" file:\n\nclean_requirements_on_remove=1", - "label": "fix" - } - ], - "impact": 0.3, - "refs": [], - "tags": { - "cci": [ - "CCI-002617" - ], - "nist": [ - "SI-2 (6)" - ], - "severity": "low", - "description": "{\"VulnDiscussion\":\"Previous versions of software components that are not removed from the information system after updates have been installed may be exploited by adversaries. Some information technology products may remove older versions of software automatically from the information system.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204452", - "group_title": "SRG-OS-000437-GPOS-00194", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204452r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:108" - } - }, - "fix_id": "F-4576r88549_fix", - "fixtext_fixref": "F-4576r88549_fix", - "ident": [ - { - "text": "CCE-80346-0", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86611", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71987", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-002617", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204452r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:16:30", - "idref": "xccdf_mil.disa.stig_rule_SV-204452r603261_rule", - "version": "RHEL-07-020200", - "severity": "low", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-80346-0", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86611", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71987", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-002617", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4576r88549_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:108" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:16:30", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204457", - "title": "The Red Hat Enterprise Linux operating system must define default permissions for all authenticated users in such a way that the user can only read and modify their own files.", - "desc": "Setting the most restrictive default permissions ensures that when new accounts are created, they do not have unnecessary access.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:518", - "label": "check" - }, - { - "data": "Configure the operating system to define default permissions for all authenticated users in such a way that the user can only read and modify their own files.\n\nAdd or edit the line for the \"UMASK\" parameter in \"/etc/login.defs\" file to \"077\":\n\nUMASK 077", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Setting the most restrictive default permissions ensures that when new accounts are created, they do not have unnecessary access.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204457", - "group_title": "SRG-OS-000480-GPOS-00228", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204457r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-export": { - "value-id": "xccdf_mil.disa.stig_value_var_accounts_user_umask", - "export-name": "oval:mil.disa.stig.rhel7:var:4211" - }, - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:518" - } - }, - "fix_id": "F-4581r88564_fix", - "fixtext_fixref": "F-4581r88564_fix", - "ident": [ - { - "text": "CCE-80205-8", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86619", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71995", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204457r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:16:30", - "idref": "xccdf_mil.disa.stig_rule_SV-204457r603261_rule", - "version": "RHEL-07-020240", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-80205-8", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86619", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-71995", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4581r88564_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-export": { - "value-id": "xccdf_mil.disa.stig_value_var_accounts_user_umask", - "export-name": "oval:mil.disa.stig.rhel7:var:4211" - }, - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:518" - } - } - }, - "value": { - "Id": "xccdf_mil.disa.stig_value_var_accounts_user_umask", - "id": "xccdf_mil.disa.stig_value_var_accounts_user_umask", - "cdf:title": "Sensible umask", - "cdf:description": "Enter default user umask", - "cdf:value": [ - 77, - { - "text": 7, - "selector": "007" - }, - { - "text": 22, - "selector": "022" - }, - { - "text": 27, - "selector": "027" - }, - { - "text": 77, - "selector": "077" - } - ] - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:16:30", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204458", - "title": "The Red Hat Enterprise Linux operating system must be a vendor supported release.", - "desc": "An operating system release is considered \"supported\" if the vendor continues to provide security patches for the product. With an unsupported release, it will not be possible to resolve security issues discovered in the system software.\n\nRed Hat offers the Extended Update Support (EUS) Add-On to a Red Hat Enterprise Linux subscription, for a fee, for those customers who wish to standardize on a specific minor release for an extended period. RHEL 7.7 marks the final minor release that EUS will be available.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:169", - "label": "check" - }, - { - "data": "Upgrade to a supported version of the operating system.", - "label": "fix" - } - ], - "impact": 0.7, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "high", - "description": "{\"VulnDiscussion\":\"An operating system release is considered \\\"supported\\\" if the vendor continues to provide security patches for the product. With an unsupported release, it will not be possible to resolve security issues discovered in the system software.\\n\\nRed Hat offers the Extended Update Support (EUS) Add-On to a Red Hat Enterprise Linux subscription, for a fee, for those customers who wish to standardize on a specific minor release for an extended period. RHEL 7.7 marks the final minor release that EUS will be available.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204458", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204458r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:169" - } - }, - "fix_id": "F-4582r462547_fix", - "fixtext_fixref": "F-4582r462547_fix", - "ident": [ - { - "text": "CCE-80349-4", - "system": "http://cce.mitre.org" - }, - { - "text": "V-71997", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86621", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204458r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:16:30", - "idref": "xccdf_mil.disa.stig_rule_SV-204458r603261_rule", - "version": "RHEL-07-020250", - "severity": "high", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-80349-4", - "system": "http://cce.mitre.org" - }, - { - "text": "V-71997", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86621", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4582r462547_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:169" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:16:30", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204461", - "title": "The Red Hat Enterprise Linux operating system must be configured so that all Group Identifiers (GIDs) referenced in the /etc/passwd file are defined in the /etc/group file.", - "desc": "If a user is assigned the GID of a group not existing on the system, and a group with the GID is subsequently created, the user may have unintended rights to any files associated with the group.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:1117", - "label": "check" - }, - { - "data": "Configure the system to define all GIDs found in the \"/etc/passwd\" file by modifying the \"/etc/group\" file to add any non-existent group referenced in the \"/etc/passwd\" file, or change the GIDs referenced in the \"/etc/passwd\" file to a group that exists in \"/etc/group\".", - "label": "fix" - } - ], - "impact": 0.3, - "refs": [], - "tags": { - "cci": [ - "CCI-000764" - ], - "nist": [ - "IA-2" - ], - "severity": "low", - "description": "{\"VulnDiscussion\":\"If a user is assigned the GID of a group not existing on the system, and a group with the GID is subsequently created, the user may have unintended rights to any files associated with the group.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204461", - "group_title": "SRG-OS-000104-GPOS-00051", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204461r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:1117" - } - }, - "fix_id": "F-4585r88576_fix", - "fixtext_fixref": "F-4585r88576_fix", - "ident": [ - { - "text": "CCE-27503-2", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72003", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86627", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000764", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204461r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:16:36", - "idref": "xccdf_mil.disa.stig_rule_SV-204461r603261_rule", - "version": "RHEL-07-020300", - "severity": "low", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-27503-2", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72003", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86627", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000764", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4585r88576_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:1117" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:16:36", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204462", - "title": "The Red Hat Enterprise Linux operating system must be configured so that the root account must be the only account having unrestricted access to the system.", - "desc": "If an account other than root also has a User Identifier (UID) of \"0\", it has root authority, giving that account unrestricted access to the entire operating system. Multiple accounts with a UID of \"0\" afford an opportunity for potential intruders to guess a password for a privileged account.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:457", - "label": "check" - }, - { - "data": "Change the UID of any account on the system, other than root, that has a UID of \"0\".\n\nIf the account is associated with system commands or applications, the UID should be changed to one greater than \"0\" but less than \"1000\". Otherwise, assign a UID of greater than \"1000\" that has not already been assigned.", - "label": "fix" - } - ], - "impact": 0.7, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "high", - "description": "{\"VulnDiscussion\":\"If an account other than root also has a User Identifier (UID) of \\\"0\\\", it has root authority, giving that account unrestricted access to the entire operating system. Multiple accounts with a UID of \\\"0\\\" afford an opportunity for potential intruders to guess a password for a privileged account.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204462", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204462r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:457" - } - }, - "fix_id": "F-4586r88579_fix", - "fixtext_fixref": "F-4586r88579_fix", - "ident": [ - { - "text": "CCE-27175-9", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86629", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72005", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204462r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:16:41", - "idref": "xccdf_mil.disa.stig_rule_SV-204462r603261_rule", - "version": "RHEL-07-020310", - "severity": "high", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-27175-9", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86629", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72005", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4586r88579_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:457" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:16:41", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204466", - "title": "The Red Hat Enterprise Linux operating system must be configured so that all local interactive user accounts, upon creation, are assigned a home directory.", - "desc": "If local interactive users are not assigned a valid home directory, there is no place for the storage and control of files they should own.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:447", - "label": "check" - }, - { - "data": "Configure the operating system to assign home directories to all new local interactive users by setting the \"CREATE_HOME\" parameter in \"/etc/login.defs\" to \"yes\" as follows.\n\nCREATE_HOME yes", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"If local interactive users are not assigned a valid home directory, there is no place for the storage and control of files they should own.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204466", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204466r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:447" - } - }, - "fix_id": "F-4590r88591_fix", - "fixtext_fixref": "F-4590r88591_fix", - "ident": [ - { - "text": "CCE-80434-4", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86637", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72013", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204466r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:16:41", - "idref": "xccdf_mil.disa.stig_rule_SV-204466r603261_rule", - "version": "RHEL-07-020610", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-80434-4", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86637", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72013", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4590r88591_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:447" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:16:41", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204467", - "title": "The Red Hat Enterprise Linux operating system must be configured so that all local interactive users have a home directory assigned and defined in the /etc/passwd file.", - "desc": "If local interactive users are not assigned a valid home directory, there is no place for the storage and control of files they should own.\n\nIn addition, if a local interactive user has a home directory defined that does not exist, the user may be given access to the / directory as the current working directory upon logon. This could create a Denial of Service because the user would not be able to access their logon configuration files, and it may give them visibility to system files they normally would not be able to access.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:86639", - "label": "check" - }, - { - "data": "Create home directories to all local interactive users that currently do not have a home directory assigned. Use the following commands to create the user home directory assigned in \"/etc/ passwd\":\n\nNote: The example will be for the user smithj, who has a home directory of \"/home/smithj\", a UID of \"smithj\", and a Group Identifier (GID) of \"users\" assigned in \"/etc/passwd\".\n\n# mkdir /home/smithj\n# chown smithj /home/smithj\n# chgrp users /home/smithj\n# chmod 0750 /home/smithj", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"If local interactive users are not assigned a valid home directory, there is no place for the storage and control of files they should own.\\n\\nIn addition, if a local interactive user has a home directory defined that does not exist, the user may be given access to the / directory as the current working directory upon logon. This could create a Denial of Service because the user would not be able to access their logon configuration files, and it may give them visibility to system files they normally would not be able to access.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204467", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204467r603826_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:86639" - } - }, - "fix_id": "F-4591r462550_fix", - "fixtext_fixref": "F-4591r462550_fix", - "ident": [ - { - "text": "V-72015", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86639", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204467r603826_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:16:41", - "idref": "xccdf_mil.disa.stig_rule_SV-204467r603826_rule", - "version": "RHEL-07-020620", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "V-72015", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86639", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4591r462550_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:86639" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:16:41", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204482", - "title": "The Red Hat Enterprise Linux operating system must prevent files with the setuid and setgid bit set from being executed on file systems that are being imported via Network File System (NFS).", - "desc": "The \"nosuid\" mount option causes the system to not execute \"setuid\" and \"setgid\" files with owner privileges. This option must be used for mounting any file system not containing approved \"setuid\" and \"setguid\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:1186", - "label": "check" - }, - { - "data": "Configure the \"/etc/fstab\" to use the \"nosuid\" option on file systems that are being imported via NFS.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"The \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204482", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204482r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:1186" - } - }, - "fix_id": "F-4606r88639_fix", - "fixtext_fixref": "F-4606r88639_fix", - "ident": [ - { - "text": "CCE-80240-5", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86669", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72045", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204482r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:16:41", - "idref": "xccdf_mil.disa.stig_rule_SV-204482r603261_rule", - "version": "RHEL-07-021020", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-80240-5", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86669", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72045", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4606r88639_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:1186" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:16:41", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204483", - "title": "The Red Hat Enterprise Linux operating system must prevent binary files from being executed on file systems that are being imported via Network File System (NFS).", - "desc": "The \"noexec\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:1178", - "label": "check" - }, - { - "data": "Configure the \"/etc/fstab\" to use the \"noexec\" option on file systems that are being imported via NFS.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"The \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204483", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204483r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:1178" - } - }, - "fix_id": "F-4607r88642_fix", - "fixtext_fixref": "F-4607r88642_fix", - "ident": [ - { - "text": "CCE-80436-9", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-87813", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-73161", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204483r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:16:41", - "idref": "xccdf_mil.disa.stig_rule_SV-204483r603261_rule", - "version": "RHEL-07-021021", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-80436-9", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-87813", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-73161", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4607r88642_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:1178" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:16:41", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204487", - "title": "The Red Hat Enterprise Linux operating system must be configured so that all world-writable directories are group-owned by root, sys, bin, or an application group.", - "desc": "If a world-writable directory has the sticky bit set and is not group-owned by root, sys, bin, or an application Group Identifier (GID), unauthorized users may be able to modify files created by others.\n\nThe only authorized public directories are those temporary directories supplied with the system or those designed to be temporary file repositories. The setting is normally reserved for directories used by the system and by users for temporary file storage, (e.g., /tmp), and for directories requiring global read/write access.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:1009", - "label": "check" - }, - { - "data": "All directories in local partitions which are world-writable should be group-owned by root or another system account. If any world-writable directories are not group-owned by a system account, this should be investigated. Following this, the directories should be deleted or assigned to an appropriate group.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"If a world-writable directory has the sticky bit set and is not group-owned by root, sys, bin, or an application Group Identifier (GID), unauthorized users may be able to modify files created by others.\\n\\nThe only authorized public directories are those temporary directories supplied with the system or those designed to be temporary file repositories. The setting is normally reserved for directories used by the system and by users for temporary file storage, (e.g., /tmp), and for directories requiring global read/write access.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204487", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204487r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:1009" - } - }, - "fix_id": "F-36308r602634_fix", - "fixtext_fixref": "F-36308r602634_fix", - "ident": [ - { - "text": "CCE-80136-5", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86671", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72047", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204487r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:16:41", - "idref": "xccdf_mil.disa.stig_rule_SV-204487r603261_rule", - "version": "RHEL-07-021030", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-80136-5", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86671", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72047", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-36308r602634_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:1009" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:16:41", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204490", - "title": "The Red Hat Enterprise Linux operating system must be configured so that the cron.allow file, if it exists, is owned by root.", - "desc": "If the owner of the \"cron.allow\" file is not set to root, the possibility exists for an unauthorized user to view or to edit sensitive information.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:116", - "label": "check" - }, - { - "data": "Set the owner on the \"/etc/cron.allow\" file to root with the following command:\n\n# chown root /etc/cron.allow", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"If the owner of the \\\"cron.allow\\\" file is not set to root, the possibility exists for an unauthorized user to view or to edit sensitive information.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204490", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204490r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:116" - } - }, - "fix_id": "F-4614r88663_fix", - "fixtext_fixref": "F-4614r88663_fix", - "ident": [ - { - "text": "CCE-80378-3", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86677", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72053", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204490r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:12", - "idref": "xccdf_mil.disa.stig_rule_SV-204490r603261_rule", - "version": "RHEL-07-021110", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-80378-3", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86677", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72053", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4614r88663_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:116" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:12", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204491", - "title": "The Red Hat Enterprise Linux operating system must be configured so that the cron.allow file, if it exists, is group-owned by root.", - "desc": "If the group owner of the \"cron.allow\" file is not set to root, sensitive information could be viewed or edited by unauthorized users.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:114", - "label": "check" - }, - { - "data": "Set the group owner on the \"/etc/cron.allow\" file to root with the following command:\n\n# chgrp root /etc/cron.allow", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"If the group owner of the \\\"cron.allow\\\" file is not set to root, sensitive information could be viewed or edited by unauthorized users.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204491", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204491r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:114" - } - }, - "fix_id": "F-4615r88666_fix", - "fixtext_fixref": "F-4615r88666_fix", - "ident": [ - { - "text": "CCE-80379-1", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86679", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72055", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204491r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:12", - "idref": "xccdf_mil.disa.stig_rule_SV-204491r603261_rule", - "version": "RHEL-07-021120", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-80379-1", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86679", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72055", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4615r88666_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:114" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:12", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204493", - "title": "The Red Hat Enterprise Linux operating system must be configured so that a separate file system is used for user home directories (such as /home or an equivalent).", - "desc": "The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:1311", - "label": "check" - }, - { - "data": "Migrate the \"/home\" directory onto a separate file system/partition.", - "label": "fix" - } - ], - "impact": 0.3, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "low", - "description": "{\"VulnDiscussion\":\"The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204493", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204493r603840_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:1311" - } - }, - "fix_id": "F-4617r88672_fix", - "fixtext_fixref": "F-4617r88672_fix", - "ident": [ - { - "text": "CCE-80144-9", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86683", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72059", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204493r603840_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:12", - "idref": "xccdf_mil.disa.stig_rule_SV-204493r603840_rule", - "version": "RHEL-07-021310", - "severity": "low", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-80144-9", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86683", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72059", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4617r88672_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:1311" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:12", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204494", - "title": "The Red Hat Enterprise Linux operating system must use a separate file system for /var.", - "desc": "The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:1315", - "label": "check" - }, - { - "data": "Migrate the \"/var\" path onto a separate file system.", - "label": "fix" - } - ], - "impact": 0.3, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "low", - "description": "{\"VulnDiscussion\":\"The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204494", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204494r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:1315" - } - }, - "fix_id": "F-4618r88675_fix", - "fixtext_fixref": "F-4618r88675_fix", - "ident": [ - { - "text": "CCE-26404-4", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86685", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72061", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204494r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:12", - "idref": "xccdf_mil.disa.stig_rule_SV-204494r603261_rule", - "version": "RHEL-07-021320", - "severity": "low", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-26404-4", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86685", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72061", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4618r88675_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:1315" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:12", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204495", - "title": "The Red Hat Enterprise Linux operating system must use a separate file system for the system audit data path.", - "desc": "The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:1319", - "label": "check" - }, - { - "data": "Migrate the system audit data path onto a separate file system.", - "label": "fix" - } - ], - "impact": 0.3, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "low", - "description": "{\"VulnDiscussion\":\"The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204495", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204495r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:1319" - } - }, - "fix_id": "F-4619r88678_fix", - "fixtext_fixref": "F-4619r88678_fix", - "ident": [ - { - "text": "SV-86687", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72063", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204495r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:12", - "idref": "xccdf_mil.disa.stig_rule_SV-204495r603261_rule", - "version": "RHEL-07-021330", - "severity": "low", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "SV-86687", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72063", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4619r88678_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:1319" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:12", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204496", - "title": "The Red Hat Enterprise Linux operating system must use a separate file system for /tmp (or equivalent).", - "desc": "The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:86689", - "label": "check" - }, - { - "data": "Start the \"tmp.mount\" service with the following command:\n\n# systemctl enable tmp.mount\n\nOR\n\nEdit the \"/etc/fstab\" file and ensure the \"/tmp\" directory is defined in the fstab with a device and mount point.", - "label": "fix" - } - ], - "impact": 0.3, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "low", - "description": "{\"VulnDiscussion\":\"The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204496", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204496r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:86689" - } - }, - "fix_id": "F-36309r602637_fix", - "fixtext_fixref": "F-36309r602637_fix", - "ident": [ - { - "text": "CCE-27173-4", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86689", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72065", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204496r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:12", - "idref": "xccdf_mil.disa.stig_rule_SV-204496r603261_rule", - "version": "RHEL-07-021340", - "severity": "low", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-27173-4", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86689", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72065", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-36309r602637_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:86689" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:12", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204497", - "title": "The Red Hat Enterprise Linux operating system must implement NIST FIPS-validated cryptography for the following: to provision digital signatures, to generate cryptographic hashes, and to protect data requiring data-at-rest protections in accordance with applicable federal laws, Executive Orders, directives, policies, regulations, and standards.", - "desc": "Use of weak or untested encryption algorithms undermines the purposes of using encryption to protect data. The operating system must implement cryptographic modules adhering to the higher standards approved by the federal government since this provides assurance they have been tested and validated.\n\nSatisfies: SRG-OS-000033-GPOS-00014, SRG-OS-000185-GPOS-00079, SRG-OS-000396-GPOS-00176, SRG-OS-000405-GPOS-00184, SRG-OS-000478-GPOS-00223", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:126", - "label": "check" - }, - { - "data": "Configure the operating system to implement DoD-approved encryption by installing the dracut-fips package.\n\nTo enable strict FIPS compliance, the fips=1 kernel option needs to be added to the kernel command line during system installation so key generation is done with FIPS-approved algorithms and continuous monitoring tests in place.\n\nConfigure the operating system to implement DoD-approved encryption by following the steps below:\n\nThe fips=1 kernel option needs to be added to the kernel command line during system installation so that key generation is done with FIPS-approved algorithms and continuous monitoring tests in place. Users should also ensure that the system has plenty of entropy during the installation process by moving the mouse around, or if no mouse is available, ensuring that many keystrokes are typed. The recommended amount of keystrokes is 256 and more. Less than 256 keystrokes may generate a non-unique key.\n\nInstall the dracut-fips package with the following command:\n\n# yum install dracut-fips\n\nRecreate the \"initramfs\" file with the following command:\n\nNote: This command will overwrite the existing \"initramfs\" file.\n\n# dracut -f\n\nModify the kernel command line of the current kernel in the \"grub.cfg\" file by adding the following option to the GRUB_CMDLINE_LINUX key in the \"/etc/default/grub\" file and then rebuild the \"grub.cfg\" file:\n\nfips=1\n\nChanges to \"/etc/default/grub\" require rebuilding the \"grub.cfg\" file as follows:\n\nOn BIOS-based machines, use the following command:\n\n# grub2-mkconfig -o /boot/grub2/grub.cfg\n\nOn UEFI-based machines, use the following command:\n\n# grub2-mkconfig -o /boot/efi/EFI/redhat/grub.cfg\n\nIf /boot or /boot/efi reside on separate partitions, the kernel parameter boot= must be added to the kernel command line. You can identify a partition by running the df /boot or df /boot/efi command:\n\n# df /boot\nFilesystem 1K-blocks Used Available Use% Mounted on\n/dev/sda1 495844 53780 416464 12% /boot\n\nTo ensure the \"boot=\" configuration option will work even if device naming changes occur between boots, identify the universally unique identifier (UUID) of the partition with the following command:\n\n# blkid /dev/sda1\n/dev/sda1: UUID=\"05c000f1-a213-759e-c7a2-f11b7424c797\" TYPE=\"ext4\"\n\nFor the example above, append the following string to the kernel command line:\n\nboot=UUID=05c000f1-a213-759e-c7a2-f11b7424c797\n\nIf the file /etc/system-fips does not exists, recreate it:\n\n# touch /etc/ system-fips\n\nReboot the system for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.7, - "refs": [], - "tags": { - "cci": [ - "CCI-001199", - "CCI-000068", - "CCI-002450", - "CCI-002476" - ], - "nist": [ - "SC-28", - "AC-17 (2)", - "SC-13 b", - "SC-28 (1)" - ], - "severity": "high", - "description": "{\"VulnDiscussion\":\"Use of weak or untested encryption algorithms undermines the purposes of using encryption to protect data. The operating system must implement cryptographic modules adhering to the higher standards approved by the federal government since this provides assurance they have been tested and validated.\\n\\nSatisfies: SRG-OS-000033-GPOS-00014, SRG-OS-000185-GPOS-00079, SRG-OS-000396-GPOS-00176, SRG-OS-000405-GPOS-00184, SRG-OS-000478-GPOS-00223\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204497", - "group_title": "SRG-OS-000033-GPOS-00014", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204497r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:126" - } - }, - "fix_id": "F-36310r602640_fix", - "fixtext_fixref": "F-36310r602640_fix", - "ident": [ - { - "text": "CCE-80359-3", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86691", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72067", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001199", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000068", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002450", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002476", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204497r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:12", - "idref": "xccdf_mil.disa.stig_rule_SV-204497r603261_rule", - "version": "RHEL-07-021350", - "severity": "high", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-80359-3", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86691", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72067", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001199", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000068", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002450", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002476", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-36310r602640_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:126" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:12", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204502", - "title": "The Red Hat Enterprise Linux operating system must not have the telnet-server package installed.", - "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\n\nExamples of non-essential capabilities include, but are not limited to, games, software packages, tools, and demonstration software not related to requirements or providing a wide array of functionality not required for every mission, but which cannot be disabled.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:1292", - "label": "check" - }, - { - "data": "Configure the operating system to disable non-essential capabilities by removing the telnet-server package from the system with the following command:\n\n# yum remove telnet-server", - "label": "fix" - } - ], - "impact": 0.7, - "refs": [], - "tags": { - "cci": [ - "CCI-000381" - ], - "nist": [ - "CM-7 a" - ], - "severity": "high", - "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\\n\\nExamples of non-essential capabilities include, but are not limited to, games, software packages, tools, and demonstration software not related to requirements or providing a wide array of functionality not required for every mission, but which cannot be disabled.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204502", - "group_title": "SRG-OS-000095-GPOS-00049", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204502r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:1292" - } - }, - "fix_id": "F-4626r88699_fix", - "fixtext_fixref": "F-4626r88699_fix", - "ident": [ - { - "text": "CCE-27165-0", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86701", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72077", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000381", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204502r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:15", - "idref": "xccdf_mil.disa.stig_rule_SV-204502r603261_rule", - "version": "RHEL-07-021710", - "severity": "high", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-27165-0", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86701", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72077", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000381", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4626r88699_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:1292" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:15", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204503", - "title": "The Red Hat Enterprise Linux operating system must be configured so that auditing is configured to produce records containing information to establish what type of events occurred, where the events occurred, the source of the events, and the outcome of the events. These audit records must also identify individual identities of group account users.", - "desc": "Without establishing what type of events occurred, it would be difficult to establish, correlate, and investigate the events leading up to an outage or attack.\n\nAudit record content that may be necessary to satisfy this requirement includes, for example, time stamps, source and destination addresses, user/process identifiers, event descriptions, success/fail indications, filenames involved, and access control or flow control rules invoked.\n\nAssociating event types with detected events in the operating system audit logs provides a means of investigating an attack; recognizing resource utilization or capacity thresholds; or identifying an improperly configured operating system.\n\nSatisfies: SRG-OS-000038-GPOS-00016, SRG-OS-000039-GPOS-00017, SRG-OS-000042-GPOS-00021, SRG-OS-000254-GPOS-00095, SRG-OS-000255-GPOS-00096", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:86703", - "label": "check" - }, - { - "data": "Configure the operating system to produce audit records containing information to establish when (date and time) the events occurred.\n\nEnable the auditd service with the following command:\n\n# systemctl start auditd.service", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000126", - "CCI-000131" - ], - "nist": [ - "AU-2 c", - "AU-3 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without establishing what type of events occurred, it would be difficult to establish, correlate, and investigate the events leading up to an outage or attack.\\n\\nAudit record content that may be necessary to satisfy this requirement includes, for example, time stamps, source and destination addresses, user/process identifiers, event descriptions, success/fail indications, filenames involved, and access control or flow control rules invoked.\\n\\nAssociating event types with detected events in the operating system audit logs provides a means of investigating an attack; recognizing resource utilization or capacity thresholds; or identifying an improperly configured operating system.\\n\\nSatisfies: SRG-OS-000038-GPOS-00016, SRG-OS-000039-GPOS-00017, SRG-OS-000042-GPOS-00021, SRG-OS-000254-GPOS-00095, SRG-OS-000255-GPOS-00096\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204503", - "group_title": "SRG-OS-000038-GPOS-00016", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204503r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:86703" - } - }, - "fix_id": "F-36311r602643_fix", - "fixtext_fixref": "F-36311r602643_fix", - "ident": [ - { - "text": "CCE-27407-6", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86703", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72079", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000126", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000131", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204503r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:16", - "idref": "xccdf_mil.disa.stig_rule_SV-204503r603261_rule", - "version": "RHEL-07-030000", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-27407-6", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86703", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72079", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000126", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000131", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-36311r602643_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:86703" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:16", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204504", - "title": "The Red Hat Enterprise Linux operating system must shut down upon audit processing failure, unless availability is an overriding concern. If availability is a concern, the system must alert the designated staff (System Administrator [SA] and Information System Security Officer [ISSO] at a minimum) in the event of an audit processing failure.", - "desc": "It is critical for the appropriate personnel to be aware if a system is at risk of failing to process audit logs as required. Without this notification, the security personnel may be unaware of an impending failure of the audit capability, and system operation may be adversely affected.\n\nAudit processing failures include software/hardware errors, failures in the audit capturing mechanisms, and audit storage capacity being reached or exceeded.\n\nThis requirement applies to each audit data storage repository (i.e., distinct information system component where audit records are stored), the centralized audit storage capacity of organizations (i.e., all audit data storage repositories combined), or both.\n\nSatisfies: SRG-OS-000046-GPOS-00022, SRG-OS-000047-GPOS-00023", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:776", - "label": "check" - }, - { - "data": "Configure the operating system to shut down in the event of an audit processing failure.\n\nAdd or correct the option to shut down the operating system with the following command:\n\n# auditctl -f 2\n\nEdit the \"/etc/audit/rules.d/audit.rules\" file and add the following line:\n\n-f 2\n\nIf availability has been determined to be more important, and this decision is documented with the ISSO, configure the operating system to notify system administration staff and ISSO staff in the event of an audit processing failure with the following command:\n\n# auditctl -f 1\n\nEdit the \"/etc/audit/rules.d/audit.rules\" file and add the following line:\n\n-f 1\n\nKernel log monitoring must also be configured to properly alert designated staff.\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000139" - ], - "nist": [ - "AU-5 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"It is critical for the appropriate personnel to be aware if a system is at risk of failing to process audit logs as required. Without this notification, the security personnel may be unaware of an impending failure of the audit capability, and system operation may be adversely affected.\\n\\nAudit processing failures include software/hardware errors, failures in the audit capturing mechanisms, and audit storage capacity being reached or exceeded.\\n\\nThis requirement applies to each audit data storage repository (i.e., distinct information system component where audit records are stored), the centralized audit storage capacity of organizations (i.e., all audit data storage repositories combined), or both.\\n\\nSatisfies: SRG-OS-000046-GPOS-00022, SRG-OS-000047-GPOS-00023\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204504", - "group_title": "SRG-OS-000046-GPOS-00022", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204504r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:776" - } - }, - "fix_id": "F-4628r462467_fix", - "fixtext_fixref": "F-4628r462467_fix", - "ident": [ - { - "text": "CCE-80381-7", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72081", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86705", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000139", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204504r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:17", - "idref": "xccdf_mil.disa.stig_rule_SV-204504r603261_rule", - "version": "RHEL-07-030010", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-80381-7", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72081", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86705", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000139", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4628r462467_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:776" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:17", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204506", - "title": "The Red Hat Enterprise Linux operating system must be configured to off-load audit logs onto a different system or storage media from the system being audited.", - "desc": "Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\n\nOff-loading is a common process in information systems with limited audit storage capacity.\n\nOne method of off-loading audit logs in Red Hat Enterprise Linux is with the use of the audisp-remote dameon. Without the configuration of the \"au-remote\" plugin, the audisp-remote daemon will not off load the logs from the system being audited.\n\nSatisfies: SRG-OS-000342-GPOS-00133, SRG-OS-000479-GPOS-00224", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:95729", - "label": "check" - }, - { - "data": "Edit the /etc/audisp/plugins.d/au-remote.conf file and add or update the following values:\n\ndirection = out\npath = /sbin/audisp-remote\ntype = always\n\nThe audit daemon must be restarted for changes to take effect:\n\n# service auditd restart", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001851" - ], - "nist": [ - "AU-4 (1)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\\n\\nOff-loading is a common process in information systems with limited audit storage capacity.\\n\\nOne method of off-loading audit logs in Red Hat Enterprise Linux is with the use of the audisp-remote dameon. Without the configuration of the \\\"au-remote\\\" plugin, the audisp-remote daemon will not off load the logs from the system being audited.\\n\\nSatisfies: SRG-OS-000342-GPOS-00133, SRG-OS-000479-GPOS-00224\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204506", - "group_title": "SRG-OS-000342-GPOS-00133", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204506r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:95729" - } - }, - "fix_id": "F-4630r462470_fix", - "fixtext_fixref": "F-4630r462470_fix", - "ident": [ - { - "text": "SV-95729", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-81017", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001851", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204506r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:17", - "idref": "xccdf_mil.disa.stig_rule_SV-204506r603261_rule", - "version": "RHEL-07-030201", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "SV-95729", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-81017", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001851", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4630r462470_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:95729" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:17", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204507", - "title": "The Red Hat Enterprise Linux operating system must take appropriate action when the remote logging buffer is full.", - "desc": "Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\n\nOff-loading is a common process in information systems with limited audit storage capacity.\n\nOne method of off-loading audit logs in Red Hat Enterprise Linux is with the use of the audisp-remote dameon. When the remote buffer is full, audit logs will not be collected and sent to the central log server.\n\nSatisfies: SRG-OS-000342-GPOS-00133, SRG-OS-000479-GPOS-00224", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:95731", - "label": "check" - }, - { - "data": "Edit the /etc/audisp/audispd.conf file and add or update the \"overflow_action\" option:\n\noverflow_action = syslog\n\nThe audit daemon must be restarted for changes to take effect:\n\n# service auditd restart", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001851" - ], - "nist": [ - "AU-4 (1)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\\n\\nOff-loading is a common process in information systems with limited audit storage capacity.\\n\\nOne method of off-loading audit logs in Red Hat Enterprise Linux is with the use of the audisp-remote dameon. When the remote buffer is full, audit logs will not be collected and sent to the central log server.\\n\\nSatisfies: SRG-OS-000342-GPOS-00133, SRG-OS-000479-GPOS-00224\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204507", - "group_title": "SRG-OS-000342-GPOS-00133", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204507r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:95731" - } - }, - "fix_id": "F-36312r602646_fix", - "fixtext_fixref": "F-36312r602646_fix", - "ident": [ - { - "text": "V-81019", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-95731", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001851", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204507r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:17", - "idref": "xccdf_mil.disa.stig_rule_SV-204507r603261_rule", - "version": "RHEL-07-030210", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "V-81019", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-95731", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001851", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-36312r602646_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:95731" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:17", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204508", - "title": "The Red Hat Enterprise Linux operating system must label all off-loaded audit logs before sending them to the central log server.", - "desc": "Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\n\nOff-loading is a common process in information systems with limited audit storage capacity.\n\nOne method of off-loading audit logs in Red Hat Enterprise Linux is with the use of the audisp-remote dameon. When audit logs are not labeled before they are sent to a central log server, the audit data will not be able to be analyzed and tied back to the correct system.\n\nSatisfies: SRG-OS-000342-GPOS-00133, SRG-OS-000479-GPOS-00224", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:95733", - "label": "check" - }, - { - "data": "Edit the /etc/audisp/audispd.conf file and add or update the \"name_format\" option:\n\nname_format = hostname\n\nThe audit daemon must be restarted for changes to take effect:\n\n# service auditd restart", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001851" - ], - "nist": [ - "AU-4 (1)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\\n\\nOff-loading is a common process in information systems with limited audit storage capacity.\\n\\nOne method of off-loading audit logs in Red Hat Enterprise Linux is with the use of the audisp-remote dameon. When audit logs are not labeled before they are sent to a central log server, the audit data will not be able to be analyzed and tied back to the correct system.\\n\\nSatisfies: SRG-OS-000342-GPOS-00133, SRG-OS-000479-GPOS-00224\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204508", - "group_title": "SRG-OS-000342-GPOS-00133", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204508r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:95733" - } - }, - "fix_id": "F-36313r602649_fix", - "fixtext_fixref": "F-36313r602649_fix", - "ident": [ - { - "text": "SV-95733", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-81021", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001851", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204508r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:17", - "idref": "xccdf_mil.disa.stig_rule_SV-204508r603261_rule", - "version": "RHEL-07-030211", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "SV-95733", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-81021", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001851", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-36313r602649_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:95733" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:17", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204509", - "title": "The Red Hat Enterprise Linux operating system must off-load audit records onto a different system or media from the system being audited.", - "desc": "Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\n\nOff-loading is a common process in information systems with limited audit storage capacity.\n\nSatisfies: SRG-OS-000342-GPOS-00133, SRG-OS-000479-GPOS-00224", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:86707", - "label": "check" - }, - { - "data": "Configure the operating system to off-load audit records onto a different system or media from the system being audited.\n\nSet the remote server option in \"/etc/audisp/audisp-remote.conf\" with the IP address of the log aggregation server.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001851" - ], - "nist": [ - "AU-4 (1)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\\n\\nOff-loading is a common process in information systems with limited audit storage capacity.\\n\\nSatisfies: SRG-OS-000342-GPOS-00133, SRG-OS-000479-GPOS-00224\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204509", - "group_title": "SRG-OS-000342-GPOS-00133", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204509r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:86707" - } - }, - "fix_id": "F-4633r88720_fix", - "fixtext_fixref": "F-4633r88720_fix", - "ident": [ - { - "text": "SV-86707", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72083", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001851", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204509r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:17", - "idref": "xccdf_mil.disa.stig_rule_SV-204509r603261_rule", - "version": "RHEL-07-030300", - "severity": "medium", - "weight": "10.0", - "cdf:result": "fail", - "cdf:ident": [ - { - "text": "SV-86707", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72083", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001851", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4633r88720_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:86707" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:17", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204510", - "title": "The Red Hat Enterprise Linux operating system must encrypt the transfer of audit records off-loaded onto a different system or media from the system being audited.", - "desc": "Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\n\nOff-loading is a common process in information systems with limited audit storage capacity.\n\nSatisfies: SRG-OS-000342-GPOS-00133, SRG-OS-000479-GPOS-00224", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:86709", - "label": "check" - }, - { - "data": "Configure the operating system to encrypt the transfer of off-loaded audit records onto a different system or media from the system being audited.\n\nUncomment the \"enable_krb5\" option in \"/etc/audisp/audisp-remote.conf\" and set it with the following line:\n\nenable_krb5 = yes", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001851" - ], - "nist": [ - "AU-4 (1)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\\n\\nOff-loading is a common process in information systems with limited audit storage capacity.\\n\\nSatisfies: SRG-OS-000342-GPOS-00133, SRG-OS-000479-GPOS-00224\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204510", - "group_title": "SRG-OS-000342-GPOS-00133", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204510r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:86709" - } - }, - "fix_id": "F-4634r88723_fix", - "fixtext_fixref": "F-4634r88723_fix", - "ident": [ - { - "text": "SV-86709", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72085", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001851", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204510r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:17", - "idref": "xccdf_mil.disa.stig_rule_SV-204510r603261_rule", - "version": "RHEL-07-030310", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "SV-86709", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72085", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001851", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4634r88723_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:86709" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:17", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204511", - "title": "The Red Hat Enterprise Linux operating system must be configured so that the audit system takes appropriate action when the audit storage volume is full.", - "desc": "Taking appropriate action in case of a filled audit storage volume will minimize the possibility of losing audit records.\nOne method of off-loading audit logs in Red Hat Enterprise Linux is with the use of the audisp-remote dameon.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:86711", - "label": "check" - }, - { - "data": "Configure the action the operating system takes if the disk the audit records are written to becomes full.\n\nUncomment or edit the \"disk_full_action\" option in \"/etc/audisp/audisp-remote.conf\" and set it to \"syslog\", \"single\", or \"halt\", such as the following line:\n\ndisk_full_action = single", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001851" - ], - "nist": [ - "AU-4 (1)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Taking appropriate action in case of a filled audit storage volume will minimize the possibility of losing audit records.\\nOne method of off-loading audit logs in Red Hat Enterprise Linux is with the use of the audisp-remote dameon.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204511", - "group_title": "SRG-OS-000342-GPOS-00133", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204511r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:86711" - } - }, - "fix_id": "F-36314r602652_fix", - "fixtext_fixref": "F-36314r602652_fix", - "ident": [ - { - "text": "V-72087", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86711", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001851", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204511r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:17", - "idref": "xccdf_mil.disa.stig_rule_SV-204511r603261_rule", - "version": "RHEL-07-030320", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "V-72087", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86711", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001851", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-36314r602652_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:86711" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:17", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204512", - "title": "The Red Hat Enterprise Linux operating system must be configured so that the audit system takes appropriate action when there is an error sending audit records to a remote system.", - "desc": "Taking appropriate action when there is an error sending audit records to a remote system will minimize the possibility of losing audit records.\nOne method of off-loading audit logs in Red Hat Enterprise Linux is with the use of the audisp-remote dameon.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:87815", - "label": "check" - }, - { - "data": "Configure the action the operating system takes if there is an error sending audit records to a remote system.\n\nUncomment the \"network_failure_action\" option in \"/etc/audisp/audisp-remote.conf\" and set it to \"syslog\", \"single\", or \"halt\".\n\nnetwork_failure_action = syslog", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001851" - ], - "nist": [ - "AU-4 (1)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Taking appropriate action when there is an error sending audit records to a remote system will minimize the possibility of losing audit records.\\nOne method of off-loading audit logs in Red Hat Enterprise Linux is with the use of the audisp-remote dameon.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204512", - "group_title": "SRG-OS-000342-GPOS-00133", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204512r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:87815" - } - }, - "fix_id": "F-36315r602655_fix", - "fixtext_fixref": "F-36315r602655_fix", - "ident": [ - { - "text": "SV-87815", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-73163", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001851", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204512r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:17", - "idref": "xccdf_mil.disa.stig_rule_SV-204512r603261_rule", - "version": "RHEL-07-030321", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "SV-87815", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-73163", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001851", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-36315r602655_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:87815" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:17", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204514", - "title": "The Red Hat Enterprise Linux operating system must immediately notify the System Administrator (SA) and Information System Security Officer (ISSO) (at a minimum) via email when the threshold for the repository maximum audit record storage capacity is reached.", - "desc": "If security personnel are not notified immediately when the threshold for the repository maximum audit record storage capacity is reached, they are unable to expand the audit record storage capacity before records are lost.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:86715", - "label": "check" - }, - { - "data": "Configure the operating system to immediately notify the SA and ISSO (at a minimum) when the threshold for the repository maximum audit record storage capacity is reached.\n\nUncomment or edit the \"space_left_action\" keyword in \"/etc/audit/auditd.conf\" and set it to \"email\".\n\nspace_left_action = email", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001855" - ], - "nist": [ - "AU-5 (1)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"If security personnel are not notified immediately when the threshold for the repository maximum audit record storage capacity is reached, they are unable to expand the audit record storage capacity before records are lost.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204514", - "group_title": "SRG-OS-000343-GPOS-00134", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204514r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:86715" - } - }, - "fix_id": "F-4638r88735_fix", - "fixtext_fixref": "F-4638r88735_fix", - "ident": [ - { - "text": "SV-86715", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72091", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001855", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204514r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:17", - "idref": "xccdf_mil.disa.stig_rule_SV-204514r603261_rule", - "version": "RHEL-07-030340", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "SV-86715", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72091", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001855", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4638r88735_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:86715" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:17", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204515", - "title": "The Red Hat Enterprise Linux operating system must immediately notify the System Administrator (SA) and Information System Security Officer (ISSO) (at a minimum) when the threshold for the repository maximum audit record storage capacity is reached.", - "desc": "If security personnel are not notified immediately when the threshold for the repository maximum audit record storage capacity is reached, they are unable to expand the audit record storage capacity before records are lost.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:885", - "label": "check" - }, - { - "data": "Configure the operating system to immediately notify the SA and ISSO (at a minimum) when the threshold for the repository maximum audit record storage capacity is reached.\n\nUncomment or edit the \"action_mail_acct\" keyword in \"/etc/audit/auditd.conf\" and set it to root and any other accounts associated with security personnel.\n\naction_mail_acct = root", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001855" - ], - "nist": [ - "AU-5 (1)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"If security personnel are not notified immediately when the threshold for the repository maximum audit record storage capacity is reached, they are unable to expand the audit record storage capacity before records are lost.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204515", - "group_title": "SRG-OS-000343-GPOS-00134", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204515r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-export": { - "value-id": "xccdf_mil.disa.stig_value_var_auditd_action_mail_acct", - "export-name": "oval:mil.disa.stig.rhel7:var:3821" - }, - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:885" - } - }, - "fix_id": "F-4639r88738_fix", - "fixtext_fixref": "F-4639r88738_fix", - "ident": [ - { - "text": "CCE-27394-6", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86717", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72093", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001855", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204515r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:17", - "idref": "xccdf_mil.disa.stig_rule_SV-204515r603261_rule", - "version": "RHEL-07-030350", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-27394-6", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86717", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72093", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001855", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4639r88738_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-export": { - "value-id": "xccdf_mil.disa.stig_value_var_auditd_action_mail_acct", - "export-name": "oval:mil.disa.stig.rhel7:var:3821" - }, - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:885" - } - } - }, - "value": { - "Id": "xccdf_mil.disa.stig_value_var_auditd_action_mail_acct", - "id": "xccdf_mil.disa.stig_value_var_auditd_action_mail_acct", - "cdf:title": "Account for auditd to send email when actions occurs", - "cdf:description": "The setting for action_mail_acct in /etc/audit/auditd.conf", - "cdf:value": [ - "root", - { - "text": "root", - "selector": "root" - }, - { - "text": "admin", - "selector": "admin" - } - ] - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:17", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204516", - "title": "The Red Hat Enterprise Linux operating system must audit all executions of privileged functions.", - "desc": "Misuse of privileged functions, either intentionally or unintentionally by authorized users, or by unauthorized external entities that have compromised information system accounts, is a serious and ongoing concern and can have significant adverse impacts on organizations. Auditing the use of privileged functions is one way to detect such misuse and identify the risk from insider threats and the advanced persistent threat.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:710", - "label": "check" - }, - { - "data": "Configure the operating system to audit the execution of privileged functions.\n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S execve -C uid!=euid -F euid=0 -k setuid\n-a always,exit -F arch=b64 -S execve -C uid!=euid -F euid=0 -k setuid\n-a always,exit -F arch=b32 -S execve -C gid!=egid -F egid=0 -k setgid\n-a always,exit -F arch=b64 -S execve -C gid!=egid -F egid=0 -k setgid\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-002234" - ], - "nist": [ - "AC-6 (9)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Misuse of privileged functions, either intentionally or unintentionally by authorized users, or by unauthorized external entities that have compromised information system accounts, is a serious and ongoing concern and can have significant adverse impacts on organizations. Auditing the use of privileged functions is one way to detect such misuse and identify the risk from insider threats and the advanced persistent threat.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204516", - "group_title": "SRG-OS-000327-GPOS-00127", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204516r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:710" - } - }, - "fix_id": "F-4640r88741_fix", - "fixtext_fixref": "F-4640r88741_fix", - "ident": [ - { - "text": "SV-86719", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72095", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-002234", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204516r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:17", - "idref": "xccdf_mil.disa.stig_rule_SV-204516r603261_rule", - "version": "RHEL-07-030360", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "SV-86719", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72095", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-002234", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4640r88741_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:710" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:17", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204517", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the chown syscall.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000474-GPOS-00219", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:552", - "label": "check" - }, - { - "data": "Add or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S chown -F auid>=1000 -F auid!=unset -k perm_mod\n\n-a always,exit -F arch=b64 -S chown -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000172", - "CCI-000126" - ], - "nist": [ - "AU-12 c", - "AU-2 c" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000474-GPOS-00219\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204517", - "group_title": "SRG-OS-000064-GPOS-00033", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204517r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:552" - } - }, - "fix_id": "F-4641r462559_fix", - "fixtext_fixref": "F-4641r462559_fix", - "ident": [ - { - "text": "CCE-27364-9", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86721", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72097", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000126", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204517r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:18", - "idref": "xccdf_mil.disa.stig_rule_SV-204517r603261_rule", - "version": "RHEL-07-030370", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-27364-9", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86721", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72097", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000126", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4641r462559_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:552" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:18", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204518", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the fchown syscall.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000474-GPOS-00219", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:567", - "label": "check" - }, - { - "data": "Add or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S fchown -F auid>=1000 -F auid!=unset -k perm_mod\n\n-a always,exit -F arch=b64 -S fchown -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000126", - "CCI-000172" - ], - "nist": [ - "AU-2 c", - "AU-12 c" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000474-GPOS-00219\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204518", - "group_title": "SRG-OS-000064-GPOS-00033", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204518r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:567" - } - }, - "fix_id": "F-4642r462562_fix", - "fixtext_fixref": "F-4642r462562_fix", - "ident": [ - { - "text": "CCE-27356-5", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86723", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72099", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000126", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204518r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:18", - "idref": "xccdf_mil.disa.stig_rule_SV-204518r603261_rule", - "version": "RHEL-07-030380", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-27356-5", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86723", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72099", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000126", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4642r462562_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:567" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:18", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204519", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the lchown syscall.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000474-GPOS-00219", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:587", - "label": "check" - }, - { - "data": "Add or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S lchown -F auid>=1000 -F auid!=unset -k perm_mod\n\n-a always,exit -F arch=b64 -S lchown -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000126", - "CCI-000172" - ], - "nist": [ - "AU-2 c", - "AU-12 c" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000474-GPOS-00219\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204519", - "group_title": "SRG-OS-000064-GPOS-00033", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204519r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:587" - } - }, - "fix_id": "F-4643r462565_fix", - "fixtext_fixref": "F-4643r462565_fix", - "ident": [ - { - "text": "CCE-27083-5", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86725", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72101", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000126", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204519r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:18", - "idref": "xccdf_mil.disa.stig_rule_SV-204519r603261_rule", - "version": "RHEL-07-030390", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-27083-5", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86725", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72101", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000126", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4643r462565_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:587" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:18", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204520", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the fchownat syscall.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000474-GPOS-00219", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:572", - "label": "check" - }, - { - "data": "Add or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S fchownat -F auid>=1000 -F auid!=unset -k perm_mod\n\n-a always,exit -F arch=b64 -S fchownat -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000126", - "CCI-000172" - ], - "nist": [ - "AU-2 c", - "AU-12 c" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000474-GPOS-00219\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204520", - "group_title": "SRG-OS-000064-GPOS-00033", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204520r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:572" - } - }, - "fix_id": "F-4644r462568_fix", - "fixtext_fixref": "F-4644r462568_fix", - "ident": [ - { - "text": "CCE-27387-0", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86727", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72103", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000126", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204520r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:18", - "idref": "xccdf_mil.disa.stig_rule_SV-204520r603261_rule", - "version": "RHEL-07-030400", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-27387-0", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86727", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72103", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000126", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4644r462568_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:572" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:18", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204521", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the chmod syscall.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:546", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"chmod\" syscall occur.\n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S chmod -F auid>=1000 -F auid!=unset -k perm_mod\n\n-a always,exit -F arch=b64 -S chmod -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000172" - ], - "nist": [ - "AU-12 c" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204521", - "group_title": "SRG-OS-000458-GPOS-00203", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204521r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:546" - } - }, - "fix_id": "F-4645r462571_fix", - "fixtext_fixref": "F-4645r462571_fix", - "ident": [ - { - "text": "CCE-27339-1", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86729", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72105", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204521r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:18", - "idref": "xccdf_mil.disa.stig_rule_SV-204521r603261_rule", - "version": "RHEL-07-030410", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-27339-1", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86729", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72105", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4645r462571_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:546" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:18", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204522", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the fchmod syscall.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:557", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"fchmod\" syscall occur.\n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S fchmod -F auid>=1000 -F auid!=unset -k perm_mod\n\n-a always,exit -F arch=b64 -S fchmod -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000172" - ], - "nist": [ - "AU-12 c" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204522", - "group_title": "SRG-OS-000458-GPOS-00203", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204522r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:557" - } - }, - "fix_id": "F-4646r462574_fix", - "fixtext_fixref": "F-4646r462574_fix", - "ident": [ - { - "text": "CCE-27393-8", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86731", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72107", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204522r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:18", - "idref": "xccdf_mil.disa.stig_rule_SV-204522r603261_rule", - "version": "RHEL-07-030420", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-27393-8", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86731", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72107", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4646r462574_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:557" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:18", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204523", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the fchmodat syscall.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:562", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"fchmodat\" syscall occur.\n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S fchmodat -F auid>=1000 -F auid!=unset -k perm_mod\n\n-a always,exit -F arch=b64 -S fchmodat -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000172" - ], - "nist": [ - "AU-12 c" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204523", - "group_title": "SRG-OS-000458-GPOS-00203", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204523r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:562" - } - }, - "fix_id": "F-4647r462577_fix", - "fixtext_fixref": "F-4647r462577_fix", - "ident": [ - { - "text": "CCE-27388-8", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86733", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72109", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204523r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:18", - "idref": "xccdf_mil.disa.stig_rule_SV-204523r603261_rule", - "version": "RHEL-07-030430", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-27388-8", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86733", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72109", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4647r462577_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:562" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:18", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204524", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the setxattr syscall.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:607", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"setxattr\" syscall occur.\n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S setxattr -F auid>=1000 -F auid!=unset -k perm_mod\n\n-a always,exit -F arch=b64 -S setxattr -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000172" - ], - "nist": [ - "AU-12 c" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204524", - "group_title": "SRG-OS-000458-GPOS-00203", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204524r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:607" - } - }, - "fix_id": "F-4648r462732_fix", - "fixtext_fixref": "F-4648r462732_fix", - "ident": [ - { - "text": "CCE-27213-8", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86735", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72111", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204524r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:18", - "idref": "xccdf_mil.disa.stig_rule_SV-204524r603261_rule", - "version": "RHEL-07-030440", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-27213-8", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86735", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72111", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4648r462732_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:607" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:18", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204525", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the fsetxattr syscall.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:582", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"fsetxattr\" syscall occur.\n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S fsetxattr -F auid>=1000 -F auid!=unset -k perm_mod\n\n-a always,exit -F arch=b64 -S fsetxattr -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000172" - ], - "nist": [ - "AU-12 c" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204525", - "group_title": "SRG-OS-000458-GPOS-00203", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204525r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:582" - } - }, - "fix_id": "F-4649r462580_fix", - "fixtext_fixref": "F-4649r462580_fix", - "ident": [ - { - "text": "CCE-27389-6", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86737", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72113", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204525r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:18", - "idref": "xccdf_mil.disa.stig_rule_SV-204525r603261_rule", - "version": "RHEL-07-030450", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-27389-6", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86737", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72113", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4649r462580_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:582" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:18", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204526", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the lsetxattr syscall.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:597", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"lsetxattr\" syscall occur.\n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S lsetxattr -F auid>=1000 -F auid!=unset -k perm_mod\n\n-a always,exit -F arch=b64 -S lsetxattr -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000172" - ], - "nist": [ - "AU-12 c" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204526", - "group_title": "SRG-OS-000458-GPOS-00203", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204526r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:597" - } - }, - "fix_id": "F-4650r462583_fix", - "fixtext_fixref": "F-4650r462583_fix", - "ident": [ - { - "text": "CCE-27280-7", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86739", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72115", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204526r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:18", - "idref": "xccdf_mil.disa.stig_rule_SV-204526r603261_rule", - "version": "RHEL-07-030460", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-27280-7", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86739", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72115", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4650r462583_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:597" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:18", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204527", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the removexattr syscall.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:602", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"removexattr\" syscall occur.\n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S removexattr -F auid>=1000 -F auid!=unset -k perm_mod\n\n-a always,exit -F arch=b64 -S removexattr -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000172" - ], - "nist": [ - "AU-12 c" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204527", - "group_title": "SRG-OS-000458-GPOS-00203", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204527r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:602" - } - }, - "fix_id": "F-4651r462586_fix", - "fixtext_fixref": "F-4651r462586_fix", - "ident": [ - { - "text": "CCE-27367-2", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86741", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72117", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204527r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:18", - "idref": "xccdf_mil.disa.stig_rule_SV-204527r603261_rule", - "version": "RHEL-07-030470", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-27367-2", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86741", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72117", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4651r462586_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:602" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:18", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204528", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the fremovexattr syscall.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:577", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"fremovexattr\" syscall occur.\n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S fremovexattr -F auid>=1000 -F auid!=unset -k perm_mod\n\n-a always,exit -F arch=b64 -S fremovexattr -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000172" - ], - "nist": [ - "AU-12 c" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204528", - "group_title": "SRG-OS-000458-GPOS-00203", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204528r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:577" - } - }, - "fix_id": "F-4652r462589_fix", - "fixtext_fixref": "F-4652r462589_fix", - "ident": [ - { - "text": "CCE-27353-2", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86743", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72119", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204528r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:18", - "idref": "xccdf_mil.disa.stig_rule_SV-204528r603261_rule", - "version": "RHEL-07-030480", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-27353-2", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86743", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72119", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4652r462589_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:577" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:18", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204529", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the lremovexattr syscall.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:592", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"lremovexattr\" syscall occur.\n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S lremovexattr -F auid>=1000 -F auid!=unset -k perm_mod\n\n-a always,exit -F arch=b64 -S lremovexattr -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000172" - ], - "nist": [ - "AU-12 c" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204529", - "group_title": "SRG-OS-000458-GPOS-00203", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204529r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:592" - } - }, - "fix_id": "F-4653r462592_fix", - "fixtext_fixref": "F-4653r462592_fix", - "ident": [ - { - "text": "CCE-27410-0", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86745", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72121", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204529r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:18", - "idref": "xccdf_mil.disa.stig_rule_SV-204529r603261_rule", - "version": "RHEL-07-030490", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-27410-0", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86745", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72121", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4653r462592_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:592" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:18", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204530", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the creat syscall.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000458-GPOS-00203, SRG-OS-000461-GPOS-00205, SRG-OS-000392-GPOS-00172", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:801", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"creat\" syscall occur.\n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules:\n\n-a always,exit -F arch=b32 -S creat -F exit=-EPERM -F auid>=1000 -F auid!=unset -k access\n\n-a always,exit -F arch=b32 -S creat -F exit=-EACCES -F auid>=1000 -F auid!=unset -k access\n\n-a always,exit -F arch=b64 -S creat -F exit=-EPERM -F auid>=1000 -F auid!=unset -k access\n\n-a always,exit -F arch=b64 -S creat -F exit=-EACCES -F auid>=1000 -F auid!=unset -k access\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000172", - "CCI-002884" - ], - "nist": [ - "AU-12 c", - "MA-4 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000458-GPOS-00203, SRG-OS-000461-GPOS-00205, SRG-OS-000392-GPOS-00172\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204530", - "group_title": "SRG-OS-000064-GPOS-00033", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204530r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:801" - } - }, - "fix_id": "F-4654r462595_fix", - "fixtext_fixref": "F-4654r462595_fix", - "ident": [ - { - "text": "CCE-80385-8", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86747", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72123", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204530r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:18", - "idref": "xccdf_mil.disa.stig_rule_SV-204530r603261_rule", - "version": "RHEL-07-030500", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-80385-8", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86747", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72123", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4654r462595_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:801" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:18", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204531", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the open syscall.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000458-GPOS-00203, SRG-OS-000461-GPOS-00205, SRG-OS-000392-GPOS-00172", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:805", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"open\" syscall occur.\n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S open -F exit=-EPERM -F auid>=1000 -F auid!=unset -k access\n\n-a always,exit -F arch=b32 -S open -F exit=-EACCES -F auid>=1000 -F auid!=unset -k access\n\n-a always,exit -F arch=b64 -S open -F exit=-EPERM -F auid>=1000 -F auid!=unset -k access\n\n-a always,exit -F arch=b64 -S open -F exit=-EACCES -F auid>=1000 -F auid!=unset -k access\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000172", - "CCI-002884" - ], - "nist": [ - "AU-12 c", - "MA-4 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000458-GPOS-00203, SRG-OS-000461-GPOS-00205, SRG-OS-000392-GPOS-00172\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204531", - "group_title": "SRG-OS-000064-GPOS-00033", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204531r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:805" - } - }, - "fix_id": "F-4655r462598_fix", - "fixtext_fixref": "F-4655r462598_fix", - "ident": [ - { - "text": "CCE-80386-6", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86749", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72125", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204531r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:19", - "idref": "xccdf_mil.disa.stig_rule_SV-204531r603261_rule", - "version": "RHEL-07-030510", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-80386-6", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86749", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72125", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4655r462598_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:805" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:19", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204532", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the openat syscall.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000458-GPOS-00203, SRG-OS-000461-GPOS-00205, SRG-OS-000392-GPOS-00172", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:803", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"openat\" syscall occur.\n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S openat -F exit=-EPERM -F auid>=1000 -F auid!=unset -k access\n\n-a always,exit -F arch=b32 -S openat -F exit=-EACCES -F auid>=1000 -F auid!=unset -k access\n\n-a always,exit -F arch=b64 -S openat -F exit=-EPERM -F auid>=1000 -F auid!=unset -k access\n\n-a always,exit -F arch=b64 -S openat -F exit=-EACCES -F auid>=1000 -F auid!=unset -k access\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000172", - "CCI-002884" - ], - "nist": [ - "AU-12 c", - "MA-4 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000458-GPOS-00203, SRG-OS-000461-GPOS-00205, SRG-OS-000392-GPOS-00172\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204532", - "group_title": "SRG-OS-000064-GPOS-00033", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204532r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:803" - } - }, - "fix_id": "F-4656r462601_fix", - "fixtext_fixref": "F-4656r462601_fix", - "ident": [ - { - "text": "CCE-80387-4", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86751", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72127", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204532r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:19", - "idref": "xccdf_mil.disa.stig_rule_SV-204532r603261_rule", - "version": "RHEL-07-030520", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-80387-4", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86751", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72127", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4656r462601_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:803" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:19", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204533", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the open_by_handle_at syscall.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000458-GPOS-00203, SRG-OS-000461-GPOS-00205, SRG-OS-000392-GPOS-00172", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:804", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"open_by_handle_at\" syscall occur.\n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S open_by_handle_at -F exit=-EPERM -F auid>=1000 -F auid!=unset -k access\n\n-a always,exit -F arch=b32 -S open_by_handle_at -F exit=-EACCES -F auid>=1000 -F auid!=unset -k access\n\n-a always,exit -F arch=b64 -S open_by_handle_at -F exit=-EPERM -F auid>=1000 -F auid!=unset -k access\n\n-a always,exit -F arch=b64 -S open_by_handle_at -F exit=-EACCES -F auid>=1000 -F auid!=unset -k access\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000172", - "CCI-002884" - ], - "nist": [ - "AU-12 c", - "MA-4 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000458-GPOS-00203, SRG-OS-000461-GPOS-00205, SRG-OS-000392-GPOS-00172\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204533", - "group_title": "SRG-OS-000064-GPOS-00033", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204533r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:804" - } - }, - "fix_id": "F-4657r462604_fix", - "fixtext_fixref": "F-4657r462604_fix", - "ident": [ - { - "text": "CCE-80388-2", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86753", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72129", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204533r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:19", - "idref": "xccdf_mil.disa.stig_rule_SV-204533r603261_rule", - "version": "RHEL-07-030530", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-80388-2", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86753", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72129", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4657r462604_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:804" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:19", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204534", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the truncate syscall.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000458-GPOS-00203, SRG-OS-000461-GPOS-00205, SRG-OS-000392-GPOS-00172", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:806", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"truncate\" syscall occur.\n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S truncate -F exit=-EPERM -F auid>=1000 -F auid!=unset -k access\n\n-a always,exit -F arch=b32 -S truncate -F exit=-EACCES -F auid>=1000 -F auid!=unset -k access\n\n-a always,exit -F arch=b64 -S truncate -F exit=-EPERM -F auid>=1000 -F auid!=unset -k access\n\n-a always,exit -F arch=b64 -S truncate -F exit=-EACCES -F auid>=1000 -F auid!=unset -k access\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000172", - "CCI-002884" - ], - "nist": [ - "AU-12 c", - "MA-4 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000458-GPOS-00203, SRG-OS-000461-GPOS-00205, SRG-OS-000392-GPOS-00172\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204534", - "group_title": "SRG-OS-000064-GPOS-00033", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204534r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:806" - } - }, - "fix_id": "F-4658r462607_fix", - "fixtext_fixref": "F-4658r462607_fix", - "ident": [ - { - "text": "CCE-80389-0", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86755", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72131", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204534r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:19", - "idref": "xccdf_mil.disa.stig_rule_SV-204534r603261_rule", - "version": "RHEL-07-030540", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-80389-0", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86755", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72131", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4658r462607_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:806" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:19", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204535", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the ftruncate syscall.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000458-GPOS-00203, SRG-OS-000461-GPOS-00205, SRG-OS-000392-GPOS-00172", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:802", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"ftruncate\" syscall occur.\n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S ftruncate -F exit=-EPERM -F auid>=1000 -F auid!=unset -k access\n\n-a always,exit -F arch=b32 -S ftruncate -F exit=-EACCES -F auid>=1000 -F auid!=unset -k access\n\n-a always,exit -F arch=b64 -S ftruncate -F exit=-EPERM -F auid>=1000 -F auid!=unset -k access\n\n-a always,exit -F arch=b64 -S ftruncate -F exit=-EACCES -F auid>=1000 -F auid!=unset -k access\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000172", - "CCI-002884" - ], - "nist": [ - "AU-12 c", - "MA-4 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000458-GPOS-00203, SRG-OS-000461-GPOS-00205, SRG-OS-000392-GPOS-00172\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204535", - "group_title": "SRG-OS-000064-GPOS-00033", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204535r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:802" - } - }, - "fix_id": "F-4659r462610_fix", - "fixtext_fixref": "F-4659r462610_fix", - "ident": [ - { - "text": "CCE-80390-8", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86757", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72133", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204535r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:19", - "idref": "xccdf_mil.disa.stig_rule_SV-204535r603261_rule", - "version": "RHEL-07-030550", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-80390-8", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86757", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72133", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4659r462610_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:802" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:19", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204536", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the semanage command.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000392-GPOS-00172, SRG-OS-000463-GPOS-00207, SRG-OS-000465-GPOS-00209", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:618", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"semanage\" command occur.\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F path=/usr/sbin/semanage -F auid>=1000 -F auid!=unset -k privileged-priv_change\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000172", - "CCI-002884" - ], - "nist": [ - "AU-12 c", - "MA-4 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000392-GPOS-00172, SRG-OS-000463-GPOS-00207, SRG-OS-000465-GPOS-00209\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204536", - "group_title": "SRG-OS-000392-GPOS-00172", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204536r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:618" - } - }, - "fix_id": "F-4660r462613_fix", - "fixtext_fixref": "F-4660r462613_fix", - "ident": [ - { - "text": "CCE-80391-6", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86759", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72135", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204536r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:19", - "idref": "xccdf_mil.disa.stig_rule_SV-204536r603261_rule", - "version": "RHEL-07-030560", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-80391-6", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86759", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72135", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4660r462613_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:618" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:19", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204537", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the setsebool command.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000392-GPOS-00172, SRG-OS-000463-GPOS-00207, SRG-OS-000465-GPOS-00209", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:621", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"setsebool\" command occur.\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F path=/usr/sbin/setsebool -F auid>=1000 -F auid!=unset -k privileged-priv_change\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000172", - "CCI-002884" - ], - "nist": [ - "AU-12 c", - "MA-4 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000392-GPOS-00172, SRG-OS-000463-GPOS-00207, SRG-OS-000465-GPOS-00209\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204537", - "group_title": "SRG-OS-000392-GPOS-00172", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204537r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:621" - } - }, - "fix_id": "F-4661r462616_fix", - "fixtext_fixref": "F-4661r462616_fix", - "ident": [ - { - "text": "CCE-80392-4", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86761", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72137", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204537r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:19", - "idref": "xccdf_mil.disa.stig_rule_SV-204537r603261_rule", - "version": "RHEL-07-030570", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-80392-4", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86761", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72137", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4661r462616_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:621" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:19", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204538", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the chcon command.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000392-GPOS-00172, SRG-OS-000463-GPOS-00207, SRG-OS-000465-GPOS-00209", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:612", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"chcon\" command occur.\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F path=/usr/bin/chcon -F auid>=1000 -F auid!=unset -k privileged-priv_change\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000172", - "CCI-002884" - ], - "nist": [ - "AU-12 c", - "MA-4 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000392-GPOS-00172, SRG-OS-000463-GPOS-00207, SRG-OS-000465-GPOS-00209\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204538", - "group_title": "SRG-OS-000392-GPOS-00172", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204538r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:612" - } - }, - "fix_id": "F-4662r462619_fix", - "fixtext_fixref": "F-4662r462619_fix", - "ident": [ - { - "text": "CCE-80393-2", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86763", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72139", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204538r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:19", - "idref": "xccdf_mil.disa.stig_rule_SV-204538r603261_rule", - "version": "RHEL-07-030580", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-80393-2", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86763", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72139", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4662r462619_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:612" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:19", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204539", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the setfiles command.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000392-GPOS-00172, SRG-OS-000463-GPOS-00207, SRG-OS-000465-GPOS-00209", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:86765", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"setfiles\" command occur.\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F path=/usr/sbin/setfiles -F auid>=1000 -F auid!=unset -k privileged-priv_change\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000172", - "CCI-002884" - ], - "nist": [ - "AU-12 c", - "MA-4 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000392-GPOS-00172, SRG-OS-000463-GPOS-00207, SRG-OS-000465-GPOS-00209\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204539", - "group_title": "SRG-OS-000392-GPOS-00172", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204539r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:86765" - } - }, - "fix_id": "F-4663r462622_fix", - "fixtext_fixref": "F-4663r462622_fix", - "ident": [ - { - "text": "SV-86765", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72141", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204539r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:19", - "idref": "xccdf_mil.disa.stig_rule_SV-204539r603261_rule", - "version": "RHEL-07-030590", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "SV-86765", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72141", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4663r462622_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:86765" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:19", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204540", - "title": "The Red Hat Enterprise Linux operating system must generate audit records for all unsuccessful account access events.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nSatisfies: SRG-OS-000392-GPOS-00172, SRG-OS-000470-GPOS-00214, SRG-OS-000473-GPOS-00218", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:675", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when unsuccessful account access events occur.\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-w /var/run/faillock -p wa -k logins\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000172", - "CCI-000126", - "CCI-002884" - ], - "nist": [ - "AU-12 c", - "AU-2 c", - "MA-4 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000392-GPOS-00172, SRG-OS-000470-GPOS-00214, SRG-OS-000473-GPOS-00218\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204540", - "group_title": "SRG-OS-000392-GPOS-00172", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204540r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:675" - } - }, - "fix_id": "F-4664r88813_fix", - "fixtext_fixref": "F-4664r88813_fix", - "ident": [ - { - "text": "CCE-80383-3", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86769", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72145", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000126", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204540r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:19", - "idref": "xccdf_mil.disa.stig_rule_SV-204540r603261_rule", - "version": "RHEL-07-030610", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-80383-3", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86769", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72145", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000126", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4664r88813_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:675" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:19", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204541", - "title": "The Red Hat Enterprise Linux operating system must generate audit records for all successful account access events.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nSatisfies: SRG-OS-000392-GPOS-00172, SRG-OS-000470-GPOS-00214, SRG-OS-000473-GPOS-00218", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:676", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful account access events occur.\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-w /var/log/lastlog -p wa -k logins\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000126", - "CCI-000172", - "CCI-002884" - ], - "nist": [ - "AU-2 c", - "AU-12 c", - "MA-4 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000392-GPOS-00172, SRG-OS-000470-GPOS-00214, SRG-OS-000473-GPOS-00218\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204541", - "group_title": "SRG-OS-000392-GPOS-00172", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204541r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:676" - } - }, - "fix_id": "F-4665r88816_fix", - "fixtext_fixref": "F-4665r88816_fix", - "ident": [ - { - "text": "CCE-80384-1", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86771", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72147", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000126", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204541r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:19", - "idref": "xccdf_mil.disa.stig_rule_SV-204541r603261_rule", - "version": "RHEL-07-030620", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-80384-1", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86771", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72147", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000126", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4665r88816_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:676" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:19", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204542", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the passwd command.", - "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged password commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:733", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"passwd\" command occur.\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F path=/usr/bin/passwd -F auid>=1000 -F auid!=unset -k privileged-passwd\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000172", - "CCI-000135", - "CCI-002884" - ], - "nist": [ - "AU-12 c", - "AU-3 (1)", - "MA-4 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged password commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204542", - "group_title": "SRG-OS-000042-GPOS-00020", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204542r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:733" - } - }, - "fix_id": "F-4666r462625_fix", - "fixtext_fixref": "F-4666r462625_fix", - "ident": [ - { - "text": "CCE-80395-7", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86773", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72149", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000135", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204542r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:19", - "idref": "xccdf_mil.disa.stig_rule_SV-204542r603261_rule", - "version": "RHEL-07-030630", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-80395-7", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86773", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72149", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000135", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4666r462625_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:733" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:19", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204543", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the unix_chkpwd command.", - "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged password commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:760", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"unix_chkpwd\" command occur.\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F path=/usr/sbin/unix_chkpwd -F auid>=1000 -F auid!=unset -k privileged-passwd\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000135", - "CCI-000172", - "CCI-002884" - ], - "nist": [ - "AU-3 (1)", - "AU-12 c", - "MA-4 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged password commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204543", - "group_title": "SRG-OS-000042-GPOS-00020", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204543r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:760" - } - }, - "fix_id": "F-4667r462628_fix", - "fixtext_fixref": "F-4667r462628_fix", - "ident": [ - { - "text": "CCE-80396-5", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86775", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72151", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000135", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204543r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:19", - "idref": "xccdf_mil.disa.stig_rule_SV-204543r603261_rule", - "version": "RHEL-07-030640", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-80396-5", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86775", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72151", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000135", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4667r462628_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:760" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:19", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204544", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the gpasswd command.", - "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged password commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:724", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"gpasswd\" command occur.\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F path=/usr/bin/gpasswd -F auid>=1000 -F auid!=unset -k privileged-passwd\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000172", - "CCI-000135", - "CCI-002884" - ], - "nist": [ - "AU-12 c", - "AU-3 (1)", - "MA-4 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged password commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204544", - "group_title": "SRG-OS-000042-GPOS-00020", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204544r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:724" - } - }, - "fix_id": "F-4668r462631_fix", - "fixtext_fixref": "F-4668r462631_fix", - "ident": [ - { - "text": "CCE-80397-3", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86777", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72153", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000135", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204544r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:20", - "idref": "xccdf_mil.disa.stig_rule_SV-204544r603261_rule", - "version": "RHEL-07-030650", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-80397-3", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86777", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72153", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000135", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4668r462631_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:724" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:20", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204545", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the chage command.", - "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged password commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:715", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"chage\" command occur.\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F path=/usr/bin/chage -F auid>=1000 -F auid!=unset -k privileged-passwd\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000135", - "CCI-000172", - "CCI-002884" - ], - "nist": [ - "AU-3 (1)", - "AU-12 c", - "MA-4 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged password commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204545", - "group_title": "SRG-OS-000042-GPOS-00020", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204545r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:715" - } - }, - "fix_id": "F-4669r462634_fix", - "fixtext_fixref": "F-4669r462634_fix", - "ident": [ - { - "text": "CCE-80398-1", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86779", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72155", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000135", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204545r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:20", - "idref": "xccdf_mil.disa.stig_rule_SV-204545r603261_rule", - "version": "RHEL-07-030660", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-80398-1", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86779", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72155", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000135", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4669r462634_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:715" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:20", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204546", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the userhelper command.", - "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged password commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:763", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"userhelper\" command occur.\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F path=/usr/sbin/userhelper -F auid>=1000 -F auid!=unset -k privileged-passwd\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000172", - "CCI-000135", - "CCI-002884" - ], - "nist": [ - "AU-12 c", - "AU-3 (1)", - "MA-4 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged password commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204546", - "group_title": "SRG-OS-000042-GPOS-00020", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204546r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:763" - } - }, - "fix_id": "F-4670r462637_fix", - "fixtext_fixref": "F-4670r462637_fix", - "ident": [ - { - "text": "CCE-80399-9", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86781", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72157", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000135", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204546r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:20", - "idref": "xccdf_mil.disa.stig_rule_SV-204546r603261_rule", - "version": "RHEL-07-030670", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-80399-9", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86781", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72157", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000135", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4670r462637_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:763" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:20", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204547", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the su command.", - "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged access commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:748", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"su\" command occur.\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F path=/usr/bin/su -F auid>=1000 -F auid!=unset -k privileged-priv_change\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000135", - "CCI-000172", - "CCI-000130", - "CCI-002884" - ], - "nist": [ - "AU-3 (1)", - "AU-12 c", - "AU-3 a", - "MA-4 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged access commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204547", - "group_title": "SRG-OS-000037-GPOS-00015", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204547r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:748" - } - }, - "fix_id": "F-4671r462640_fix", - "fixtext_fixref": "F-4671r462640_fix", - "ident": [ - { - "text": "CCE-80400-5", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86783", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72159", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000135", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000130", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204547r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:20", - "idref": "xccdf_mil.disa.stig_rule_SV-204547r603261_rule", - "version": "RHEL-07-030680", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-80400-5", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86783", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72159", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000135", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000130", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4671r462640_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:748" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:20", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204548", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the sudo command.", - "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged access commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:751", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"sudo\" command occur.\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F path=/usr/bin/sudo -F auid>=1000 -F auid!=unset -k privileged-priv_change\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000130", - "CCI-000135", - "CCI-000172", - "CCI-002884" - ], - "nist": [ - "AU-3 a", - "AU-3 (1)", - "AU-12 c", - "MA-4 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged access commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204548", - "group_title": "SRG-OS-000037-GPOS-00015", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204548r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:751" - } - }, - "fix_id": "F-4672r462643_fix", - "fixtext_fixref": "F-4672r462643_fix", - "ident": [ - { - "text": "CCE-80401-3", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86785", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72161", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000130", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000135", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204548r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:20", - "idref": "xccdf_mil.disa.stig_rule_SV-204548r603261_rule", - "version": "RHEL-07-030690", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-80401-3", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86785", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72161", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000130", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000135", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4672r462643_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:751" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:20", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204549", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the sudoers file and all files in the /etc/sudoers.d/ directory.", - "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged access commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\n\nSatisfies: SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:773", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to access the \"/etc/sudoers\" file and files in the \"/etc/sudoers.d/\" directory.\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-w /etc/sudoers -p wa -k privileged-actions\n\n-w /etc/sudoers.d/ -p wa -k privileged-actions\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000172", - "CCI-000135", - "CCI-000130", - "CCI-002884" - ], - "nist": [ - "AU-12 c", - "AU-3 (1)", - "AU-3 a", - "MA-4 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged access commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nSatisfies: SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204549", - "group_title": "SRG-OS-000037-GPOS-00015", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204549r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:773" - } - }, - "fix_id": "F-4673r88840_fix", - "fixtext_fixref": "F-4673r88840_fix", - "ident": [ - { - "text": "CCE-27461-3", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86787", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72163", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000135", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000130", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204549r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:20", - "idref": "xccdf_mil.disa.stig_rule_SV-204549r603261_rule", - "version": "RHEL-07-030700", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-27461-3", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86787", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72163", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000135", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000130", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4673r88840_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:773" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:20", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204550", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the newgrp command.", - "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged access commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:727", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"newgrp\" command occur.\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F path=/usr/bin/newgrp -F auid>=1000 -F auid!=unset -k privileged-priv_change\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000130", - "CCI-000135", - "CCI-000172", - "CCI-002884" - ], - "nist": [ - "AU-3 a", - "AU-3 (1)", - "AU-12 c", - "MA-4 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged access commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204550", - "group_title": "SRG-OS-000037-GPOS-00015", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204550r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:727" - } - }, - "fix_id": "F-4674r462646_fix", - "fixtext_fixref": "F-4674r462646_fix", - "ident": [ - { - "text": "CCE-80403-9", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86789", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72165", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000130", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000135", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204550r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:20", - "idref": "xccdf_mil.disa.stig_rule_SV-204550r603261_rule", - "version": "RHEL-07-030710", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-80403-9", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86789", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72165", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000130", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000135", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4674r462646_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:727" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:20", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204551", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the chsh command.", - "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged access commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:718", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"chsh\" command occur.\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F path=/usr/bin/chsh -F auid>=1000 -F auid!=unset -k privileged-priv_change\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000172", - "CCI-000135", - "CCI-000130", - "CCI-002884" - ], - "nist": [ - "AU-12 c", - "AU-3 (1)", - "AU-3 a", - "MA-4 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged access commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204551", - "group_title": "SRG-OS-000037-GPOS-00015", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204551r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:718" - } - }, - "fix_id": "F-4675r462649_fix", - "fixtext_fixref": "F-4675r462649_fix", - "ident": [ - { - "text": "CCE-80404-7", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86791", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72167", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000135", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000130", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204551r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:20", - "idref": "xccdf_mil.disa.stig_rule_SV-204551r603261_rule", - "version": "RHEL-07-030720", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-80404-7", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86791", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72167", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000135", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000130", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4675r462649_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:718" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:20", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204552", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the mount command and syscall.", - "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged mount commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:686", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"mount\" command and syscall occur.\n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S mount -F auid>=1000 -F auid!=unset -k privileged-mount\n-a always,exit -F arch=b64 -S mount -F auid>=1000 -F auid!=unset -k privileged-mount\n-a always,exit -F path=/usr/bin/mount -F auid>=1000 -F auid!=unset -k privileged-mount\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000135", - "CCI-002884" - ], - "nist": [ - "AU-3 (1)", - "MA-4 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged mount commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204552", - "group_title": "SRG-OS-000042-GPOS-00020", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204552r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:686" - } - }, - "fix_id": "F-4676r462652_fix", - "fixtext_fixref": "F-4676r462652_fix", - "ident": [ - { - "text": "CCE-27447-2", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86795", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72171", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000135", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204552r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:20", - "idref": "xccdf_mil.disa.stig_rule_SV-204552r603261_rule", - "version": "RHEL-07-030740", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-27447-2", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86795", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72171", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000135", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4676r462652_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:686" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:20", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204553", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the umount command.", - "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged mount commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:757", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"umount\" command occur.\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F path=/usr/bin/umount -F auid>=1000 -F auid!=unset -k privileged-mount\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000135", - "CCI-002884" - ], - "nist": [ - "AU-3 (1)", - "MA-4 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged mount commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204553", - "group_title": "SRG-OS-000042-GPOS-00020", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204553r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:757" - } - }, - "fix_id": "F-4677r462655_fix", - "fixtext_fixref": "F-4677r462655_fix", - "ident": [ - { - "text": "CCE-80405-4", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86797", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72173", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000135", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204553r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:20", - "idref": "xccdf_mil.disa.stig_rule_SV-204553r603261_rule", - "version": "RHEL-07-030750", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-80405-4", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86797", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72173", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000135", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4677r462655_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:757" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:20", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204554", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the postdrop command.", - "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged postfix commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:736", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"postdrop\" command occur.\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F path=/usr/sbin/postdrop -F auid>=1000 -F auid!=unset -k privileged-postfix\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000135", - "CCI-002884" - ], - "nist": [ - "AU-3 (1)", - "MA-4 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged postfix commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204554", - "group_title": "SRG-OS-000042-GPOS-00020", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204554r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:736" - } - }, - "fix_id": "F-4678r462658_fix", - "fixtext_fixref": "F-4678r462658_fix", - "ident": [ - { - "text": "CCE-80406-2", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86799", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72175", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000135", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204554r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:20", - "idref": "xccdf_mil.disa.stig_rule_SV-204554r603261_rule", - "version": "RHEL-07-030760", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-80406-2", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86799", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72175", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000135", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4678r462658_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:736" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:20", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204555", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the postqueue command.", - "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged postfix commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:739", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"postqueue\" command occur.\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F path=/usr/sbin/postqueue -F auid>=1000 -F auid!=unset -k privileged-postfix\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000135", - "CCI-002884" - ], - "nist": [ - "AU-3 (1)", - "MA-4 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged postfix commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204555", - "group_title": "SRG-OS-000042-GPOS-00020", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204555r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:739" - } - }, - "fix_id": "F-4679r462661_fix", - "fixtext_fixref": "F-4679r462661_fix", - "ident": [ - { - "text": "CCE-80407-0", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86801", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72177", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000135", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204555r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:20", - "idref": "xccdf_mil.disa.stig_rule_SV-204555r603261_rule", - "version": "RHEL-07-030770", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-80407-0", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86801", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72177", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000135", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4679r462661_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:739" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:20", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204556", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the ssh-keysign command.", - "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged ssh commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:745", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"ssh-keysign\" command occur.\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F path=/usr/libexec/openssh/ssh-keysign -F auid>=1000 -F auid!=unset -k privileged-ssh\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000135", - "CCI-000172", - "CCI-002884" - ], - "nist": [ - "AU-3 (1)", - "AU-12 c", - "MA-4 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged ssh commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204556", - "group_title": "SRG-OS-000042-GPOS-00020", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204556r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:745" - } - }, - "fix_id": "F-4680r462664_fix", - "fixtext_fixref": "F-4680r462664_fix", - "ident": [ - { - "text": "CCE-80408-8", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86803", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72179", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000135", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204556r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:20", - "idref": "xccdf_mil.disa.stig_rule_SV-204556r603261_rule", - "version": "RHEL-07-030780", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-80408-8", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86803", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72179", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000135", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4680r462664_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:745" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:20", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204557", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the crontab command.", - "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:721", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"crontab\" command occur.\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F path=/usr/bin/crontab -F auid>=1000 -F auid!=unset -k privileged-cron\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000172", - "CCI-000135", - "CCI-002884" - ], - "nist": [ - "AU-12 c", - "AU-3 (1)", - "MA-4 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204557", - "group_title": "SRG-OS-000042-GPOS-00020", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204557r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:721" - } - }, - "fix_id": "F-4681r462667_fix", - "fixtext_fixref": "F-4681r462667_fix", - "ident": [ - { - "text": "CCE-80410-4", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86807", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72183", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000135", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204557r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:20", - "idref": "xccdf_mil.disa.stig_rule_SV-204557r603261_rule", - "version": "RHEL-07-030800", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-80410-4", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86807", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72183", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000135", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4681r462667_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:721" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:20", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204558", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the pam_timestamp_check command.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:730", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"pam_timestamp_check\" command occur.\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F path=/usr/sbin/pam_timestamp_check -F auid>=1000 -F auid!=unset -k privileged-pam\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000172" - ], - "nist": [ - "AU-12 c" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204558", - "group_title": "SRG-OS-000471-GPOS-00215", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204558r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:730" - } - }, - "fix_id": "F-4682r462670_fix", - "fixtext_fixref": "F-4682r462670_fix", - "ident": [ - { - "text": "CCE-80411-2", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86809", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72185", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204558r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:20", - "idref": "xccdf_mil.disa.stig_rule_SV-204558r603261_rule", - "version": "RHEL-07-030810", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-80411-2", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86809", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72185", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4682r462670_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:730" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:20", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204559", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the create_module syscall.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nSatisfies: SRG-OS-000471-GPOS-00216, SRG-OS-000477-GPOS-00222", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:93705", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"create_module\" syscall occur.\n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S create_module -k module-change\n\n-a always,exit -F arch=b64 -S create_module -k module-change\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000172" - ], - "nist": [ - "AU-12 c" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000471-GPOS-00216, SRG-OS-000477-GPOS-00222\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204559", - "group_title": "SRG-OS-000471-GPOS-00216", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204559r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:93705" - } - }, - "fix_id": "F-4683r88870_fix", - "fixtext_fixref": "F-4683r88870_fix", - "ident": [ - { - "text": "SV-93705", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-78999", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204559r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:20", - "idref": "xccdf_mil.disa.stig_rule_SV-204559r603261_rule", - "version": "RHEL-07-030819", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "SV-93705", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-78999", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4683r88870_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:93705" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:20", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204560", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the init_module syscall.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nSatisfies: SRG-OS-000471-GPOS-00216, SRG-OS-000477-GPOS-00222", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:657", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"init_module\" syscall occur.\n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S init_module -k module-change\n\n-a always,exit -F arch=b64 -S init_module -k module-change\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000172" - ], - "nist": [ - "AU-12 c" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000471-GPOS-00216, SRG-OS-000477-GPOS-00222\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204560", - "group_title": "SRG-OS-000471-GPOS-00216", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204560r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:657" - } - }, - "fix_id": "F-4684r88873_fix", - "fixtext_fixref": "F-4684r88873_fix", - "ident": [ - { - "text": "CCE-80414-6", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86811", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72187", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204560r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:20", - "idref": "xccdf_mil.disa.stig_rule_SV-204560r603261_rule", - "version": "RHEL-07-030820", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-80414-6", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86811", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72187", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4684r88873_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:657" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:20", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204561", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the finit_module syscall.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nSatisfies: SRG-OS-000471-GPOS-00216, SRG-OS-000477-GPOS-00222", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:93707", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"finit_module\" syscall occur.\n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S finit_module -k module-change\n\n-a always,exit -F arch=b64 -S finit_module -k module-change\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000172" - ], - "nist": [ - "AU-12 c" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000471-GPOS-00216, SRG-OS-000477-GPOS-00222\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204561", - "group_title": "SRG-OS-000471-GPOS-00216", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204561r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:93707" - } - }, - "fix_id": "F-4685r88876_fix", - "fixtext_fixref": "F-4685r88876_fix", - "ident": [ - { - "text": "CCE-80547-3", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-93707", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-79001", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204561r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:21", - "idref": "xccdf_mil.disa.stig_rule_SV-204561r603261_rule", - "version": "RHEL-07-030821", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-80547-3", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-93707", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-79001", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4685r88876_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:93707" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:21", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204562", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the delete_module syscall.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nSatisfies: SRG-OS-000471-GPOS-00216, SRG-OS-000477-GPOS-00222", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:658", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"delete_module\" syscall occur.\n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S delete_module -k module-change\n\n-a always,exit -F arch=b64 -S delete_module -k module-change\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000172" - ], - "nist": [ - "AU-12 c" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000471-GPOS-00216, SRG-OS-000477-GPOS-00222\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204562", - "group_title": "SRG-OS-000471-GPOS-00216", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204562r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:658" - } - }, - "fix_id": "F-4686r88879_fix", - "fixtext_fixref": "F-4686r88879_fix", - "ident": [ - { - "text": "CCE-80415-3", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86813", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72189", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204562r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:21", - "idref": "xccdf_mil.disa.stig_rule_SV-204562r603261_rule", - "version": "RHEL-07-030830", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-80415-3", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86813", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72189", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4686r88879_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:658" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:21", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204563", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the kmod command.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000471-GPOS-00216, SRG-OS-000477-GPOS-00222", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:86815", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"kmod\" command occur.\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-w /usr/bin/kmod -p x -F auid!=unset -k module-change\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000172" - ], - "nist": [ - "AU-12 c" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000471-GPOS-00216, SRG-OS-000477-GPOS-00222\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204563", - "group_title": "SRG-OS-000471-GPOS-00216", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204563r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:86815" - } - }, - "fix_id": "F-4687r462673_fix", - "fixtext_fixref": "F-4687r462673_fix", - "ident": [ - { - "text": "SV-86815", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72191", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204563r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:21", - "idref": "xccdf_mil.disa.stig_rule_SV-204563r603261_rule", - "version": "RHEL-07-030840", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "SV-86815", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72191", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4687r462673_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:86815" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:21", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204564", - "title": "The Red Hat Enterprise Linux operating system must generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/passwd.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nSatisfies: SRG-OS-000004-GPOS-00004, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000476-GPOS-00221", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:875", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records for all account creations, modifications, disabling, and termination events that affect \"/etc/passwd\".\n\nAdd or update the following rule \"/etc/audit/rules.d/audit.rules\":\n\n-w /etc/passwd -p wa -k identity\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000018", - "CCI-000172", - "CCI-001403", - "CCI-002130" - ], - "nist": [ - "AC-2 (4)", - "AU-12 c", - "AC-2 (4)", - "AC-2 (4)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000004-GPOS-00004, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000476-GPOS-00221\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204564", - "group_title": "SRG-OS-000004-GPOS-00004", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204564r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:875" - } - }, - "fix_id": "F-4688r88885_fix", - "fixtext_fixref": "F-4688r88885_fix", - "ident": [ - { - "text": "CCE-80435-1", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86821", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72197", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000018", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001403", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002130", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204564r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:21", - "idref": "xccdf_mil.disa.stig_rule_SV-204564r603261_rule", - "version": "RHEL-07-030870", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-80435-1", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86821", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72197", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000018", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001403", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002130", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4688r88885_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:875" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:21", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204565", - "title": "The Red Hat Enterprise Linux operating system must generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/group.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:866", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records for all account creations, modifications, disabling, and termination events that affect \"/etc/group\".\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-w /etc/group -p wa -k identity\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001403", - "CCI-000018", - "CCI-000172", - "CCI-002130" - ], - "nist": [ - "AC-2 (4)", - "AC-2 (4)", - "AU-12 c", - "AC-2 (4)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204565", - "group_title": "SRG-OS-000004-GPOS-00004", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204565r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:866" - } - }, - "fix_id": "F-4689r88888_fix", - "fixtext_fixref": "F-4689r88888_fix", - "ident": [ - { - "text": "CCE-80433-6", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-87817", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-73165", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001403", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000018", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002130", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204565r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:21", - "idref": "xccdf_mil.disa.stig_rule_SV-204565r603261_rule", - "version": "RHEL-07-030871", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-80433-6", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-87817", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-73165", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001403", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000018", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002130", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4689r88888_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:866" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:21", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204566", - "title": "The Red Hat Enterprise Linux operating system must generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/gshadow.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:869", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records for all account creations, modifications, disabling, and termination events that affect \"/etc/gshadow\".\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-w /etc/gshadow -p wa -k identity\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000018", - "CCI-000172", - "CCI-001403", - "CCI-002130" - ], - "nist": [ - "AC-2 (4)", - "AU-12 c", - "AC-2 (4)", - "AC-2 (4)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204566", - "group_title": "SRG-OS-000004-GPOS-00004", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204566r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:869" - } - }, - "fix_id": "F-4690r88891_fix", - "fixtext_fixref": "F-4690r88891_fix", - "ident": [ - { - "text": "CCE-80432-8", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-87819", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-73167", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000018", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001403", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002130", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204566r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:21", - "idref": "xccdf_mil.disa.stig_rule_SV-204566r603261_rule", - "version": "RHEL-07-030872", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-80432-8", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-87819", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-73167", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000018", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001403", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002130", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4690r88891_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:869" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:21", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204567", - "title": "The Red Hat Enterprise Linux operating system must generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/shadow.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:878", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/shadow.\n\nAdd or update the following file system rule in \"/etc/audit/rules.d/audit.rules\":\n\n-w /etc/shadow -p wa -k identity\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001403", - "CCI-000172", - "CCI-000018", - "CCI-002130" - ], - "nist": [ - "AC-2 (4)", - "AU-12 c", - "AC-2 (4)", - "AC-2 (4)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204567", - "group_title": "SRG-OS-000004-GPOS-00004", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204567r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:878" - } - }, - "fix_id": "F-4691r88894_fix", - "fixtext_fixref": "F-4691r88894_fix", - "ident": [ - { - "text": "CCE-80431-0", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-87823", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-73171", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001403", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000018", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002130", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204567r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:21", - "idref": "xccdf_mil.disa.stig_rule_SV-204567r603261_rule", - "version": "RHEL-07-030873", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-80431-0", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-87823", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-73171", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001403", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000018", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002130", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4691r88894_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:878" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:21", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204568", - "title": "The Red Hat Enterprise Linux operating system must generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/opasswd.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:872", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/opasswd.\n\nAdd or update the following file system rule in \"/etc/audit/rules.d/audit.rules\":\n\n-w /etc/security/opasswd -p wa -k identity\n\nThe audit daemon must be restarted for the changes to take effect:\n# systemctl restart auditd", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000018", - "CCI-000172", - "CCI-001403", - "CCI-002130" - ], - "nist": [ - "AC-2 (4)", - "AU-12 c", - "AC-2 (4)", - "AC-2 (4)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204568", - "group_title": "SRG-OS-000004-GPOS-00004", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204568r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:872" - } - }, - "fix_id": "F-4692r88897_fix", - "fixtext_fixref": "F-4692r88897_fix", - "ident": [ - { - "text": "CCE-80430-2", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-87825", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-73173", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000018", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001403", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002130", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204568r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:21", - "idref": "xccdf_mil.disa.stig_rule_SV-204568r603261_rule", - "version": "RHEL-07-030874", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-80430-2", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-87825", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-73173", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000018", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001403", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002130", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4692r88897_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:872" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:21", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204569", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the rename syscall.", - "desc": "If the system is not configured to audit certain activities and write them to an audit log, it is more difficult to detect and track system compromises and damages incurred during a system compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000466-GPOS-00210, SRG-OS-000467-GPOS-00211, SRG-OS-000468-GPOS-00212, SRG-OS-000392-GPOS-00172", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:628", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"rename\" syscall occur.\n\nAdd the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S rename -F auid>=1000 -F auid!=unset -k delete\n\n-a always,exit -F arch=b64 -S rename -F auid>=1000 -F auid!=unset -k delete\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000172", - "CCI-002884" - ], - "nist": [ - "AU-12 c", - "MA-4 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"If the system is not configured to audit certain activities and write them to an audit log, it is more difficult to detect and track system compromises and damages incurred during a system compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000466-GPOS-00210, SRG-OS-000467-GPOS-00211, SRG-OS-000468-GPOS-00212, SRG-OS-000392-GPOS-00172\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204569", - "group_title": "SRG-OS-000466-GPOS-00210", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204569r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:628" - } - }, - "fix_id": "F-4693r462676_fix", - "fixtext_fixref": "F-4693r462676_fix", - "ident": [ - { - "text": "CCE-27206-2", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86823", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72199", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204569r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:21", - "idref": "xccdf_mil.disa.stig_rule_SV-204569r603261_rule", - "version": "RHEL-07-030880", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-27206-2", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86823", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72199", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4693r462676_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:628" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:21", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204570", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the renameat syscall.", - "desc": "If the system is not configured to audit certain activities and write them to an audit log, it is more difficult to detect and track system compromises and damages incurred during a system compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000466-GPOS-00210, SRG-OS-000467-GPOS-00211, SRG-OS-000468-GPOS-00212, SRG-OS-000392-GPOS-00172", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:629", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"renameat\" syscall occur.\n\nAdd the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S renameat -F auid>=1000 -F auid!=unset -k delete\n\n-a always,exit -F arch=b64 -S renameat -F auid>=1000 -F auid!=unset -k delete\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000172", - "CCI-002884" - ], - "nist": [ - "AU-12 c", - "MA-4 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"If the system is not configured to audit certain activities and write them to an audit log, it is more difficult to detect and track system compromises and damages incurred during a system compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000466-GPOS-00210, SRG-OS-000467-GPOS-00211, SRG-OS-000468-GPOS-00212, SRG-OS-000392-GPOS-00172\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204570", - "group_title": "SRG-OS-000466-GPOS-00210", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204570r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:629" - } - }, - "fix_id": "F-4694r462679_fix", - "fixtext_fixref": "F-4694r462679_fix", - "ident": [ - { - "text": "CCE-80413-8", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86825", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72201", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204570r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:21", - "idref": "xccdf_mil.disa.stig_rule_SV-204570r603261_rule", - "version": "RHEL-07-030890", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-80413-8", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86825", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72201", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4694r462679_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:629" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:21", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204571", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the rmdir syscall.", - "desc": "If the system is not configured to audit certain activities and write them to an audit log, it is more difficult to detect and track system compromises and damages incurred during a system compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000466-GPOS-00210, SRG-OS-000467-GPOS-00211, SRG-OS-000468-GPOS-00212, SRG-OS-000392-GPOS-00172", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:625", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"rmdir\" syscall occur.\n\nAdd the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S rmdir -F auid>=1000 -F auid!=unset -k delete\n\n-a always,exit -F arch=b64 -S rmdir -F auid>=1000 -F auid!=unset -k delete\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000172", - "CCI-002884" - ], - "nist": [ - "AU-12 c", - "MA-4 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"If the system is not configured to audit certain activities and write them to an audit log, it is more difficult to detect and track system compromises and damages incurred during a system compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000466-GPOS-00210, SRG-OS-000467-GPOS-00211, SRG-OS-000468-GPOS-00212, SRG-OS-000392-GPOS-00172\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204571", - "group_title": "SRG-OS-000466-GPOS-00210", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204571r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:625" - } - }, - "fix_id": "F-4695r462682_fix", - "fixtext_fixref": "F-4695r462682_fix", - "ident": [ - { - "text": "CCE-80412-0", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86827", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72203", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204571r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:21", - "idref": "xccdf_mil.disa.stig_rule_SV-204571r603261_rule", - "version": "RHEL-07-030900", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-80412-0", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86827", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72203", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4695r462682_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:625" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:21", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204572", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the unlink syscall.", - "desc": "If the system is not configured to audit certain activities and write them to an audit log, it is more difficult to detect and track system compromises and damages incurred during a system compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000466-GPOS-00210, SRG-OS-000467-GPOS-00211, SRG-OS-000468-GPOS-00212, SRG-OS-000392-GPOS-00172", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:626", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"unlink\" syscall occur.\n\nAdd the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S unlink -F auid>=1000 -F auid!=unset -k delete\n\n-a always,exit -F arch=b64 -S unlink -F auid>=1000 -F auid!=unset -k delete\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000172", - "CCI-002884" - ], - "nist": [ - "AU-12 c", - "MA-4 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"If the system is not configured to audit certain activities and write them to an audit log, it is more difficult to detect and track system compromises and damages incurred during a system compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000466-GPOS-00210, SRG-OS-000467-GPOS-00211, SRG-OS-000468-GPOS-00212, SRG-OS-000392-GPOS-00172\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204572", - "group_title": "SRG-OS-000466-GPOS-00210", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204572r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:626" - } - }, - "fix_id": "F-4696r462685_fix", - "fixtext_fixref": "F-4696r462685_fix", - "ident": [ - { - "text": "CCE-27206-2", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86829", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72205", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204572r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:21", - "idref": "xccdf_mil.disa.stig_rule_SV-204572r603261_rule", - "version": "RHEL-07-030910", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-27206-2", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86829", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72205", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4696r462685_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:626" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:21", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204573", - "title": "The Red Hat Enterprise Linux operating system must audit all uses of the unlinkat syscall.", - "desc": "If the system is not configured to audit certain activities and write them to an audit log, it is more difficult to detect and track system compromises and damages incurred during a system compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000466-GPOS-00210, SRG-OS-000467-GPOS-00211, SRG-OS-000468-GPOS-00212, SRG-OS-000392-GPOS-00172", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:627", - "label": "check" - }, - { - "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"unlinkat\" syscall occur.\n\nAdd the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S unlinkat -F auid>=1000 -F auid!=unset -k delete\n\n-a always,exit -F arch=b64 -S unlinkat -F auid>=1000 -F auid!=unset -k delete\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000172", - "CCI-002884" - ], - "nist": [ - "AU-12 c", - "MA-4 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"If the system is not configured to audit certain activities and write them to an audit log, it is more difficult to detect and track system compromises and damages incurred during a system compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000466-GPOS-00210, SRG-OS-000467-GPOS-00211, SRG-OS-000468-GPOS-00212, SRG-OS-000392-GPOS-00172\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204573", - "group_title": "SRG-OS-000466-GPOS-00210", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204573r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:627" - } - }, - "fix_id": "F-4697r462688_fix", - "fixtext_fixref": "F-4697r462688_fix", - "ident": [ - { - "text": "CCE-27206-2", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86831", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72207", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204573r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:21", - "idref": "xccdf_mil.disa.stig_rule_SV-204573r603261_rule", - "version": "RHEL-07-030920", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-27206-2", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86831", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72207", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000172", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002884", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4697r462688_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:627" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:21", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204576", - "title": "The Red Hat Enterprise Linux operating system must limit the number of concurrent sessions to 10 for all accounts and/or account types.", - "desc": "Operating system management includes the ability to control the number of users and user sessions that utilize an operating system. Limiting the number of allowed users and sessions per user is helpful in reducing the risks related to DoS attacks.\n\nThis requirement addresses concurrent sessions for information system accounts and does not address concurrent sessions by single users via multiple system accounts. The maximum number of concurrent sessions should be defined based on mission needs and the operational environment for each system.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:449", - "label": "check" - }, - { - "data": "Configure the operating system to limit the number of concurrent sessions to \"10\" for all accounts and/or account types.\n\nAdd the following line to the top of the /etc/security/limits.conf or in a \".conf\" file defined in /etc/security/limits.d/ :\n\n* hard maxlogins 10", - "label": "fix" - } - ], - "impact": 0.3, - "refs": [], - "tags": { - "cci": [ - "CCI-000054" - ], - "nist": [ - "AC-10" - ], - "severity": "low", - "description": "{\"VulnDiscussion\":\"Operating system management includes the ability to control the number of users and user sessions that utilize an operating system. Limiting the number of allowed users and sessions per user is helpful in reducing the risks related to DoS attacks.\\n\\nThis requirement addresses concurrent sessions for information system accounts and does not address concurrent sessions by single users via multiple system accounts. The maximum number of concurrent sessions should be defined based on mission needs and the operational environment for each system.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204576", - "group_title": "SRG-OS-000027-GPOS-00008", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204576r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-export": { - "value-id": "xccdf_mil.disa.stig_value_var_accounts_max_concurrent_login_sessions", - "export-name": "oval:mil.disa.stig.rhel7:var:3792" - }, - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:449" - } - }, - "fix_id": "F-4700r88921_fix", - "fixtext_fixref": "F-4700r88921_fix", - "ident": [ - { - "text": "CCE-27081-9", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72217", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86841", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000054", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204576r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:21", - "idref": "xccdf_mil.disa.stig_rule_SV-204576r603261_rule", - "version": "RHEL-07-040000", - "severity": "low", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-27081-9", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72217", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86841", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000054", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4700r88921_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-export": { - "value-id": "xccdf_mil.disa.stig_value_var_accounts_max_concurrent_login_sessions", - "export-name": "oval:mil.disa.stig.rhel7:var:3792" - }, - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:449" - } - } - }, - "value": { - "type": "number", - "Id": "xccdf_mil.disa.stig_value_var_accounts_max_concurrent_login_sessions", - "id": "xccdf_mil.disa.stig_value_var_accounts_max_concurrent_login_sessions", - "cdf:title": "Maximum concurrent login sessions", - "cdf:description": "Maximum number of concurrent sessions by a user", - "cdf:value": [ - 10, - { - "text": 1, - "selector": "1" - }, - { - "text": 3, - "selector": "3" - }, - { - "text": 5, - "selector": "5" - }, - { - "text": 10, - "selector": "10" - }, - { - "text": 15, - "selector": "15" - }, - { - "text": 20, - "selector": "20" - } - ] - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:21", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204578", - "title": "The Red Hat Enterprise Linux 7 operating system must implement DoD-approved encryption to protect the confidentiality of SSH connections.", - "desc": "Unapproved mechanisms that are used for authentication to the cryptographic module are not verified and therefore cannot be relied upon to provide confidentiality or integrity, and DoD data may be compromised.\n\nOperating systems utilizing encryption are required to use FIPS-compliant mechanisms for authenticating to cryptographic modules.\n\nFIPS 140-2 is the current standard for validating that mechanisms used to access cryptographic modules utilize authentication that meets DoD requirements. This allows for Security Levels 1, 2, 3, or 4 for use on a general purpose computing system.\n\nBy specifying a cipher list with the order of ciphers being in a \"strongest to weakest\" orientation, the system will automatically attempt to use the strongest cipher for securing SSH connections.\n\nSatisfies: SRG-OS-000033-GPOS-00014, SRG-OS-000120-GPOS-00061, SRG-OS-000125-GPOS-00065, SRG-OS-000250-GPOS-00093, SRG-OS-000393-GPOS-00173", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:1399", - "label": "check" - }, - { - "data": "Configure SSH to use FIPS 140-2 approved cryptographic algorithms.\n\nAdd the following line (or modify the line to have the required value) to the \"/etc/ssh/sshd_config\" file (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor).\n\nCiphers aes256-ctr,aes192-ctr,aes128-ctr\n\nThe SSH service must be restarted for changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366", - "CCI-000803", - "CCI-000068" - ], - "nist": [ - "CM-6 b", - "IA-7", - "AC-17 (2)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Unapproved mechanisms that are used for authentication to the cryptographic module are not verified and therefore cannot be relied upon to provide confidentiality or integrity, and DoD data may be compromised.\\n\\nOperating systems utilizing encryption are required to use FIPS-compliant mechanisms for authenticating to cryptographic modules.\\n\\nFIPS 140-2 is the current standard for validating that mechanisms used to access cryptographic modules utilize authentication that meets DoD requirements. This allows for Security Levels 1, 2, 3, or 4 for use on a general purpose computing system.\\n\\nBy specifying a cipher list with the order of ciphers being in a \\\"strongest to weakest\\\" orientation, the system will automatically attempt to use the strongest cipher for securing SSH connections.\\n\\nSatisfies: SRG-OS-000033-GPOS-00014, SRG-OS-000120-GPOS-00061, SRG-OS-000125-GPOS-00065, SRG-OS-000250-GPOS-00093, SRG-OS-000393-GPOS-00173\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204578", - "group_title": "SRG-OS-000033-GPOS-00014", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204578r603843_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:1399" - } - }, - "fix_id": "F-4702r603842_fix", - "fixtext_fixref": "F-4702r603842_fix", - "ident": [ - { - "text": "CCE-27295-5", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72221", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86845", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000803", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000068", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204578r603843_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:22", - "idref": "xccdf_mil.disa.stig_rule_SV-204578r603843_rule", - "version": "RHEL-07-040110", - "severity": "medium", - "weight": "10.0", - "cdf:result": "fail", - "cdf:ident": [ - { - "text": "CCE-27295-5", - "system": "http://cce.mitre.org" - }, - { - "text": "V-72221", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86845", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000803", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000068", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4702r603842_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:1399" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:22", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204584", - "title": "The Red Hat Enterprise Linux operating system must implement virtual address space randomization.", - "desc": "Address space layout randomization (ASLR) makes it more difficult for an attacker to predict the location of attack code he or she has introduced into a process's address space during an attempt at exploitation. Additionally, ASLR also makes it more difficult for an attacker to know the location of existing code in order to repurpose it using return-oriented programming (ROP) techniques.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:92521", - "label": "check" - }, - { - "data": "Configure the operating system implement virtual address space randomization.\n\nSet the system to the required kernel parameter by adding the following line to \"/etc/sysctl.conf\" or a config file in the /etc/sysctl.d/ directory (or modify the line to have the required value):\n\nkernel.randomize_va_space = 2\n\nIssue the following command to make the changes take effect:\n\n# sysctl --system", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Address space layout randomization (ASLR) makes it more difficult for an attacker to predict the location of attack code he or she has introduced into a process's address space during an attempt at exploitation. Additionally, ASLR also makes it more difficult for an attacker to know the location of existing code in order to repurpose it using return-oriented programming (ROP) techniques.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204584", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204584r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:92521" - } - }, - "fix_id": "F-4708r88945_fix", - "fixtext_fixref": "F-4708r88945_fix", - "ident": [ - { - "text": "SV-92521", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-77825", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204584r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:22", - "idref": "xccdf_mil.disa.stig_rule_SV-204584r603261_rule", - "version": "RHEL-07-040201", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "SV-92521", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-77825", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4708r88945_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:92521" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:22", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204585", - "title": "The Red Hat Enterprise Linux operating system must be configured so that all networked systems have SSH installed.", - "desc": "Without protection of the transmitted information, confidentiality and integrity may be compromised because unprotected communications can be intercepted and either read or altered.\n\nThis requirement applies to both internal and external networks and all types of information system components from which information can be transmitted (e.g., servers, mobile devices, notebook computers, printers, copiers, scanners, and facsimile machines). Communication paths outside the physical protection of a controlled boundary are exposed to the possibility of interception and modification.\n\nProtecting the confidentiality and integrity of organizational information can be accomplished by physical means (e.g., employing physical distribution systems) or by logical means (e.g., employing cryptographic techniques). If physical means of protection are employed, logical means (cryptography) do not have to be employed, and vice versa.\n\nSatisfies: SRG-OS-000423-GPOS-00187, SRG-OS-000424-GPOS-00188, SRG-OS-000425-GPOS-00189, SRG-OS-000426-GPOS-00190", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:4248", - "label": "check" - }, - { - "data": "Install SSH packages onto the host with the following commands:\n\n# yum install openssh-server.x86_64", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-002422", - "CCI-002418", - "CCI-002420", - "CCI-002421" - ], - "nist": [ - "SC-8 (2)", - "SC-8", - "SC-8 (2)", - "SC-8 (1)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without protection of the transmitted information, confidentiality and integrity may be compromised because unprotected communications can be intercepted and either read or altered.\\n\\nThis requirement applies to both internal and external networks and all types of information system components from which information can be transmitted (e.g., servers, mobile devices, notebook computers, printers, copiers, scanners, and facsimile machines). Communication paths outside the physical protection of a controlled boundary are exposed to the possibility of interception and modification.\\n\\nProtecting the confidentiality and integrity of organizational information can be accomplished by physical means (e.g., employing physical distribution systems) or by logical means (e.g., employing cryptographic techniques). If physical means of protection are employed, logical means (cryptography) do not have to be employed, and vice versa.\\n\\nSatisfies: SRG-OS-000423-GPOS-00187, SRG-OS-000424-GPOS-00188, SRG-OS-000425-GPOS-00189, SRG-OS-000426-GPOS-00190\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204585", - "group_title": "SRG-OS-000423-GPOS-00187", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204585r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:4248" - } - }, - "fix_id": "F-4709r88948_fix", - "fixtext_fixref": "F-4709r88948_fix", - "ident": [ - { - "text": "CCE-80215-7", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86857", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72233", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-002422", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002418", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002420", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002421", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204585r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:22", - "idref": "xccdf_mil.disa.stig_rule_SV-204585r603261_rule", - "version": "RHEL-07-040300", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-80215-7", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86857", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72233", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-002422", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002418", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002420", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002421", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4709r88948_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:4248" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:22", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204587", - "title": "The Red Hat Enterprise Linux operating system must be configured so that all network connections associated with SSH traffic are terminated at the end of the session or after 10 minutes of inactivity, except to fulfill documented and validated mission requirements.", - "desc": "Terminating an idle SSH session within a short time period reduces the window of opportunity for unauthorized personnel to take control of a management session enabled on the console or console port that has been left unattended. In addition, quickly terminating an idle SSH session will also free up resources committed by the managed network element.\n\nTerminating network connections associated with communications sessions includes, for example, de-allocating associated TCP/IP address/port pairs at the operating system level and de-allocating networking assignments at the application level if multiple application sessions are using a single operating system-level network connection. This does not mean that the operating system terminates all sessions or network access; it only ends the inactive session and releases the resources associated with that session.\n\nSatisfies: SRG-OS-000163-GPOS-00072, SRG-OS-000279-GPOS-00109", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:1391", - "label": "check" - }, - { - "data": "Configure the operating system to automatically terminate a user session after inactivity time-outs have expired or at shutdown.\n\nAdd the following line (or modify the line to have the required value) to the \"/etc/ssh/sshd_config\" file (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor):\n\nClientAliveInterval 600\n\nThe SSH service must be restarted for changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001133", - "CCI-002361" - ], - "nist": [ - "SC-10", - "AC-12" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Terminating an idle SSH session within a short time period reduces the window of opportunity for unauthorized personnel to take control of a management session enabled on the console or console port that has been left unattended. In addition, quickly terminating an idle SSH session will also free up resources committed by the managed network element.\\n\\nTerminating network connections associated with communications sessions includes, for example, de-allocating associated TCP/IP address/port pairs at the operating system level and de-allocating networking assignments at the application level if multiple application sessions are using a single operating system-level network connection. This does not mean that the operating system terminates all sessions or network access; it only ends the inactive session and releases the resources associated with that session.\\n\\nSatisfies: SRG-OS-000163-GPOS-00072, SRG-OS-000279-GPOS-00109\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204587", - "group_title": "SRG-OS-000163-GPOS-00072", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204587r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-export": { - "value-id": "xccdf_mil.disa.stig_value_sshd_idle_timeout_value", - "export-name": "oval:mil.disa.stig.rhel7:var:3866" - }, - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:1391" - } - }, - "fix_id": "F-4711r88954_fix", - "fixtext_fixref": "F-4711r88954_fix", - "ident": [ - { - "text": "CCE-27433-2", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86861", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72237", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001133", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002361", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204587r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:23", - "idref": "xccdf_mil.disa.stig_rule_SV-204587r603261_rule", - "version": "RHEL-07-040320", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-27433-2", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86861", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72237", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001133", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002361", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4711r88954_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-export": { - "value-id": "xccdf_mil.disa.stig_value_sshd_idle_timeout_value", - "export-name": "oval:mil.disa.stig.rhel7:var:3866" - }, - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:1391" - } - } - }, - "value": { - "type": "number", - "Id": "xccdf_mil.disa.stig_value_sshd_idle_timeout_value", - "id": "xccdf_mil.disa.stig_value_sshd_idle_timeout_value", - "cdf:title": "SSH session Idle time", - "cdf:description": "Specify duration of allowed idle time.", - "cdf:value": [ - 600, - { - "text": 300, - "selector": "5_minutes" - }, - { - "text": 600, - "selector": "10_minutes" - }, - { - "text": 900, - "selector": "15_minutes" - }, - { - "text": 3600, - "selector": "60_minutes" - }, - { - "text": 7200, - "selector": "120_minutes" - } - ] - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:23", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204588", - "title": "The Red Hat Enterprise Linux operating system must be configured so that the SSH daemon does not allow authentication using RSA rhosts authentication.", - "desc": "Configuring this setting for the SSH daemon provides additional assurance that remote logon via SSH will require a password, even in the event of misconfiguration elsewhere.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:1379", - "label": "check" - }, - { - "data": "Configure the SSH daemon to not allow authentication using RSA rhosts authentication.\n\nAdd the following line in \"/etc/ssh/sshd_config\", or uncomment the line and set the value to \"no\":\n\nRhostsRSAAuthentication no\n\nThe SSH service must be restarted for changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Configuring this setting for the SSH daemon provides additional assurance that remote logon via SSH will require a password, even in the event of misconfiguration elsewhere.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204588", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204588r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:1379" - } - }, - "fix_id": "F-4712r88957_fix", - "fixtext_fixref": "F-4712r88957_fix", - "ident": [ - { - "text": "CCE-80373-4", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86863", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72239", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204588r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:23", - "idref": "xccdf_mil.disa.stig_rule_SV-204588r603261_rule", - "version": "RHEL-07-040330", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-80373-4", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86863", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72239", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4712r88957_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:1379" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:23", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204589", - "title": "The Red Hat Enterprise Linux operating system must be configured so that all network connections associated with SSH traffic terminate after a period of inactivity.", - "desc": "Terminating an idle SSH session within a short time period reduces the window of opportunity for unauthorized personnel to take control of a management session enabled on the console or console port that has been left unattended. In addition, quickly terminating an idle SSH session will also free up resources committed by the managed network element.\n\nTerminating network connections associated with communications sessions includes, for example, de-allocating associated TCP/IP address/port pairs at the operating system level and de-allocating networking assignments at the application level if multiple application sessions are using a single operating system-level network connection. This does not mean that the operating system terminates all sessions or network access; it only ends the inactive session and releases the resources associated with that session.\n\nSatisfies: SRG-OS-000163-GPOS-00072, SRG-OS-000279-GPOS-00109", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:1393", - "label": "check" - }, - { - "data": "Configure the operating system to terminate automatically a user session after inactivity time-outs have expired or at shutdown.\n\nAdd the following line (or modify the line to have the required value) to the \"/etc/ssh/sshd_config\" file (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor):\n\nClientAliveCountMax 0\n\nThe SSH service must be restarted for changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001133", - "CCI-002361" - ], - "nist": [ - "SC-10", - "AC-12" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Terminating an idle SSH session within a short time period reduces the window of opportunity for unauthorized personnel to take control of a management session enabled on the console or console port that has been left unattended. In addition, quickly terminating an idle SSH session will also free up resources committed by the managed network element.\\n\\nTerminating network connections associated with communications sessions includes, for example, de-allocating associated TCP/IP address/port pairs at the operating system level and de-allocating networking assignments at the application level if multiple application sessions are using a single operating system-level network connection. This does not mean that the operating system terminates all sessions or network access; it only ends the inactive session and releases the resources associated with that session.\\n\\nSatisfies: SRG-OS-000163-GPOS-00072, SRG-OS-000279-GPOS-00109\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204589", - "group_title": "SRG-OS-000163-GPOS-00072", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204589r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:1393" - } - }, - "fix_id": "F-4713r88960_fix", - "fixtext_fixref": "F-4713r88960_fix", - "ident": [ - { - "text": "CCE-27082-7", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86865", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72241", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001133", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002361", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204589r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:23", - "idref": "xccdf_mil.disa.stig_rule_SV-204589r603261_rule", - "version": "RHEL-07-040340", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-27082-7", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86865", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72241", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001133", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-002361", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4713r88960_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:1393" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:23", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204590", - "title": "The Red Hat Enterprise Linux operating system must be configured so that the SSH daemon does not allow authentication using rhosts authentication.", - "desc": "Configuring this setting for the SSH daemon provides additional assurance that remote logon via SSH will require a password, even in the event of misconfiguration elsewhere.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:1377", - "label": "check" - }, - { - "data": "Configure the SSH daemon to not allow authentication using known hosts authentication.\n\nAdd the following line in \"/etc/ssh/sshd_config\", or uncomment the line and set the value to \"yes\":\n\nIgnoreRhosts yes", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Configuring this setting for the SSH daemon provides additional assurance that remote logon via SSH will require a password, even in the event of misconfiguration elsewhere.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204590", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204590r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:1377" - } - }, - "fix_id": "F-4714r88963_fix", - "fixtext_fixref": "F-4714r88963_fix", - "ident": [ - { - "text": "CCE-27377-1", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86867", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72243", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204590r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:23", - "idref": "xccdf_mil.disa.stig_rule_SV-204590r603261_rule", - "version": "RHEL-07-040350", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-27377-1", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86867", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72243", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4714r88963_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:1377" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:23", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204591", - "title": "The Red Hat Enterprise Linux operating system must display the date and time of the last successful account logon upon an SSH logon.", - "desc": "Providing users with feedback on when account accesses via SSH last occurred facilitates user recognition and reporting of unauthorized account use.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:166", - "label": "check" - }, - { - "data": "Configure SSH to provide users with feedback on when account accesses last occurred by setting the required configuration options in \"/etc/pam.d/sshd\" or in the \"sshd_config\" file used by the system (\"/etc/ssh/sshd_config\" will be used in the example) (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor).\n\nModify the \"PrintLastLog\" line in \"/etc/ssh/sshd_config\" to match the following:\n\nPrintLastLog yes\n\nThe SSH service must be restarted for changes to \"sshd_config\" to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Providing users with feedback on when account accesses via SSH last occurred facilitates user recognition and reporting of unauthorized account use.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204591", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204591r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:166" - } - }, - "fix_id": "F-4715r88966_fix", - "fixtext_fixref": "F-4715r88966_fix", - "ident": [ - { - "text": "CCE-80225-6", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86869", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72245", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204591r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:23", - "idref": "xccdf_mil.disa.stig_rule_SV-204591r603261_rule", - "version": "RHEL-07-040360", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-80225-6", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86869", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72245", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4715r88966_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:166" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:23", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204592", - "title": "The Red Hat Enterprise Linux operating system must not permit direct logons to the root account using remote access via SSH.", - "desc": "Even though the communications channel may be encrypted, an additional layer of security is gained by extending the policy of not logging on directly as root. In addition, logging on with a user-specific account provides individual accountability of actions performed on the system.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:1381", - "label": "check" - }, - { - "data": "Configure SSH to stop users from logging on remotely as the root user.\n\nEdit the appropriate \"/etc/ssh/sshd_config\" file to uncomment or add the line for the \"PermitRootLogin\" keyword and set its value to \"no\" (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor):\n\nPermitRootLogin no\n\nThe SSH service must be restarted for changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Even though the communications channel may be encrypted, an additional layer of security is gained by extending the policy of not logging on directly as root. In addition, logging on with a user-specific account provides individual accountability of actions performed on the system.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204592", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204592r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:1381" - } - }, - "fix_id": "F-4716r88969_fix", - "fixtext_fixref": "F-4716r88969_fix", - "ident": [ - { - "text": "CCE-27445-6", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86871", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72247", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204592r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:23", - "idref": "xccdf_mil.disa.stig_rule_SV-204592r603261_rule", - "version": "RHEL-07-040370", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-27445-6", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86871", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72247", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4716r88969_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:1381" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:23", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204593", - "title": "The Red Hat Enterprise Linux operating system must be configured so that the SSH daemon does not allow authentication using known hosts authentication.", - "desc": "Configuring this setting for the SSH daemon provides additional assurance that remote logon via SSH will require a password, even in the event of misconfiguration elsewhere.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:1383", - "label": "check" - }, - { - "data": "Configure the SSH daemon to not allow authentication using known hosts authentication.\n\nAdd the following line in \"/etc/ssh/sshd_config\", or uncomment the line and set the value to \"yes\":\n\nIgnoreUserKnownHosts yes\n\nThe SSH service must be restarted for changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Configuring this setting for the SSH daemon provides additional assurance that remote logon via SSH will require a password, even in the event of misconfiguration elsewhere.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204593", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204593r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:1383" - } - }, - "fix_id": "F-4717r88972_fix", - "fixtext_fixref": "F-4717r88972_fix", - "ident": [ - { - "text": "CCE-80372-6", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86873", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72249", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204593r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:23", - "idref": "xccdf_mil.disa.stig_rule_SV-204593r603261_rule", - "version": "RHEL-07-040380", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-80372-6", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86873", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72249", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4717r88972_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:1383" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:23", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204594", - "title": "The Red Hat Enterprise Linux operating system must be configured so that the SSH daemon is configured to only use the SSHv2 protocol.", - "desc": "SSHv1 is an insecure implementation of the SSH protocol and has many well-known vulnerability exploits. Exploits of the SSH daemon could provide immediate root access to the system.\n\nSatisfies: SRG-OS-000074-GPOS-00042, SRG-OS-000480-GPOS-00227", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:1373", - "label": "check" - }, - { - "data": "Remove all Protocol lines that reference version \"1\" in \"/etc/ssh/sshd_config\" (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor). The \"Protocol\" line must be as follows:\n\nProtocol 2\n\nThe SSH service must be restarted for changes to take effect.", - "label": "fix" - } - ], - "impact": 0.7, - "refs": [], - "tags": { - "cci": [ - "CCI-000366", - "CCI-000197" - ], - "nist": [ - "CM-6 b", - "IA-5 (1) (c)" - ], - "severity": "high", - "description": "{\"VulnDiscussion\":\"SSHv1 is an insecure implementation of the SSH protocol and has many well-known vulnerability exploits. Exploits of the SSH daemon could provide immediate root access to the system.\\n\\nSatisfies: SRG-OS-000074-GPOS-00042, SRG-OS-000480-GPOS-00227\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204594", - "group_title": "SRG-OS-000074-GPOS-00042", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204594r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:1373" - } - }, - "fix_id": "F-4718r88975_fix", - "fixtext_fixref": "F-4718r88975_fix", - "ident": [ - { - "text": "CCE-27320-1", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86875", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72251", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000197", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204594r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:23", - "idref": "xccdf_mil.disa.stig_rule_SV-204594r603261_rule", - "version": "RHEL-07-040390", - "severity": "high", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-27320-1", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86875", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72251", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000197", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4718r88975_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:1373" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:23", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204595", - "title": "The Red Hat Enterprise Linux operating system must be configured so that the SSH daemon is configured to only use Message Authentication Codes (MACs) employing FIPS 140-2 approved cryptographic hash algorithms.", - "desc": "DoD information systems are required to use FIPS 140-2 approved cryptographic hash functions. The only SSHv2 hash algorithm meeting this requirement is SHA.\n\nBy specifying a hash algorithm list with the order of hashes being in a \"strongest to weakest\" orientation, the system will automatically attempt to use the strongest hash for securing SSH connections.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:168", - "label": "check" - }, - { - "data": "Edit the \"/etc/ssh/sshd_config\" file to uncomment or add the line for the \"MACs\" keyword and set its value to \"hmac-sha2-512\" and/or \"hmac-sha2-256\" (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor):\n\nMACs hmac-sha2-512,hmac-sha2-256\n\nThe SSH service must be restarted for changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001453" - ], - "nist": [ - "AC-17 (2)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"DoD information systems are required to use FIPS 140-2 approved cryptographic hash functions. The only SSHv2 hash algorithm meeting this requirement is SHA.\\n\\nBy specifying a hash algorithm list with the order of hashes being in a \\\"strongest to weakest\\\" orientation, the system will automatically attempt to use the strongest hash for securing SSH connections.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204595", - "group_title": "SRG-OS-000250-GPOS-00093", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204595r603846_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:168" - } - }, - "fix_id": "F-4719r603845_fix", - "fixtext_fixref": "F-4719r603845_fix", - "ident": [ - { - "text": "CCE-27455-5", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86877", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72253", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001453", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204595r603846_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:23", - "idref": "xccdf_mil.disa.stig_rule_SV-204595r603846_rule", - "version": "RHEL-07-040400", - "severity": "medium", - "weight": "10.0", - "cdf:result": "fail", - "cdf:ident": [ - { - "text": "CCE-27455-5", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86877", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72253", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001453", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4719r603845_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:168" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:23", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204596", - "title": "The Red Hat Enterprise Linux operating system must be configured so that the SSH public host key files have mode 0644 or less permissive.", - "desc": "If a public host key file is modified by an unauthorized user, the SSH service may be compromised.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:120", - "label": "check" - }, - { - "data": "Note: SSH public key files may be found in other directories on the system depending on the installation.\n\nChange the mode of public host key files under \"/etc/ssh\" to \"0644\" with the following command:\n\n# chmod 0644 /etc/ssh/*.key.pub", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"If a public host key file is modified by an unauthorized user, the SSH service may be compromised.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204596", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204596r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:120" - } - }, - "fix_id": "F-4720r88981_fix", - "fixtext_fixref": "F-4720r88981_fix", - "ident": [ - { - "text": "CCE-27311-0", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86879", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72255", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204596r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:23", - "idref": "xccdf_mil.disa.stig_rule_SV-204596r603261_rule", - "version": "RHEL-07-040410", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-27311-0", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86879", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72255", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4720r88981_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:120" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:23", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204597", - "title": "The Red Hat Enterprise Linux operating system must be configured so that the SSH private host key files have mode 0640 or less permissive.", - "desc": "If an unauthorized user obtains the private SSH host key file, the host could be impersonated.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:118", - "label": "check" - }, - { - "data": "Configure the mode of SSH private host key files under \"/etc/ssh\" to \"0640\" with the following command:\n\n# chmod 0640 /path/to/file/ssh_host*key", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"If an unauthorized user obtains the private SSH host key file, the host could be impersonated.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204597", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204597r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:118" - } - }, - "fix_id": "F-4721r88984_fix", - "fixtext_fixref": "F-4721r88984_fix", - "ident": [ - { - "text": "CCE-27485-2", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86881", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72257", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204597r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:23", - "idref": "xccdf_mil.disa.stig_rule_SV-204597r603261_rule", - "version": "RHEL-07-040420", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-27485-2", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86881", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72257", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4721r88984_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:118" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:23", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204598", - "title": "The Red Hat Enterprise Linux operating system must be configured so that the SSH daemon does not permit Generic Security Service Application Program Interface (GSSAPI) authentication unless needed.", - "desc": "GSSAPI authentication is used to provide additional authentication mechanisms to applications. Allowing GSSAPI authentication through SSH exposes the system's GSSAPI to remote hosts, increasing the attack surface of the system. GSSAPI authentication must be disabled unless needed.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:160", - "label": "check" - }, - { - "data": "Uncomment the \"GSSAPIAuthentication\" keyword in \"/etc/ssh/sshd_config\" (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor) and set the value to \"no\":\n\nGSSAPIAuthentication no\n\nThe SSH service must be restarted for changes to take effect.\n\nIf GSSAPI authentication is required, it must be documented, to include the location of the configuration file, with the ISSO.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000318", - "CCI-001812", - "CCI-001813", - "CCI-000368", - "CCI-001814" - ], - "nist": [ - "CM-3 f", - "CM-11 (2)", - "CM-5 (1) (a)", - "CM-6 c", - "CM-5 (1)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"GSSAPI authentication is used to provide additional authentication mechanisms to applications. Allowing GSSAPI authentication through SSH exposes the system's GSSAPI to remote hosts, increasing the attack surface of the system. GSSAPI authentication must be disabled unless needed.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204598", - "group_title": "SRG-OS-000364-GPOS-00151", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204598r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:160" - } - }, - "fix_id": "F-4722r88987_fix", - "fixtext_fixref": "F-4722r88987_fix", - "ident": [ - { - "text": "SV-86883", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72259", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000318", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001812", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001813", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000368", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001814", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204598r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:23", - "idref": "xccdf_mil.disa.stig_rule_SV-204598r603261_rule", - "version": "RHEL-07-040430", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "SV-86883", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72259", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000318", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001812", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001813", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000368", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001814", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4722r88987_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:160" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:23", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204599", - "title": "The Red Hat Enterprise Linux operating system must be configured so that the SSH daemon does not permit Kerberos authentication unless needed.", - "desc": "Kerberos authentication for SSH is often implemented using Generic Security Service Application Program Interface (GSSAPI). If Kerberos is enabled through SSH, the SSH daemon provides a means of access to the system's Kerberos implementation. Vulnerabilities in the system's Kerberos implementation may then be subject to exploitation. To reduce the attack surface of the system, the Kerberos authentication mechanism within SSH must be disabled for systems not using this capability.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:162", - "label": "check" - }, - { - "data": "Uncomment the \"KerberosAuthentication\" keyword in \"/etc/ssh/sshd_config\" (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor) and set the value to \"no\":\n\nKerberosAuthentication no\n\nThe SSH service must be restarted for changes to take effect.\n\nIf Kerberos authentication is required, it must be documented, to include the location of the configuration file, with the ISSO.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000368", - "CCI-001813", - "CCI-001812", - "CCI-001814", - "CCI-000318" - ], - "nist": [ - "CM-6 c", - "CM-5 (1) (a)", - "CM-11 (2)", - "CM-5 (1)", - "CM-3 f" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Kerberos authentication for SSH is often implemented using Generic Security Service Application Program Interface (GSSAPI). If Kerberos is enabled through SSH, the SSH daemon provides a means of access to the system's Kerberos implementation. Vulnerabilities in the system's Kerberos implementation may then be subject to exploitation. To reduce the attack surface of the system, the Kerberos authentication mechanism within SSH must be disabled for systems not using this capability.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204599", - "group_title": "SRG-OS-000364-GPOS-00151", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204599r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:162" - } - }, - "fix_id": "F-4723r88990_fix", - "fixtext_fixref": "F-4723r88990_fix", - "ident": [ - { - "text": "CCE-80221-5", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86885", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72261", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000368", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001813", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001812", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001814", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000318", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204599r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:23", - "idref": "xccdf_mil.disa.stig_rule_SV-204599r603261_rule", - "version": "RHEL-07-040440", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-80221-5", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86885", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72261", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000368", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001813", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001812", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001814", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000318", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4723r88990_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:162" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:23", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204600", - "title": "The Red Hat Enterprise Linux operating system must be configured so that the SSH daemon performs strict mode checking of home directory configuration files.", - "desc": "If other users have access to modify user-specific SSH configuration files, they may be able to log on to the system as another user.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:164", - "label": "check" - }, - { - "data": "Uncomment the \"StrictModes\" keyword in \"/etc/ssh/sshd_config\" (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor) and set the value to \"yes\":\n\nStrictModes yes\n\nThe SSH service must be restarted for changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"If other users have access to modify user-specific SSH configuration files, they may be able to log on to the system as another user.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204600", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204600r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:164" - } - }, - "fix_id": "F-4724r88993_fix", - "fixtext_fixref": "F-4724r88993_fix", - "ident": [ - { - "text": "CCE-80222-3", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86887", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72263", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204600r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:23", - "idref": "xccdf_mil.disa.stig_rule_SV-204600r603261_rule", - "version": "RHEL-07-040450", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-80222-3", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86887", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72263", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4724r88993_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:164" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:23", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204601", - "title": "The Red Hat Enterprise Linux operating system must be configured so that the SSH daemon uses privilege separation.", - "desc": "SSH daemon privilege separation causes the SSH process to drop root privileges when not needed, which would decrease the impact of software vulnerabilities in the unprivileged section.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:171", - "label": "check" - }, - { - "data": "Uncomment the \"UsePrivilegeSeparation\" keyword in \"/etc/ssh/sshd_config\" (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor) and set the value to \"sandbox\" or \"yes\":\n\nUsePrivilegeSeparation sandbox\n\nThe SSH service must be restarted for changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"SSH daemon privilege separation causes the SSH process to drop root privileges when not needed, which would decrease the impact of software vulnerabilities in the unprivileged section.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204601", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204601r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:171" - } - }, - "fix_id": "F-4725r88996_fix", - "fixtext_fixref": "F-4725r88996_fix", - "ident": [ - { - "text": "CCE-80223-1", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86889", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72265", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204601r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:23", - "idref": "xccdf_mil.disa.stig_rule_SV-204601r603261_rule", - "version": "RHEL-07-040460", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-80223-1", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86889", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72265", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4725r88996_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:171" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:23", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204602", - "title": "The Red Hat Enterprise Linux operating system must be configured so that the SSH daemon does not allow compression or only allows compression after successful authentication.", - "desc": "If compression is allowed in an SSH connection prior to authentication, vulnerabilities in the compression software could result in compromise of the system from an unauthenticated connection, potentially with root privileges.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:158", - "label": "check" - }, - { - "data": "Uncomment the \"Compression\" keyword in \"/etc/ssh/sshd_config\" (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor) on the system and set the value to \"delayed\" or \"no\":\n\nCompression no\n\nThe SSH service must be restarted for changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"If compression is allowed in an SSH connection prior to authentication, vulnerabilities in the compression software could result in compromise of the system from an unauthenticated connection, potentially with root privileges.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204602", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204602r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:158" - } - }, - "fix_id": "F-4726r88999_fix", - "fixtext_fixref": "F-4726r88999_fix", - "ident": [ - { - "text": "SV-86891", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72267", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204602r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:23", - "idref": "xccdf_mil.disa.stig_rule_SV-204602r603261_rule", - "version": "RHEL-07-040470", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "SV-86891", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72267", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4726r88999_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:158" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:23", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204605", - "title": "The Red Hat Enterprise Linux operating system must display the date and time of the last successful account logon upon logon.", - "desc": "Providing users with feedback on when account accesses last occurred facilitates user recognition and reporting of unauthorized account use.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:1020", - "label": "check" - }, - { - "data": "Configure the operating system to provide users with feedback on when account accesses last occurred by setting the required configuration options in \"/etc/pam.d/postlogin\".\n\nAdd the following line to the top of \"/etc/pam.d/postlogin\":\n\nsession required pam_lastlog.so showfailed", - "label": "fix" - } - ], - "impact": 0.3, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "low", - "description": "{\"VulnDiscussion\":\"Providing users with feedback on when account accesses last occurred facilitates user recognition and reporting of unauthorized account use.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204605", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204605r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:1020" - } - }, - "fix_id": "F-4729r89008_fix", - "fixtext_fixref": "F-4729r89008_fix", - "ident": [ - { - "text": "SV-86899", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72275", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204605r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:23", - "idref": "xccdf_mil.disa.stig_rule_SV-204605r603261_rule", - "version": "RHEL-07-040530", - "severity": "low", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "SV-86899", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72275", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4729r89008_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:1020" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:23", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204606", - "title": "The Red Hat Enterprise Linux operating system must not contain .shosts files.", - "desc": "The .shosts files are used to configure host-based authentication for individual users or the system via SSH. Host-based authentication is not sufficient for preventing unauthorized access to the system, as it does not require interactive identification and authentication of a connection request, or for the use of two-factor authentication.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:86901", - "label": "check" - }, - { - "data": "Remove any found \".shosts\" files from the system.\n\n# rm /[path]/[to]/[file]/.shosts", - "label": "fix" - } - ], - "impact": 0.7, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "high", - "description": "{\"VulnDiscussion\":\"The .shosts files are used to configure host-based authentication for individual users or the system via SSH. Host-based authentication is not sufficient for preventing unauthorized access to the system, as it does not require interactive identification and authentication of a connection request, or for the use of two-factor authentication.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204606", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204606r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:86901" - } - }, - "fix_id": "F-4730r89011_fix", - "fixtext_fixref": "F-4730r89011_fix", - "ident": [ - { - "text": "SV-86901", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72277", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204606r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:23", - "idref": "xccdf_mil.disa.stig_rule_SV-204606r603261_rule", - "version": "RHEL-07-040540", - "severity": "high", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "SV-86901", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72277", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4730r89011_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:86901" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:23", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204607", - "title": "The Red Hat Enterprise Linux operating system must not contain shosts.equiv files.", - "desc": "The shosts.equiv files are used to configure host-based authentication for the system via SSH. Host-based authentication is not sufficient for preventing unauthorized access to the system, as it does not require interactive identification and authentication of a connection request, or for the use of two-factor authentication.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:86903", - "label": "check" - }, - { - "data": "Remove any found \"shosts.equiv\" files from the system.\n\n# rm /[path]/[to]/[file]/shosts.equiv", - "label": "fix" - } - ], - "impact": 0.7, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "high", - "description": "{\"VulnDiscussion\":\"The shosts.equiv files are used to configure host-based authentication for the system via SSH. Host-based authentication is not sufficient for preventing unauthorized access to the system, as it does not require interactive identification and authentication of a connection request, or for the use of two-factor authentication.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204607", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204607r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:86903" - } - }, - "fix_id": "F-4731r89014_fix", - "fixtext_fixref": "F-4731r89014_fix", - "ident": [ - { - "text": "SV-86903", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72279", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204607r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:23", - "idref": "xccdf_mil.disa.stig_rule_SV-204607r603261_rule", - "version": "RHEL-07-040550", - "severity": "high", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "SV-86903", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72279", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4731r89014_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:86903" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:23", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204609", - "title": "The Red Hat Enterprise Linux operating system must not forward Internet Protocol version 4 (IPv4) source-routed packets.", - "desc": "Source-routed packets allow the source of the packet to suggest that routers forward the packet along a different path than configured on the router, which can be used to bypass network security measures. This requirement applies only to the forwarding of source-routed traffic, such as when IPv4 forwarding is enabled and the system is functioning as a router.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:251", - "label": "check" - }, - { - "data": "Set the system to the required kernel parameter by adding the following line to \"/etc/sysctl.conf\" or a configuration file in the /etc/sysctl.d/ directory (or modify the line to have the required value):\n\nnet.ipv4.conf.all.accept_source_route = 0\n\nIssue the following command to make the changes take effect:\n\n# sysctl -system", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Source-routed packets allow the source of the packet to suggest that routers forward the packet along a different path than configured on the router, which can be used to bypass network security measures. This requirement applies only to the forwarding of source-routed traffic, such as when IPv4 forwarding is enabled and the system is functioning as a router.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204609", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204609r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-export": { - "value-id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_all_accept_source_route_value", - "export-name": "oval:mil.disa.stig.rhel7:var:3771" - }, - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:251" - } - }, - "fix_id": "F-4733r89020_fix", - "fixtext_fixref": "F-4733r89020_fix", - "ident": [ - { - "text": "CCE-27434-0", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86907", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72283", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204609r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:23", - "idref": "xccdf_mil.disa.stig_rule_SV-204609r603261_rule", - "version": "RHEL-07-040610", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-27434-0", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86907", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72283", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4733r89020_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-export": { - "value-id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_all_accept_source_route_value", - "export-name": "oval:mil.disa.stig.rhel7:var:3771" - }, - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:251" - } - } - }, - "value": { - "type": "number", - "Id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_all_accept_source_route_value", - "id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_all_accept_source_route_value", - "cdf:title": "net.ipv4.conf.all.accept_source_route", - "cdf:description": "Trackers could be using source-routed packets to\ngenerate traffic that seems to be intra-net, but actually was\ncreated outside and has been redirected.", - "cdf:value": [ - 0, - { - "text": 1, - "selector": "enabled" - }, - { - "text": 0, - "selector": "disabled" - } - ] - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:23", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204612", - "title": "The Red Hat Enterprise Linux operating system must not forward Internet Protocol version 4 (IPv4) source-routed packets by default.", - "desc": "Source-routed packets allow the source of the packet to suggest that routers forward the packet along a different path than configured on the router, which can be used to bypass network security measures. This requirement applies only to the forwarding of source-routed traffic, such as when IPv4 forwarding is enabled and the system is functioning as a router.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:269", - "label": "check" - }, - { - "data": "Set the system to the required kernel parameter by adding the following line to \"/etc/sysctl.conf\" or a configuration file in the /etc/sysctl.d/ directory (or modify the line to have the required value):\n\nnet.ipv4.conf.default.accept_source_route = 0\n\nIssue the following command to make the changes take effect:\n\n# sysctl --system", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Source-routed packets allow the source of the packet to suggest that routers forward the packet along a different path than configured on the router, which can be used to bypass network security measures. This requirement applies only to the forwarding of source-routed traffic, such as when IPv4 forwarding is enabled and the system is functioning as a router.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204612", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204612r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-export": { - "value-id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_default_accept_source_route_value", - "export-name": "oval:mil.disa.stig.rhel7:var:3776" - }, - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:269" - } - }, - "fix_id": "F-4736r89029_fix", - "fixtext_fixref": "F-4736r89029_fix", - "ident": [ - { - "text": "CCE-80162-1", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86909", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72285", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204612r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:24", - "idref": "xccdf_mil.disa.stig_rule_SV-204612r603261_rule", - "version": "RHEL-07-040620", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-80162-1", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86909", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72285", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4736r89029_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-export": { - "value-id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_default_accept_source_route_value", - "export-name": "oval:mil.disa.stig.rhel7:var:3776" - }, - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:269" - } - } - }, - "value": { - "type": "number", - "Id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_default_accept_source_route_value", - "id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_default_accept_source_route_value", - "cdf:title": "net.ipv4.conf.default.accept_source_route", - "cdf:description": "Disable IP source routing?", - "cdf:value": [ - 0, - { - "text": 1, - "selector": "enabled" - }, - { - "text": 0, - "selector": "disabled" - } - ] - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:24", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204613", - "title": "The Red Hat Enterprise Linux operating system must not respond to Internet Protocol version 4 (IPv4) Internet Control Message Protocol (ICMP) echoes sent to a broadcast address.", - "desc": "Responding to broadcast (ICMP) echoes facilitates network mapping and provides a vector for amplification attacks.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:284", - "label": "check" - }, - { - "data": "Set the system to the required kernel parameter by adding the following line to \"/etc/sysctl.conf\" or a configuration file in the /etc/sysctl.d/ directory (or modify the line to have the required value):\n\nnet.ipv4.icmp_echo_ignore_broadcasts = 1\n\nIssue the following command to make the changes take effect:\n\n# sysctl --system", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Responding to broadcast (ICMP) echoes facilitates network mapping and provides a vector for amplification attacks.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204613", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204613r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-export": { - "value-id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_icmp_echo_ignore_broadcasts_value", - "export-name": "oval:mil.disa.stig.rhel7:var:3780" - }, - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:284" - } - }, - "fix_id": "F-4737r89032_fix", - "fixtext_fixref": "F-4737r89032_fix", - "ident": [ - { - "text": "CCE-80165-4", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86911", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72287", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204613r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:24", - "idref": "xccdf_mil.disa.stig_rule_SV-204613r603261_rule", - "version": "RHEL-07-040630", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-80165-4", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86911", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72287", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4737r89032_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-export": { - "value-id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_icmp_echo_ignore_broadcasts_value", - "export-name": "oval:mil.disa.stig.rhel7:var:3780" - }, - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:284" - } - } - }, - "value": { - "type": "number", - "Id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_icmp_echo_ignore_broadcasts_value", - "id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_icmp_echo_ignore_broadcasts_value", - "cdf:title": "net.ipv4.icmp_echo_ignore_broadcasts", - "cdf:description": "Ignore all ICMP ECHO and TIMESTAMP requests sent to it via broadcast/multicast", - "cdf:value": [ - 1, - { - "text": 1, - "selector": "enabled" - }, - { - "text": 0, - "selector": "disabled" - } - ] - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:24", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204614", - "title": "The Red Hat Enterprise Linux operating system must prevent Internet Protocol version 4 (IPv4) Internet Control Message Protocol (ICMP) redirect messages from being accepted.", - "desc": "ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages modify the host's route table and are unauthenticated. An illicit ICMP redirect message could result in a man-in-the-middle attack.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:266", - "label": "check" - }, - { - "data": "Set the system to not accept IPv4 ICMP redirect messages by adding the following line to \"/etc/sysctl.conf\" or a configuration file in the /etc/sysctl.d/ directory (or modify the line to have the required value):\n\nnet.ipv4.conf.default.accept_redirects = 0\n\nIssue the following command to make the changes take effect:\n\n# sysctl --system", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages modify the host's route table and are unauthenticated. An illicit ICMP redirect message could result in a man-in-the-middle attack.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204614", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204614r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-export": { - "value-id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_default_accept_redirects_value", - "export-name": "oval:mil.disa.stig.rhel7:var:3775" - }, - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:266" - } - }, - "fix_id": "F-4738r89035_fix", - "fixtext_fixref": "F-4738r89035_fix", - "ident": [ - { - "text": "CCE-80163-9", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86913", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72289", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204614r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:24", - "idref": "xccdf_mil.disa.stig_rule_SV-204614r603261_rule", - "version": "RHEL-07-040640", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-80163-9", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86913", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72289", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4738r89035_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-export": { - "value-id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_default_accept_redirects_value", - "export-name": "oval:mil.disa.stig.rhel7:var:3775" - }, - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:266" - } - } - }, - "value": { - "type": "number", - "Id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_default_accept_redirects_value", - "id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_default_accept_redirects_value", - "cdf:title": "net.ipv4.conf.default.accept_redirects", - "cdf:description": "Disable ICMP Redirect Acceptance?", - "cdf:value": [ - 0, - { - "text": 1, - "selector": "enabled" - }, - { - "text": 0, - "selector": "disabled" - } - ] - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:24", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204615", - "title": "The Red Hat Enterprise Linux operating system must ignore Internet Protocol version 4 (IPv4) Internet Control Message Protocol (ICMP) redirect messages.", - "desc": "ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages modify the host's route table and are unauthenticated. An illicit ICMP redirect message could result in a man-in-the-middle attack.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:248", - "label": "check" - }, - { - "data": "Set the system to ignore IPv4 ICMP redirect messages by adding the following line to \"/etc/sysctl.conf\" or a configuration file in the /etc/sysctl.d/ directory (or modify the line to have the required value):\n\nnet.ipv4.conf.all.accept_redirects = 0\n\nIssue the following command to make the changes take effect:\n\n# sysctl --system", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages modify the host's route table and are unauthenticated. An illicit ICMP redirect message could result in a man-in-the-middle attack.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204615", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204615r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-export": { - "value-id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_all_accept_redirects_value", - "export-name": "oval:mil.disa.stig.rhel7:var:3770" - }, - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:248" - } - }, - "fix_id": "F-4739r89038_fix", - "fixtext_fixref": "F-4739r89038_fix", - "ident": [ - { - "text": "CCE-80158-9", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-87827", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-73175", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204615r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:24", - "idref": "xccdf_mil.disa.stig_rule_SV-204615r603261_rule", - "version": "RHEL-07-040641", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-80158-9", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-87827", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-73175", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4739r89038_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-export": { - "value-id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_all_accept_redirects_value", - "export-name": "oval:mil.disa.stig.rhel7:var:3770" - }, - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:248" - } - } - }, - "value": { - "type": "number", - "Id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_all_accept_redirects_value", - "id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_all_accept_redirects_value", - "cdf:title": "net.ipv4.conf.all.accept_redirects", - "cdf:description": "Disable ICMP Redirect Acceptance", - "cdf:value": [ - 0, - { - "text": 1, - "selector": "enabled" - }, - { - "text": 0, - "selector": "disabled" - } - ] - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:24", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204616", - "title": "The Red Hat Enterprise Linux operating system must not allow interfaces to perform Internet Protocol version 4 (IPv4) Internet Control Message Protocol (ICMP) redirects by default.", - "desc": "ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages contain information from the system's route table, possibly revealing portions of the network topology.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:281", - "label": "check" - }, - { - "data": "Configure the system to not allow interfaces to perform IPv4 ICMP redirects by default.\n\nSet the system to the required kernel parameter by adding the following line to \"/etc/sysctl.conf\" or a configuration file in the /etc/sysctl.d/ directory (or modify the line to have the required value):\n\nnet.ipv4.conf.default.send_redirects = 0\n\nIssue the following command to make the changes take effect:\n\n# sysctl --system", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages contain information from the system's route table, possibly revealing portions of the network topology.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204616", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204616r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:281" - } - }, - "fix_id": "F-4740r89041_fix", - "fixtext_fixref": "F-4740r89041_fix", - "ident": [ - { - "text": "CCE-80156-3", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86915", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72291", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204616r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:24", - "idref": "xccdf_mil.disa.stig_rule_SV-204616r603261_rule", - "version": "RHEL-07-040650", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-80156-3", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86915", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72291", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4740r89041_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:281" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:24", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204617", - "title": "The Red Hat Enterprise Linux operating system must not send Internet Protocol version 4 (IPv4) Internet Control Message Protocol (ICMP) redirects.", - "desc": "ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages contain information from the system's route table, possibly revealing portions of the network topology.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:263", - "label": "check" - }, - { - "data": "Configure the system to not allow interfaces to perform IPv4 ICMP redirects.\n\nSet the system to the required kernel parameter by adding the following line to \"/etc/sysctl.conf\" or a configuration file in the /etc/sysctl.d/ directory (or modify the line to have the required value):\n\nnet.ipv4.conf.all.send_redirects = 0\n\nIssue the following command to make the changes take effect:\n\n# sysctl --system", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages contain information from the system's route table, possibly revealing portions of the network topology.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204617", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204617r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:263" - } - }, - "fix_id": "F-4741r89044_fix", - "fixtext_fixref": "F-4741r89044_fix", - "ident": [ - { - "text": "CCE-80156-3", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86917", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72293", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204617r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:24", - "idref": "xccdf_mil.disa.stig_rule_SV-204617r603261_rule", - "version": "RHEL-07-040660", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-80156-3", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86917", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72293", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4741r89044_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:263" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:24", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204620", - "title": "The Red Hat Enterprise Linux operating system must not have a File Transfer Protocol (FTP) server package installed unless needed.", - "desc": "The FTP service provides an unencrypted remote access that does not provide for the confidentiality and integrity of user passwords or the remote session. If a privileged user were to log on using this service, the privileged user password could be compromised. SSH or other encrypted file transfer methods must be used in place of this service.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:1301", - "label": "check" - }, - { - "data": "Document the \"vsftpd\" package with the ISSO as an operational requirement or remove it from the system with the following command:\n\n# yum remove vsftpd", - "label": "fix" - } - ], - "impact": 0.7, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "high", - "description": "{\"VulnDiscussion\":\"The FTP service provides an unencrypted remote access that does not provide for the confidentiality and integrity of user passwords or the remote session. If a privileged user were to log on using this service, the privileged user password could be compromised. SSH or other encrypted file transfer methods must be used in place of this service.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204620", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204620r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:1301" - } - }, - "fix_id": "F-4744r89053_fix", - "fixtext_fixref": "F-4744r89053_fix", - "ident": [ - { - "text": "SV-86923", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72299", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204620r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:24", - "idref": "xccdf_mil.disa.stig_rule_SV-204620r603261_rule", - "version": "RHEL-07-040690", - "severity": "high", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "SV-86923", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72299", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4744r89053_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:1301" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:24", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204621", - "title": "The Red Hat Enterprise Linux operating system must not have the Trivial File Transfer Protocol (TFTP) server package installed if not required for operational support.", - "desc": "If TFTP is required for operational support (such as the transmission of router configurations) its use must be documented with the Information System Security Officer (ISSO), restricted to only authorized personnel, and have access control rules established.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:1296", - "label": "check" - }, - { - "data": "Remove the TFTP package from the system with the following command:\n\n# yum remove tftp-server", - "label": "fix" - } - ], - "impact": 0.7, - "refs": [], - "tags": { - "cci": [ - "CCI-000368", - "CCI-001813", - "CCI-001814", - "CCI-001812", - "CCI-000318" - ], - "nist": [ - "CM-6 c", - "CM-5 (1) (a)", - "CM-5 (1)", - "CM-11 (2)", - "CM-3 f" - ], - "severity": "high", - "description": "{\"VulnDiscussion\":\"If TFTP is required for operational support (such as the transmission of router configurations) its use must be documented with the Information System Security Officer (ISSO), restricted to only authorized personnel, and have access control rules established.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204621", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204621r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:1296" - } - }, - "fix_id": "F-4745r89056_fix", - "fixtext_fixref": "F-4745r89056_fix", - "ident": [ - { - "text": "CCE-80213-2", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86925", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72301", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000368", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001813", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001814", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001812", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000318", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204621r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:25", - "idref": "xccdf_mil.disa.stig_rule_SV-204621r603261_rule", - "version": "RHEL-07-040700", - "severity": "high", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-80213-2", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86925", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72301", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000368", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001813", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001814", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001812", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-000318", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4745r89056_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:1296" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:25", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204622", - "title": "The Red Hat Enterprise Linux operating system must be configured so that remote X connections are disabled except to fulfill documented and validated mission requirements.", - "desc": "The security risk of using X11 forwarding is that the client's X11 display server may be exposed to attack when the SSH client requests forwarding. A system administrator may have a stance in which they want to protect clients that may expose themselves to attack by unwittingly requesting X11 forwarding, which can warrant a ''no'' setting.\nX11 forwarding should be enabled with caution. Users with the ability to bypass file permissions on the remote host (for the user's X11 authorization database) can access the local X11 display through the forwarded connection. An attacker may then be able to perform activities such as keystroke monitoring if the ForwardX11Trusted option is also enabled.\nIf X11 services are not required for the system's intended function, they should be disabled or restricted as appropriate to the system's needs.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:1389", - "label": "check" - }, - { - "data": "Edit the \"/etc/ssh/sshd_config\" file to uncomment or add the line for the \"X11Forwarding\" keyword and set its value to \"no\" (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor):\n\nX11Forwarding no\n\nThe SSH service must be restarted for changes to take effect:\n\n# systemctl restart sshd", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"The security risk of using X11 forwarding is that the client's X11 display server may be exposed to attack when the SSH client requests forwarding. A system administrator may have a stance in which they want to protect clients that may expose themselves to attack by unwittingly requesting X11 forwarding, which can warrant a ''no'' setting.\\nX11 forwarding should be enabled with caution. Users with the ability to bypass file permissions on the remote host (for the user's X11 authorization database) can access the local X11 display through the forwarded connection. An attacker may then be able to perform activities such as keystroke monitoring if the ForwardX11Trusted option is also enabled.\\nIf X11 services are not required for the system's intended function, they should be disabled or restricted as appropriate to the system's needs.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204622", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204622r603849_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:1389" - } - }, - "fix_id": "F-4746r603848_fix", - "fixtext_fixref": "F-4746r603848_fix", - "ident": [ - { - "text": "CCE-80226-4", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86927", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72303", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204622r603849_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:26", - "idref": "xccdf_mil.disa.stig_rule_SV-204622r603849_rule", - "version": "RHEL-07-040710", - "severity": "medium", - "weight": "10.0", - "cdf:result": "fail", - "cdf:ident": [ - { - "text": "CCE-80226-4", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86927", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72303", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4746r603848_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:1389" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:26", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204624", - "title": "The Red Hat Enterprise Linux operating system must not have a graphical display manager installed unless approved.", - "desc": "Internet services that are not required for system or application processes must not be active to decrease the attack surface of the system. Graphical display managers have a long history of security vulnerabilities and must not be used unless approved and documented.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:1305", - "label": "check" - }, - { - "data": "Document the requirement for a graphical user interface with the ISSO or remove the related packages with the following commands:\n\n# rpm -e xorg-x11-server-common\n\n# systemctl set-default multi-user.target", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Internet services that are not required for system or application processes must not be active to decrease the attack surface of the system. Graphical display managers have a long history of security vulnerabilities and must not be used unless approved and documented.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204624", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204624r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:1305" - } - }, - "fix_id": "F-36316r602658_fix", - "fixtext_fixref": "F-36316r602658_fix", - "ident": [ - { - "text": "CCE-27218-7", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86931", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72307", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204624r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:26", - "idref": "xccdf_mil.disa.stig_rule_SV-204624r603261_rule", - "version": "RHEL-07-040730", - "severity": "medium", - "weight": "10.0", - "cdf:result": "fail", - "cdf:ident": [ - { - "text": "CCE-27218-7", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86931", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72307", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-36316r602658_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:1305" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:26", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204625", - "title": "The Red Hat Enterprise Linux operating system must not be performing packet forwarding unless the system is a router.", - "desc": "Routing protocol daemons are typically used on routers to exchange network topology information with other routers. If this software is used when not required, system network information may be unnecessarily transmitted across the network.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:290", - "label": "check" - }, - { - "data": "Set the system to the required kernel parameter by adding the following line to \"/etc/sysctl.conf\" or a configuration file in the /etc/sysctl.d/ directory (or modify the line to have the required value):\n\nnet.ipv4.ip_forward = 0\n\nIssue the following command to make the changes take effect:\n\n# sysctl --system", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Routing protocol daemons are typically used on routers to exchange network topology information with other routers. If this software is used when not required, system network information may be unnecessarily transmitted across the network.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204625", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204625r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:290" - } - }, - "fix_id": "F-4749r89068_fix", - "fixtext_fixref": "F-4749r89068_fix", - "ident": [ - { - "text": "CCE-80157-1", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86933", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72309", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204625r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:28", - "idref": "xccdf_mil.disa.stig_rule_SV-204625r603261_rule", - "version": "RHEL-07-040740", - "severity": "medium", - "weight": "10.0", - "cdf:result": "fail", - "cdf:ident": [ - { - "text": "CCE-80157-1", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86933", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72309", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4749r89068_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:290" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:28", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204627", - "title": "SNMP community strings on the Red Hat Enterprise Linux operating system must be changed from the default.", - "desc": "Whether active or not, default Simple Network Management Protocol (SNMP) community strings must be changed to maintain security. If the service is running with the default authenticators, anyone can gather data about the system and the network and use the information to potentially compromise the integrity of the system or network(s). It is highly recommended that SNMP version 3 user authentication and message encryption be used in place of the version 2 community strings.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:1369", - "label": "check" - }, - { - "data": "If the \"/etc/snmp/snmpd.conf\" file exists, modify any lines that contain a community string value of \"public\" or \"private\" to another string value.", - "label": "fix" - } - ], - "impact": 0.7, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "high", - "description": "{\"VulnDiscussion\":\"Whether active or not, default Simple Network Management Protocol (SNMP) community strings must be changed to maintain security. If the service is running with the default authenticators, anyone can gather data about the system and the network and use the information to potentially compromise the integrity of the system or network(s). It is highly recommended that SNMP version 3 user authentication and message encryption be used in place of the version 2 community strings.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204627", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204627r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:1369" - } - }, - "fix_id": "F-4751r89074_fix", - "fixtext_fixref": "F-4751r89074_fix", - "ident": [ - { - "text": "CCE-27386-2", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86937", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72313", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204627r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:28", - "idref": "xccdf_mil.disa.stig_rule_SV-204627r603261_rule", - "version": "RHEL-07-040800", - "severity": "high", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-27386-2", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86937", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72313", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4751r89074_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:1369" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:28", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204630", - "title": "The Red Hat Enterprise Linux operating system must not forward IPv6 source-routed packets.", - "desc": "Source-routed packets allow the source of the packet to suggest that routers forward the packet along a different path than configured on the router, which can be used to bypass network security measures. This requirement applies only to the forwarding of source-routed traffic, such as when IPv6 forwarding is enabled and the system is functioning as a router.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:303", - "label": "check" - }, - { - "data": "Set the system to the required kernel parameter, if IPv6 is enabled, by adding the following line to \"/etc/sysctl.conf\" or a configuration file in the /etc/sysctl.d/ directory (or modify the line to have the required value):\n\nnet.ipv6.conf.all.accept_source_route = 0\n\nIssue the following command to make the changes take effect:\n\n# sysctl --system", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Source-routed packets allow the source of the packet to suggest that routers forward the packet along a different path than configured on the router, which can be used to bypass network security measures. This requirement applies only to the forwarding of source-routed traffic, such as when IPv6 forwarding is enabled and the system is functioning as a router.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204630", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204630r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-export": { - "value-id": "xccdf_mil.disa.stig_value_sysctl_net_ipv6_conf_all_accept_source_route_value", - "export-name": "oval:mil.disa.stig.rhel7:var:3785" - }, - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:303" - } - }, - "fix_id": "F-4754r89083_fix", - "fixtext_fixref": "F-4754r89083_fix", - "ident": [ - { - "text": "CCE-80179-5", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86943", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72319", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204630r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:29", - "idref": "xccdf_mil.disa.stig_rule_SV-204630r603261_rule", - "version": "RHEL-07-040830", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-80179-5", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-86943", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72319", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4754r89083_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-export": { - "value-id": "xccdf_mil.disa.stig_value_sysctl_net_ipv6_conf_all_accept_source_route_value", - "export-name": "oval:mil.disa.stig.rhel7:var:3785" - }, - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:303" - } - } - }, - "value": { - "type": "number", - "Id": "xccdf_mil.disa.stig_value_sysctl_net_ipv6_conf_all_accept_source_route_value", - "id": "xccdf_mil.disa.stig_value_sysctl_net_ipv6_conf_all_accept_source_route_value", - "cdf:title": "net.ipv6.conf.all.accept_source_route", - "cdf:description": "Trackers could be using source-routed packets to\ngenerate traffic that seems to be intra-net, but actually was\ncreated outside and has been redirected.", - "cdf:value": [ - 0, - { - "text": 1, - "selector": "enabled" - }, - { - "text": 0, - "selector": "disabled" - } - ] - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:29", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204631", - "title": "The Red Hat Enterprise Linux operating system must have the required packages for multifactor authentication installed.", - "desc": "Using an authentication device, such as a CAC or token that is separate from the information system, ensures that even if the information system is compromised, that compromise will not affect credentials stored on the authentication device.\n\nMultifactor solutions that require devices separate from information systems gaining access include, for example, hardware tokens providing time-based or challenge-response authenticators and smart cards such as the U.S. Government Personal Identity Verification card and the DoD Common Access Card.\n\nA privileged account is defined as an information system account with authorizations of a privileged user.\n\nRemote access is access to DoD nonpublic information systems by an authorized user (or an information system) communicating through an external, non-organization-controlled network. Remote access methods include, for example, dial-up, broadband, and wireless.\n\nThis requirement only applies to components where this is specific to the function of the device or has the concept of an organizational user (e.g., VPN, proxy capability). This does not apply to authentication for the purpose of configuring the device itself (management).\n\nSatisfies: SRG-OS-000375-GPOS-00160, SRG-OS-000375-GPOS-00161, SRG-OS-000375-GPOS-00162", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:87041", - "label": "check" - }, - { - "data": "Configure the operating system to implement multifactor authentication by installing the required packages.\n\nInstall the pam_pkcs11 package with the following command:\n\n# yum install pam_pkcs11", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001953", - "CCI-001954", - "CCI-001948" - ], - "nist": [ - "IA-2 (12)", - "IA-2 (12)", - "IA-2 (11)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Using an authentication device, such as a CAC or token that is separate from the information system, ensures that even if the information system is compromised, that compromise will not affect credentials stored on the authentication device.\\n\\nMultifactor solutions that require devices separate from information systems gaining access include, for example, hardware tokens providing time-based or challenge-response authenticators and smart cards such as the U.S. Government Personal Identity Verification card and the DoD Common Access Card.\\n\\nA privileged account is defined as an information system account with authorizations of a privileged user.\\n\\nRemote access is access to DoD nonpublic information systems by an authorized user (or an information system) communicating through an external, non-organization-controlled network. Remote access methods include, for example, dial-up, broadband, and wireless.\\n\\nThis requirement only applies to components where this is specific to the function of the device or has the concept of an organizational user (e.g., VPN, proxy capability). This does not apply to authentication for the purpose of configuring the device itself (management).\\n\\nSatisfies: SRG-OS-000375-GPOS-00160, SRG-OS-000375-GPOS-00161, SRG-OS-000375-GPOS-00162\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204631", - "group_title": "SRG-OS-000375-GPOS-00160", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204631r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:87041" - } - }, - "fix_id": "F-4755r462473_fix", - "fixtext_fixref": "F-4755r462473_fix", - "ident": [ - { - "text": "SV-87041", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72417", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001953", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001954", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001948", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204631r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:29", - "idref": "xccdf_mil.disa.stig_rule_SV-204631r603261_rule", - "version": "RHEL-07-041001", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "SV-87041", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72417", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001953", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001954", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001948", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4755r462473_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:87041" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:29", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204632", - "title": "The Red Hat Enterprise Linux operating system must implement multifactor authentication for access to privileged accounts via pluggable authentication modules (PAM).", - "desc": "Using an authentication device, such as a CAC or token that is separate from the information system, ensures that even if the information system is compromised, that compromise will not affect credentials stored on the authentication device.\n\nMultifactor solutions that require devices separate from information systems gaining access include, for example, hardware tokens providing time-based or challenge-response authenticators and smart cards such as the U.S. Government Personal Identity Verification card and the DoD Common Access Card.\n\nA privileged account is defined as an information system account with authorizations of a privileged user.\n\nRemote access is access to DoD nonpublic information systems by an authorized user (or an information system) communicating through an external, non-organization-controlled network. Remote access methods include, for example, dial-up, broadband, and wireless.\n\nThis requirement only applies to components where this is specific to the function of the device or has the concept of an organizational user (e.g., VPN, proxy capability). This does not apply to authentication for the purpose of configuring the device itself (management).\n\nSatisfies: SRG-OS-000375-GPOS-00160, SRG-OS-000375-GPOS-00161, SRG-OS-000375-GPOS-00162", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:1405", - "label": "check" - }, - { - "data": "Configure the operating system to implement multifactor authentication for remote access to privileged accounts via pluggable authentication modules (PAM).\n\nModify all of the services lines in \"/etc/sssd/sssd.conf\" or in configuration files found under \"/etc/sssd/conf.d\" to include pam.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001948", - "CCI-001954", - "CCI-001953" - ], - "nist": [ - "IA-2 (11)", - "IA-2 (12)", - "IA-2 (12)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Using an authentication device, such as a CAC or token that is separate from the information system, ensures that even if the information system is compromised, that compromise will not affect credentials stored on the authentication device.\\n\\nMultifactor solutions that require devices separate from information systems gaining access include, for example, hardware tokens providing time-based or challenge-response authenticators and smart cards such as the U.S. Government Personal Identity Verification card and the DoD Common Access Card.\\n\\nA privileged account is defined as an information system account with authorizations of a privileged user.\\n\\nRemote access is access to DoD nonpublic information systems by an authorized user (or an information system) communicating through an external, non-organization-controlled network. Remote access methods include, for example, dial-up, broadband, and wireless.\\n\\nThis requirement only applies to components where this is specific to the function of the device or has the concept of an organizational user (e.g., VPN, proxy capability). This does not apply to authentication for the purpose of configuring the device itself (management).\\n\\nSatisfies: SRG-OS-000375-GPOS-00160, SRG-OS-000375-GPOS-00161, SRG-OS-000375-GPOS-00162\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204632", - "group_title": "SRG-OS-000375-GPOS-00160", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204632r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:1405" - } - }, - "fix_id": "F-4756r89089_fix", - "fixtext_fixref": "F-4756r89089_fix", - "ident": [ - { - "text": "CCE-80437-7", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-87051", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72427", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001948", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001954", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001953", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204632r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:30", - "idref": "xccdf_mil.disa.stig_rule_SV-204632r603261_rule", - "version": "RHEL-07-041002", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-80437-7", - "system": "http://cce.mitre.org" - }, - { - "text": "SV-87051", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72427", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001948", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001954", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001953", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4756r89089_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:1405" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:30", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-204633", - "title": "The Red Hat Enterprise Linux operating system must implement certificate status checking for PKI authentication.", - "desc": "Using an authentication device, such as a CAC or token that is separate from the information system, ensures that even if the information system is compromised, that compromise will not affect credentials stored on the authentication device.\n\nMultifactor solutions that require devices separate from information systems gaining access include, for example, hardware tokens providing time-based or challenge-response authenticators and smart cards such as the U.S. Government Personal Identity Verification card and the DoD Common Access Card.\n\nA privileged account is defined as an information system account with authorizations of a privileged user.\n\nRemote access is access to DoD nonpublic information systems by an authorized user (or an information system) communicating through an external, non-organization-controlled network. Remote access methods include, for example, dial-up, broadband, and wireless.\n\nThis requirement only applies to components where this is specific to the function of the device or has the concept of an organizational user (e.g., VPN, proxy capability). This does not apply to authentication for the purpose of configuring the device itself (management).\n\nSatisfies: SRG-OS-000375-GPOS-00160, SRG-OS-000375-GPOS-00161, SRG-OS-000375-GPOS-00162", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:87057", - "label": "check" - }, - { - "data": "Configure the operating system to do certificate status checking for PKI authentication.\n\nModify all of the \"cert_policy\" lines in \"/etc/pam_pkcs11/pam_pkcs11.conf\" to include \"ocsp_on\".", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001954", - "CCI-001953", - "CCI-001948" - ], - "nist": [ - "IA-2 (12)", - "IA-2 (12)", - "IA-2 (11)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Using an authentication device, such as a CAC or token that is separate from the information system, ensures that even if the information system is compromised, that compromise will not affect credentials stored on the authentication device.\\n\\nMultifactor solutions that require devices separate from information systems gaining access include, for example, hardware tokens providing time-based or challenge-response authenticators and smart cards such as the U.S. Government Personal Identity Verification card and the DoD Common Access Card.\\n\\nA privileged account is defined as an information system account with authorizations of a privileged user.\\n\\nRemote access is access to DoD nonpublic information systems by an authorized user (or an information system) communicating through an external, non-organization-controlled network. Remote access methods include, for example, dial-up, broadband, and wireless.\\n\\nThis requirement only applies to components where this is specific to the function of the device or has the concept of an organizational user (e.g., VPN, proxy capability). This does not apply to authentication for the purpose of configuring the device itself (management).\\n\\nSatisfies: SRG-OS-000375-GPOS-00160, SRG-OS-000375-GPOS-00161, SRG-OS-000375-GPOS-00162\"}", - "group_id": "xccdf_mil.disa.stig_group_V-204633", - "group_title": "SRG-OS-000375-GPOS-00160", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-204633r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:87057" - } - }, - "fix_id": "F-4757r89092_fix", - "fixtext_fixref": "F-4757r89092_fix", - "ident": [ - { - "text": "SV-87057", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72433", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001954", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001953", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001948", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-204633r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:30", - "idref": "xccdf_mil.disa.stig_rule_SV-204633r603261_rule", - "version": "RHEL-07-041003", - "severity": "medium", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "SV-87057", - "system": "http://cyber.mil/legacy" - }, - { - "text": "V-72433", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001954", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001953", - "system": "http://cyber.mil/cci" - }, - { - "text": "CCI-001948", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-4757r89092_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:87057" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:30", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-214799", - "title": "The Red Hat Enterprise Linux operating system must be configured so that the cryptographic hash of system files and commands matches vendor values.", - "desc": "Without cryptographic integrity protections, system command and files can be altered by unauthorized users without detection.\n\nCryptographic mechanisms used for protecting the integrity of information include, for example, signed hash functions using asymmetric cryptography enabling distribution of the public key to verify the hash information while maintaining the confidentiality of the key used to generate the hash.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel7:def:1340", - "label": "check" - }, - { - "data": "Run the following command to determine which package owns the file:\n\n# rpm -qf \n\nThe package can be reinstalled from a yum repository using the command:\n\n# sudo yum reinstall \n\nAlternatively, the package can be reinstalled from trusted media using the command:\n\n# sudo rpm -Uvh ", - "label": "fix" - } - ], - "impact": 0.7, - "refs": [], - "tags": { - "cci": [ - "CCI-001749" - ], - "nist": [ - "CM-5 (3)" - ], - "severity": "high", - "description": "{\"VulnDiscussion\":\"Without cryptographic integrity protections, system command and files can be altered by unauthorized users without detection.\\n\\nCryptographic mechanisms used for protecting the integrity of information include, for example, signed hash functions using asymmetric cryptography enabling distribution of the public key to verify the hash information while maintaining the confidentiality of the key used to generate the hash.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-214799", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-214799r603261_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:1340" - } - }, - "fix_id": "F-15997r192363_fix", - "fixtext_fixref": "F-15997r192363_fix", - "ident": [ - { - "text": "CCE-27157-7", - "system": "http://cce.mitre.org" - }, - { - "text": "V-71855", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86479", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001749", - "system": "http://cyber.mil/cci" - } - ], - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2899, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-214799r603261_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "time": "2021-04-29T14:18:30", - "idref": "xccdf_mil.disa.stig_rule_SV-214799r603261_rule", - "version": "RHEL-07-010020", - "severity": "high", - "weight": "10.0", - "cdf:result": "pass", - "cdf:ident": [ - { - "text": "CCE-27157-7", - "system": "http://cce.mitre.org" - }, - { - "text": "V-71855", - "system": "http://cyber.mil/legacy" - }, - { - "text": "SV-86479", - "system": "http://cyber.mil/legacy" - }, - { - "text": "CCI-001749", - "system": "http://cyber.mil/cci" - } - ], - "cdf:fix": { - "id": "F-15997r192363_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", - "name": "oval:mil.disa.stig.rhel7:def:1340" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-04-29T14:18:30", - "message": "", - "resource": "" - } - ] - } - ], - "sha256": "c52a307fa7d77bff565b468962b92f656c584a8324b359b850c24cc31a4baea0" + "tags": { + "cci": [ + "CCI-000048" + ], + "nist": [ + "AC-8 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Display of a standardized and approved use notification before granting access to the operating system ensures privacy and security notification verbiage used is consistent with applicable federal laws, Executive Orders, directives, policies, regulations, standards, and guidance.\\n\\nSystem use notifications are required only for access via logon interfaces with human users and are not required when such human interfaces do not exist.\\n\\nThe banner must be formatted in accordance with applicable DoD policy. Use the following verbiage for operating systems that can accommodate banners of 1300 characters:\\n\\n\\\"You are accessing a U.S. Government (USG) Information System (IS) that is provided for USG-authorized use only.\\n\\nBy using this IS (which includes any device attached to this IS), you consent to the following conditions:\\n\\n-The USG routinely intercepts and monitors communications on this IS for purposes including, but not limited to, penetration testing, COMSEC monitoring, network operations and defense, personnel misconduct (PM), law enforcement (LE), and counterintelligence (CI) investigations.\\n\\n-At any time, the USG may inspect and seize data stored on this IS.\\n\\n-Communications using, or data stored on, this IS are not private, are subject to routine monitoring, interception, and search, and may be disclosed or used for any USG-authorized purpose.\\n\\n-This IS includes security measures (e.g., authentication and access controls) to protect USG interests--not for your personal benefit or privacy.\\n\\n-Notwithstanding the above, using this IS does not constitute consent to PM, LE or CI investigative searching or monitoring of the content of privileged communications, or work product, related to personal representation or services by attorneys, psychotherapists, or clergy, and their assistants. Such communications and work product are private and confidential. See User Agreement for details.\\\"\\n\\n\\nSatisfies: SRG-OS-000023-GPOS-00006, SRG-OS-000024-GPOS-00007, SRG-OS-000228-GPOS-00088\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204393", + "group_title": "SRG-OS-000023-GPOS-00006", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204393r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:922" + } + }, + "fix_id": "F-4517r88372_fix", + "fixtext_fixref": "F-4517r88372_fix", + "ident": [ + { + "text": "CCE-26970-4", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86483", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71859", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000048", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204393r603261_rule", + "weight": "10.0", + "profiles": [] + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must display the Standard Mandatory DoD Notice and Consent Banner before granting local or remote access to the system via a graphical user logon.", + "id": "V-204393", + "desc": "Display of a standardized and approved use notification before granting access to the operating system ensures privacy and security notification verbiage used is consistent with applicable federal laws, Executive Orders, directives, policies, regulations, standards, and guidance.\n\nSystem use notifications are required only for access via logon interfaces with human users and are not required when such human interfaces do not exist.\n\nThe banner must be formatted in accordance with applicable DoD policy. Use the following verbiage for operating systems that can accommodate banners of 1300 characters:\n\n\"You are accessing a U.S. Government (USG) Information System (IS) that is provided for USG-authorized use only.\n\nBy using this IS (which includes any device attached to this IS), you consent to the following conditions:\n\n-The USG routinely intercepts and monitors communications on this IS for purposes including, but not limited to, penetration testing, COMSEC monitoring, network operations and defense, personnel misconduct (PM), law enforcement (LE), and counterintelligence (CI) investigations.\n\n-At any time, the USG may inspect and seize data stored on this IS.\n\n-Communications using, or data stored on, this IS are not private, are subject to routine monitoring, interception, and search, and may be disclosed or used for any USG-authorized purpose.\n\n-This IS includes security measures (e.g., authentication and access controls) to protect USG interests--not for your personal benefit or privacy.\n\n-Notwithstanding the above, using this IS does not constitute consent to PM, LE or CI investigative searching or monitoring of the content of privileged communications, or work product, related to personal representation or services by attorneys, psychotherapists, or clergy, and their assistants. Such communications and work product are private and confidential. See User Agreement for details.\"\n\n\nSatisfies: SRG-OS-000023-GPOS-00006, SRG-OS-000024-GPOS-00007, SRG-OS-000228-GPOS-00088", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:922", + "label": "check" + }, + { + "data": "Configure the operating system to display the Standard Mandatory DoD Notice and Consent Banner before granting access to the system.\n\nNote: If the system does not have GNOME installed, this requirement is Not Applicable.\n\nCreate a database to contain the system-wide graphical user logon settings (if it does not already exist) with the following command:\n\n# touch /etc/dconf/db/local.d/01-banner-message\n\nAdd the following line to the [org/gnome/login-screen] section of the \"/etc/dconf/db/local.d/01-banner-message\":\n\n[org/gnome/login-screen]\nbanner-message-enable=true\n\nUpdate the system databases:\n\n# dconf update\n\nUsers must log out and back in again before the system-wide settings take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204393\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204393\",\n \"cdf:title\": \"SRG-OS-000023-GPOS-00006\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204393r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204393r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-010030\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must display the Standard Mandatory DoD Notice and Consent Banner before granting local or remote access to the system via a graphical user logon.\",\n \"cdf:description\": \"<VulnDiscussion>Display of a standardized and approved use notification before granting access to the operating system ensures privacy and security notification verbiage used is consistent with applicable federal laws, Executive Orders, directives, policies, regulations, standards, and guidance.\\n\\nSystem use notifications are required only for access via logon interfaces with human users and are not required when such human interfaces do not exist.\\n\\nThe banner must be formatted in accordance with applicable DoD policy. Use the following verbiage for operating systems that can accommodate banners of 1300 characters:\\n\\n\\\"You are accessing a U.S. Government (USG) Information System (IS) that is provided for USG-authorized use only.\\n\\nBy using this IS (which includes any device attached to this IS), you consent to the following conditions:\\n\\n-The USG routinely intercepts and monitors communications on this IS for purposes including, but not limited to, penetration testing, COMSEC monitoring, network operations and defense, personnel misconduct (PM), law enforcement (LE), and counterintelligence (CI) investigations.\\n\\n-At any time, the USG may inspect and seize data stored on this IS.\\n\\n-Communications using, or data stored on, this IS are not private, are subject to routine monitoring, interception, and search, and may be disclosed or used for any USG-authorized purpose.\\n\\n-This IS includes security measures (e.g., authentication and access controls) to protect USG interests--not for your personal benefit or privacy.\\n\\n-Notwithstanding the above, using this IS does not constitute consent to PM, LE or CI investigative searching or monitoring of the content of privileged communications, or work product, related to personal representation or services by attorneys, psychotherapists, or clergy, and their assistants. Such communications and work product are private and confidential. See User Agreement for details.\\\"\\n\\n\\nSatisfies: SRG-OS-000023-GPOS-00006, SRG-OS-000024-GPOS-00007, SRG-OS-000228-GPOS-00088</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-26970-4\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86483\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-71859\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000048\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to display the Standard Mandatory DoD Notice and Consent Banner before granting access to the system.\\n\\nNote: If the system does not have GNOME installed, this requirement is Not Applicable.\\n\\nCreate a database to contain the system-wide graphical user logon settings (if it does not already exist) with the following command:\\n\\n# touch /etc/dconf/db/local.d/01-banner-message\\n\\nAdd the following line to the [org/gnome/login-screen] section of the \\\"/etc/dconf/db/local.d/01-banner-message\\\":\\n\\n[org/gnome/login-screen]\\nbanner-message-enable=true\\n\\nUpdate the system databases:\\n\\n# dconf update\\n\\nUsers must log out and back in again before the system-wide settings take effect.\",\n \"fixref\": \"F-4517r88372_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4517r88372_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:922\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:16:20" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000056" + ], + "nist": [ + "AC-11 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"A session lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not want to log out because of the temporary nature of the absence.\\n\\nThe session lock is implemented at the point where session activity can be determined.\\n\\nRegardless of where the session lock is determined and implemented, once invoked, the session lock must remain in place until the user reauthenticates. No other activity aside from reauthentication must unlock the system.\\n\\nSatisfies: SRG-OS-000028-GPOS-00009, SRG-OS-000030-GPOS-00011\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204396", + "group_title": "SRG-OS-000028-GPOS-00009", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204396r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:988" + } + }, + "fix_id": "F-4520r88381_fix", + "fixtext_fixref": "F-4520r88381_fix", + "ident": [ + { + "text": "CCE-80112-6", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86515", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71891", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000056", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204396r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:16:20", + "idref": "xccdf_mil.disa.stig_rule_SV-204393r603261_rule", + "version": "RHEL-07-010030", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-26970-4", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86483", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71859", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000048", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4517r88372_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:922" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must enable a user session lock until that user re-establishes access using established identification and authentication procedures.", + "id": "V-204396", + "desc": "A session lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not want to log out because of the temporary nature of the absence.\n\nThe session lock is implemented at the point where session activity can be determined.\n\nRegardless of where the session lock is determined and implemented, once invoked, the session lock must remain in place until the user reauthenticates. No other activity aside from reauthentication must unlock the system.\n\nSatisfies: SRG-OS-000028-GPOS-00009, SRG-OS-000030-GPOS-00011", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:988", + "label": "check" + }, + { + "data": "Configure the operating system to enable a user's session lock until that user re-establishes access using established identification and authentication procedures.\n\nCreate a database to contain the system-wide screensaver settings (if it does not already exist) with the following example:\n\n# touch /etc/dconf/db/local.d/00-screensaver\n\nEdit the \"[org/gnome/desktop/screensaver]\" section of the database file and add or update the following lines:\n\n# Set this to true to lock the screen when the screensaver activates\nlock-enabled=true\n\nUpdate the system databases:\n\n# dconf update\n\nUsers must log out and back in again before the system-wide settings take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204396\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204396\",\n \"cdf:title\": \"SRG-OS-000028-GPOS-00009\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204396r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204396r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-010060\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must enable a user session lock until that user re-establishes access using established identification and authentication procedures.\",\n \"cdf:description\": \"<VulnDiscussion>A session lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not want to log out because of the temporary nature of the absence.\\n\\nThe session lock is implemented at the point where session activity can be determined.\\n\\nRegardless of where the session lock is determined and implemented, once invoked, the session lock must remain in place until the user reauthenticates. No other activity aside from reauthentication must unlock the system.\\n\\nSatisfies: SRG-OS-000028-GPOS-00009, SRG-OS-000030-GPOS-00011</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80112-6\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86515\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-71891\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000056\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to enable a user's session lock until that user re-establishes access using established identification and authentication procedures.\\n\\nCreate a database to contain the system-wide screensaver settings (if it does not already exist) with the following example:\\n\\n# touch /etc/dconf/db/local.d/00-screensaver\\n\\nEdit the \\\"[org/gnome/desktop/screensaver]\\\" section of the database file and add or update the following lines:\\n\\n# Set this to true to lock the screen when the screensaver activates\\nlock-enabled=true\\n\\nUpdate the system databases:\\n\\n# dconf update\\n\\nUsers must log out and back in again before the system-wide settings take effect.\",\n \"fixref\": \"F-4520r88381_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4520r88381_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:988\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:16:23" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001948", + "CCI-001953", + "CCI-001954" + ], + "nist": [ + "IA-2 (11)", + "IA-2 (12)", + "IA-2 (12)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"To assure accountability and prevent unauthenticated access, users must be identified and authenticated to prevent potential misuse and compromise of the system.\\n\\nMultifactor solutions that require devices separate from information systems gaining access include, for example, hardware tokens providing time-based or challenge-response authenticators and smart cards such as the U.S. Government Personal Identity Verification card and the DoD Common Access Card.\\n\\nSatisfies: SRG-OS-000375-GPOS-00161,SRG-OS-000375-GPOS-00162\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204397", + "group_title": "SRG-OS-000375-GPOS-00160", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204397r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:92515" + } + }, + "fix_id": "F-4521r88384_fix", + "fixtext_fixref": "F-4521r88384_fix", + "ident": [ + { + "text": "SV-92515", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-77819", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001948", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001953", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001954", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204397r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:16:23", + "idref": "xccdf_mil.disa.stig_rule_SV-204396r603261_rule", + "version": "RHEL-07-010060", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-80112-6", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86515", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71891", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000056", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4520r88381_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:988" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must uniquely identify and must authenticate users using multifactor authentication via a graphical user logon.", + "id": "V-204397", + "desc": "To assure accountability and prevent unauthenticated access, users must be identified and authenticated to prevent potential misuse and compromise of the system.\n\nMultifactor solutions that require devices separate from information systems gaining access include, for example, hardware tokens providing time-based or challenge-response authenticators and smart cards such as the U.S. Government Personal Identity Verification card and the DoD Common Access Card.\n\nSatisfies: SRG-OS-000375-GPOS-00161,SRG-OS-000375-GPOS-00162", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:92515", + "label": "check" + }, + { + "data": "Configure the operating system to uniquely identify and authenticate users using multifactor authentication via a graphical user logon.\n\nNote: If the system does not have GNOME installed, this requirement is Not Applicable.\n\nCreate a database to contain the system-wide screensaver settings (if it does not already exist) with the following command:\n\nNote: The example is using the database local for the system, so if the system is using another database in \"/etc/dconf/profile/user\", the file should be created under the appropriate subdirectory.\n\n# touch /etc/dconf/db/local.d/00-defaults\n\nEdit \"[org/gnome/login-screen]\" and add or update the following line:\nenable-smartcard-authentication=true\n\nUpdate the system databases:\n# dconf update", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204397\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204397\",\n \"cdf:title\": \"SRG-OS-000375-GPOS-00160\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204397r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204397r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-010061\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must uniquely identify and must authenticate users using multifactor authentication via a graphical user logon.\",\n \"cdf:description\": \"<VulnDiscussion>To assure accountability and prevent unauthenticated access, users must be identified and authenticated to prevent potential misuse and compromise of the system.\\n\\nMultifactor solutions that require devices separate from information systems gaining access include, for example, hardware tokens providing time-based or challenge-response authenticators and smart cards such as the U.S. Government Personal Identity Verification card and the DoD Common Access Card.\\n\\nSatisfies: SRG-OS-000375-GPOS-00161,SRG-OS-000375-GPOS-00162</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"SV-92515\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-77819\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-001948\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-001953\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-001954\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to uniquely identify and authenticate users using multifactor authentication via a graphical user logon.\\n\\nNote: If the system does not have GNOME installed, this requirement is Not Applicable.\\n\\nCreate a database to contain the system-wide screensaver settings (if it does not already exist) with the following command:\\n\\nNote: The example is using the database local for the system, so if the system is using another database in \\\"/etc/dconf/profile/user\\\", the file should be created under the appropriate subdirectory.\\n\\n# touch /etc/dconf/db/local.d/00-defaults\\n\\nEdit \\\"[org/gnome/login-screen]\\\" and add or update the following line:\\nenable-smartcard-authentication=true\\n\\nUpdate the system databases:\\n# dconf update\",\n \"fixref\": \"F-4521r88384_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4521r88384_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:92515\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:16:23" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000057" + ], + "nist": [ + "AC-11 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"A session time-out lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not log out because of the temporary nature of the absence. Rather than relying on the user to manually lock their operating system session prior to vacating the vicinity, operating systems need to be able to identify when a user's session has idled and take action to initiate the session lock.\\n\\nThe session lock is implemented at the point where session activity can be determined and/or controlled.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204398", + "group_title": "SRG-OS-000029-GPOS-00010", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204398r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-export": { + "value-id": "xccdf_mil.disa.stig_value_inactivity_timeout_value", + "export-name": "oval:mil.disa.stig.rhel7:var:3828" + }, + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:981" + } + }, + "fix_id": "F-4522r88387_fix", + "fixtext_fixref": "F-4522r88387_fix", + "ident": [ + { + "text": "CCE-80110-0", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86517", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71893", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000057", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204398r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:16:23", + "idref": "xccdf_mil.disa.stig_rule_SV-204397r603261_rule", + "version": "RHEL-07-010061", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "SV-92515", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-77819", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001948", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001953", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001954", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4521r88384_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:92515" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must initiate a screensaver after a 15-minute period of inactivity for graphical user interfaces.", + "id": "V-204398", + "desc": "A session time-out lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not log out because of the temporary nature of the absence. Rather than relying on the user to manually lock their operating system session prior to vacating the vicinity, operating systems need to be able to identify when a user's session has idled and take action to initiate the session lock.\n\nThe session lock is implemented at the point where session activity can be determined and/or controlled.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:981", + "label": "check" + }, + { + "data": "Configure the operating system to initiate a screensaver after a 15-minute period of inactivity for graphical user interfaces.\n\nCreate a database to contain the system-wide screensaver settings (if it does not already exist) with the following command:\n\n# touch /etc/dconf/db/local.d/00-screensaver\n\nEdit /etc/dconf/db/local.d/00-screensaver and add or update the following lines:\n\n[org/gnome/desktop/session]\n# Set the lock time out to 900 seconds before the session is considered idle\nidle-delay=uint32 900\n\nYou must include the \"uint32\" along with the integer key values as shown.\n\nUpdate the system databases:\n\n# dconf update\n\nUsers must log out and back in again before the system-wide settings take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204398\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204398\",\n \"cdf:title\": \"SRG-OS-000029-GPOS-00010\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204398r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204398r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-010070\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must initiate a screensaver after a 15-minute period of inactivity for graphical user interfaces.\",\n \"cdf:description\": \"<VulnDiscussion>A session time-out lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not log out because of the temporary nature of the absence. Rather than relying on the user to manually lock their operating system session prior to vacating the vicinity, operating systems need to be able to identify when a user's session has idled and take action to initiate the session lock.\\n\\nThe session lock is implemented at the point where session activity can be determined and/or controlled.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80110-0\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86517\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-71893\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000057\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to initiate a screensaver after a 15-minute period of inactivity for graphical user interfaces.\\n\\nCreate a database to contain the system-wide screensaver settings (if it does not already exist) with the following command:\\n\\n# touch /etc/dconf/db/local.d/00-screensaver\\n\\nEdit /etc/dconf/db/local.d/00-screensaver and add or update the following lines:\\n\\n[org/gnome/desktop/session]\\n# Set the lock time out to 900 seconds before the session is considered idle\\nidle-delay=uint32 900\\n\\nYou must include the \\\"uint32\\\" along with the integer key values as shown.\\n\\nUpdate the system databases:\\n\\n# dconf update\\n\\nUsers must log out and back in again before the system-wide settings take effect.\",\n \"fixref\": \"F-4522r88387_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4522r88387_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-export\": {\n \"value-id\": \"xccdf_mil.disa.stig_value_inactivity_timeout_value\",\n \"export-name\": \"oval:mil.disa.stig.rhel7:var:3828\"\n },\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:981\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:16:23" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000057" + ], + "nist": [ + "AC-11 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"A session time-out lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not log out because of the temporary nature of the absence. Rather than relying on the user to manually lock their operating system session prior to vacating the vicinity, operating systems need to be able to identify when a user's session has idled and take action to initiate the session lock.\\n\\nThe session lock is implemented at the point where session activity can be determined and/or controlled.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204399", + "group_title": "SRG-OS-000029-GPOS-00010", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204399r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:999" + } + }, + "fix_id": "F-4523r88390_fix", + "fixtext_fixref": "F-4523r88390_fix", + "ident": [ + { + "text": "CCE-80371-8", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-87807", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-73155", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000057", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204399r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:16:23", + "idref": "xccdf_mil.disa.stig_rule_SV-204398r603261_rule", + "version": "RHEL-07-010070", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-80110-0", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86517", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71893", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000057", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4522r88387_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-export": { + "value-id": "xccdf_mil.disa.stig_value_inactivity_timeout_value", + "export-name": "oval:mil.disa.stig.rhel7:var:3828" + }, + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:981" + } + } + }, + "value": { + "type": "number", + "Id": "xccdf_mil.disa.stig_value_inactivity_timeout_value", + "id": "xccdf_mil.disa.stig_value_inactivity_timeout_value", + "cdf:title": "Inactivity timeout", + "cdf:description": "Choose allowed duration of inactive SSH connections, shells, and X sessions", + "cdf:value": [ + 900, + { + "text": 300, + "selector": "5_minutes" + }, + { + "text": 600, + "selector": "10_minutes" + }, + { + "text": 900, + "selector": "15_minutes" + } + ] + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must prevent a user from overriding the screensaver lock-delay setting for the graphical user interface.", + "id": "V-204399", + "desc": "A session time-out lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not log out because of the temporary nature of the absence. Rather than relying on the user to manually lock their operating system session prior to vacating the vicinity, operating systems need to be able to identify when a user's session has idled and take action to initiate the session lock.\n\nThe session lock is implemented at the point where session activity can be determined and/or controlled.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:999", + "label": "check" + }, + { + "data": "Configure the operating system to prevent a user from overriding a screensaver lock after a 15-minute period of inactivity for graphical user interfaces.\n\nCreate a database to contain the system-wide screensaver settings (if it does not already exist) with the following command:\n\nNote: The example below is using the database \"local\" for the system, so if the system is using another database in \"/etc/dconf/profile/user\", the file should be created under the appropriate subdirectory.\n\n# touch /etc/dconf/db/local.d/locks/session\n\nAdd the setting to lock the screensaver lock delay:\n\n/org/gnome/desktop/screensaver/lock-delay", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204399\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204399\",\n \"cdf:title\": \"SRG-OS-000029-GPOS-00010\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204399r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204399r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-010081\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must prevent a user from overriding the screensaver lock-delay setting for the graphical user interface.\",\n \"cdf:description\": \"<VulnDiscussion>A session time-out lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not log out because of the temporary nature of the absence. Rather than relying on the user to manually lock their operating system session prior to vacating the vicinity, operating systems need to be able to identify when a user's session has idled and take action to initiate the session lock.\\n\\nThe session lock is implemented at the point where session activity can be determined and/or controlled.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80371-8\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-87807\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-73155\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000057\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to prevent a user from overriding a screensaver lock after a 15-minute period of inactivity for graphical user interfaces.\\n\\nCreate a database to contain the system-wide screensaver settings (if it does not already exist) with the following command:\\n\\nNote: The example below is using the database \\\"local\\\" for the system, so if the system is using another database in \\\"/etc/dconf/profile/user\\\", the file should be created under the appropriate subdirectory.\\n\\n# touch /etc/dconf/db/local.d/locks/session\\n\\nAdd the setting to lock the screensaver lock delay:\\n\\n/org/gnome/desktop/screensaver/lock-delay\",\n \"fixref\": \"F-4523r88390_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4523r88390_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:999\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:16:23" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000057" + ], + "nist": [ + "AC-11 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"A session time-out lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not log out because of the temporary nature of the absence. Rather than relying on the user to manually lock their operating system session prior to vacating the vicinity, operating systems need to be able to identify when a user's session has idled and take action to initiate the session lock.\\n\\nThe session lock is implemented at the point where session activity can be determined and/or controlled.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204402", + "group_title": "SRG-OS-000029-GPOS-00010", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204402r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:978" + } + }, + "fix_id": "F-4526r88399_fix", + "fixtext_fixref": "F-4526r88399_fix", + "ident": [ + { + "text": "CCE-80111-8", + "system": "http://cce.mitre.org" + }, + { + "text": "V-71899", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86523", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000057", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204402r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:16:23", + "idref": "xccdf_mil.disa.stig_rule_SV-204399r603261_rule", + "version": "RHEL-07-010081", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-80371-8", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-87807", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-73155", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000057", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4523r88390_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:999" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must initiate a session lock for the screensaver after a period of inactivity for graphical user interfaces.", + "id": "V-204402", + "desc": "A session time-out lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not log out because of the temporary nature of the absence. Rather than relying on the user to manually lock their operating system session prior to vacating the vicinity, operating systems need to be able to identify when a user's session has idled and take action to initiate the session lock.\n\nThe session lock is implemented at the point where session activity can be determined and/or controlled.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:978", + "label": "check" + }, + { + "data": "Configure the operating system to initiate a session lock after a 15-minute period of inactivity for graphical user interfaces.\n\nCreate a database to contain the system-wide screensaver settings (if it does not already exist) with the following command:\n\n# touch /etc/dconf/db/local.d/00-screensaver\n\nAdd the setting to enable screensaver locking after 15 minutes of inactivity:\n\n[org/gnome/desktop/screensaver]\n\nidle-activation-enabled=true\n\nUpdate the system databases:\n\n# dconf update\n\nUsers must log out and back in again before the system-wide settings take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204402\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204402\",\n \"cdf:title\": \"SRG-OS-000029-GPOS-00010\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204402r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204402r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-010100\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must initiate a session lock for the screensaver after a period of inactivity for graphical user interfaces.\",\n \"cdf:description\": \"<VulnDiscussion>A session time-out lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not log out because of the temporary nature of the absence. Rather than relying on the user to manually lock their operating system session prior to vacating the vicinity, operating systems need to be able to identify when a user's session has idled and take action to initiate the session lock.\\n\\nThe session lock is implemented at the point where session activity can be determined and/or controlled.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80111-8\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-71899\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86523\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000057\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to initiate a session lock after a 15-minute period of inactivity for graphical user interfaces.\\n\\nCreate a database to contain the system-wide screensaver settings (if it does not already exist) with the following command:\\n\\n# touch /etc/dconf/db/local.d/00-screensaver\\n\\nAdd the setting to enable screensaver locking after 15 minutes of inactivity:\\n\\n[org/gnome/desktop/screensaver]\\n\\nidle-activation-enabled=true\\n\\nUpdate the system databases:\\n\\n# dconf update\\n\\nUsers must log out and back in again before the system-wide settings take effect.\",\n \"fixref\": \"F-4526r88399_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4526r88399_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:978\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:16:23" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000057" + ], + "nist": [ + "AC-11 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"A session lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not want to log out because of the temporary nature of the absence.\\n\\nThe session lock is implemented at the point where session activity can be determined.\\n\\nThe ability to enable/disable a session lock is given to the user by default. Disabling the user's ability to disengage the graphical user interface session lock provides the assurance that all sessions will lock after the specified period of time.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204403", + "group_title": "SRG-OS-000029-GPOS-00010", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204403r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:93703" + } + }, + "fix_id": "F-4527r88402_fix", + "fixtext_fixref": "F-4527r88402_fix", + "ident": [ + { + "text": "SV-93703", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-78997", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000057", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204403r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:16:23", + "idref": "xccdf_mil.disa.stig_rule_SV-204402r603261_rule", + "version": "RHEL-07-010100", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-80111-8", + "system": "http://cce.mitre.org" + }, + { + "text": "V-71899", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86523", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000057", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4526r88399_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:978" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must prevent a user from overriding the screensaver idle-activation-enabled setting for the graphical user interface.", + "id": "V-204403", + "desc": "A session lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not want to log out because of the temporary nature of the absence.\n\nThe session lock is implemented at the point where session activity can be determined.\n\nThe ability to enable/disable a session lock is given to the user by default. Disabling the user's ability to disengage the graphical user interface session lock provides the assurance that all sessions will lock after the specified period of time.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:93703", + "label": "check" + }, + { + "data": "Configure the operating system to prevent a user from overriding a screensaver lock after a 15-minute period of inactivity for graphical user interfaces.\n\nCreate a database to contain the system-wide screensaver settings (if it does not already exist) with the following command:\n\nNote: The example below is using the database \"local\" for the system, so if the system is using another database in \"/etc/dconf/profile/user\", the file should be created under the appropriate subdirectory.\n\n# touch /etc/dconf/db/local.d/locks/session\n\nAdd the setting to lock the screensaver idle-activation-enabled setting:\n\n/org/gnome/desktop/screensaver/idle-activation-enabled", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204403\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204403\",\n \"cdf:title\": \"SRG-OS-000029-GPOS-00010\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204403r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204403r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-010101\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must prevent a user from overriding the screensaver idle-activation-enabled setting for the graphical user interface.\",\n \"cdf:description\": \"<VulnDiscussion>A session lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not want to log out because of the temporary nature of the absence.\\n\\nThe session lock is implemented at the point where session activity can be determined.\\n\\nThe ability to enable/disable a session lock is given to the user by default. Disabling the user's ability to disengage the graphical user interface session lock provides the assurance that all sessions will lock after the specified period of time.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"SV-93703\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-78997\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000057\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to prevent a user from overriding a screensaver lock after a 15-minute period of inactivity for graphical user interfaces.\\n\\nCreate a database to contain the system-wide screensaver settings (if it does not already exist) with the following command:\\n\\nNote: The example below is using the database \\\"local\\\" for the system, so if the system is using another database in \\\"/etc/dconf/profile/user\\\", the file should be created under the appropriate subdirectory.\\n\\n# touch /etc/dconf/db/local.d/locks/session\\n\\nAdd the setting to lock the screensaver idle-activation-enabled setting:\\n\\n/org/gnome/desktop/screensaver/idle-activation-enabled\",\n \"fixref\": \"F-4527r88402_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4527r88402_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:93703\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:16:23" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000057" + ], + "nist": [ + "AC-11 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"A session time-out lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not log out because of the temporary nature of the absence. Rather than relying on the user to manually lock their operating system session prior to vacating the vicinity, operating systems need to be able to identify when a user's session has idled and take action to initiate the session lock.\\n\\nThe session lock is implemented at the point where session activity can be determined and/or controlled.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204404", + "group_title": "SRG-OS-000029-GPOS-00010", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204404r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:985" + } + }, + "fix_id": "F-4528r88405_fix", + "fixtext_fixref": "F-4528r88405_fix", + "ident": [ + { + "text": "CCE-80370-0", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86525", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71901", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000057", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204404r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:16:23", + "idref": "xccdf_mil.disa.stig_rule_SV-204403r603261_rule", + "version": "RHEL-07-010101", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "SV-93703", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-78997", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000057", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4527r88402_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:93703" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must initiate a session lock for graphical user interfaces when the screensaver is activated.", + "id": "V-204404", + "desc": "A session time-out lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not log out because of the temporary nature of the absence. Rather than relying on the user to manually lock their operating system session prior to vacating the vicinity, operating systems need to be able to identify when a user's session has idled and take action to initiate the session lock.\n\nThe session lock is implemented at the point where session activity can be determined and/or controlled.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:985", + "label": "check" + }, + { + "data": "Configure the operating system to initiate a session lock for graphical user interfaces when a screensaver is activated.\n\nCreate a database to contain the system-wide screensaver settings (if it does not already exist) with the following command:\n\n# touch /etc/dconf/db/local.d/00-screensaver\n\nAdd the setting to enable session locking when a screensaver is activated:\n\n[org/gnome/desktop/screensaver]\nlock-delay=uint32 5\n\nThe \"uint32\" must be included along with the integer key values as shown.\n\nUpdate the system databases:\n\n# dconf update\n\nUsers must log out and back in again before the system-wide settings take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204404\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204404\",\n \"cdf:title\": \"SRG-OS-000029-GPOS-00010\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204404r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204404r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-010110\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must initiate a session lock for graphical user interfaces when the screensaver is activated.\",\n \"cdf:description\": \"<VulnDiscussion>A session time-out lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not log out because of the temporary nature of the absence. Rather than relying on the user to manually lock their operating system session prior to vacating the vicinity, operating systems need to be able to identify when a user's session has idled and take action to initiate the session lock.\\n\\nThe session lock is implemented at the point where session activity can be determined and/or controlled.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80370-0\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86525\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-71901\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000057\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to initiate a session lock for graphical user interfaces when a screensaver is activated.\\n\\nCreate a database to contain the system-wide screensaver settings (if it does not already exist) with the following command:\\n\\n# touch /etc/dconf/db/local.d/00-screensaver\\n\\nAdd the setting to enable session locking when a screensaver is activated:\\n\\n[org/gnome/desktop/screensaver]\\nlock-delay=uint32 5\\n\\nThe \\\"uint32\\\" must be included along with the integer key values as shown.\\n\\nUpdate the system databases:\\n\\n# dconf update\\n\\nUsers must log out and back in again before the system-wide settings take effect.\",\n \"fixref\": \"F-4528r88405_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4528r88405_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:985\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:16:23" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000192" + ], + "nist": [ + "IA-5 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Pluggable authentication modules (PAM) allow for a modular approach to integrating authentication methods. PAM operates in a top-down processing model and if the modules are not listed in the correct order, an important security function could be bypassed if stack entries are not centralized.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204405", + "group_title": "SRG-OS-000069-GPOS-00037", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204405r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:95715" + } + }, + "fix_id": "F-4529r88408_fix", + "fixtext_fixref": "F-4529r88408_fix", + "ident": [ + { + "text": "SV-95715", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-81003", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000192", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204405r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:16:23", + "idref": "xccdf_mil.disa.stig_rule_SV-204404r603261_rule", + "version": "RHEL-07-010110", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-80370-0", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86525", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71901", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000057", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4528r88405_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:985" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that /etc/pam.d/passwd implements /etc/pam.d/system-auth when changing passwords.", + "id": "V-204405", + "desc": "Pluggable authentication modules (PAM) allow for a modular approach to integrating authentication methods. PAM operates in a top-down processing model and if the modules are not listed in the correct order, an important security function could be bypassed if stack entries are not centralized.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:95715", + "label": "check" + }, + { + "data": "Configure PAM to utilize /etc/pam.d/system-auth when changing passwords.\n\nAdd the following line to \"/etc/pam.d/passwd\" (or modify the line to have the required value):\n\npassword substack system-auth", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204405\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204405\",\n \"cdf:title\": \"SRG-OS-000069-GPOS-00037\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204405r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204405r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-010118\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must be configured so that /etc/pam.d/passwd implements /etc/pam.d/system-auth when changing passwords.\",\n \"cdf:description\": \"<VulnDiscussion>Pluggable authentication modules (PAM) allow for a modular approach to integrating authentication methods. PAM operates in a top-down processing model and if the modules are not listed in the correct order, an important security function could be bypassed if stack entries are not centralized.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"SV-95715\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-81003\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000192\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure PAM to utilize /etc/pam.d/system-auth when changing passwords.\\n\\nAdd the following line to \\\"/etc/pam.d/passwd\\\" (or modify the line to have the required value):\\n\\npassword substack system-auth\",\n \"fixref\": \"F-4529r88408_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4529r88408_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:95715\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:16:23" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000192" + ], + "nist": [ + "IA-5 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. \\\"pwquality\\\" enforces complex password construction configuration and has the ability to limit brute-force attacks on the system.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204406", + "group_title": "SRG-OS-000069-GPOS-00037", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204406r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:481" + } + }, + "fix_id": "F-4530r88411_fix", + "fixtext_fixref": "F-4530r88411_fix", + "ident": [ + { + "text": "CCE-27160-1", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-87811", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-73159", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000192", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204406r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:16:23", + "idref": "xccdf_mil.disa.stig_rule_SV-204405r603261_rule", + "version": "RHEL-07-010118", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "SV-95715", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-81003", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000192", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4529r88408_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:95715" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that when passwords are changed or new passwords are established, pwquality must be used.", + "id": "V-204406", + "desc": "Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. \"pwquality\" enforces complex password construction configuration and has the ability to limit brute-force attacks on the system.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:481", + "label": "check" + }, + { + "data": "Configure the operating system to use \"pwquality\" to enforce password complexity rules.\n\nAdd the following line to \"/etc/pam.d/system-auth\" (or modify the line to have the required value):\n\npassword required pam_pwquality.so retry=3\n\nNote: The value of \"retry\" should be between \"1\" and \"3\".", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204406\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204406\",\n \"cdf:title\": \"SRG-OS-000069-GPOS-00037\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204406r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204406r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-010119\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must be configured so that when passwords are changed or new passwords are established, pwquality must be used.\",\n \"cdf:description\": \"<VulnDiscussion>Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. \\\"pwquality\\\" enforces complex password construction configuration and has the ability to limit brute-force attacks on the system.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-27160-1\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-87811\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-73159\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000192\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to use \\\"pwquality\\\" to enforce password complexity rules.\\n\\nAdd the following line to \\\"/etc/pam.d/system-auth\\\" (or modify the line to have the required value):\\n\\npassword required pam_pwquality.so retry=3\\n\\nNote: The value of \\\"retry\\\" should be between \\\"1\\\" and \\\"3\\\".\",\n \"fixref\": \"F-4530r88411_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4530r88411_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:481\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:16:23" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000192" + ], + "nist": [ + "IA-5 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204407", + "group_title": "SRG-OS-000069-GPOS-00037", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204407r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-export": { + "value-id": "xccdf_mil.disa.stig_value_var_password_pam_ucredit", + "export-name": "oval:mil.disa.stig.rhel7:var:3805" + }, + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:484" + } + }, + "fix_id": "F-4531r88414_fix", + "fixtext_fixref": "F-4531r88414_fix", + "ident": [ + { + "text": "CCE-27200-5", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86527", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71903", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000192", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204407r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:16:23", + "idref": "xccdf_mil.disa.stig_rule_SV-204406r603261_rule", + "version": "RHEL-07-010119", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-27160-1", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-87811", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-73159", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000192", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4530r88411_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:481" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that when passwords are changed or new passwords are established, the new password must contain at least one upper-case character.", + "id": "V-204407", + "desc": "Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\n\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:484", + "label": "check" + }, + { + "data": "Configure the operating system to enforce password complexity by requiring that at least one upper-case character be used by setting the \"ucredit\" option.\n\nAdd the following line to \"/etc/security/pwquality.conf\" (or modify the line to have the required value):\n\nucredit = -1", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204407\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204407\",\n \"cdf:title\": \"SRG-OS-000069-GPOS-00037\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204407r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204407r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-010120\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must be configured so that when passwords are changed or new passwords are established, the new password must contain at least one upper-case character.\",\n \"cdf:description\": \"<VulnDiscussion>Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-27200-5\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86527\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-71903\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000192\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to enforce password complexity by requiring that at least one upper-case character be used by setting the \\\"ucredit\\\" option.\\n\\nAdd the following line to \\\"/etc/security/pwquality.conf\\\" (or modify the line to have the required value):\\n\\nucredit = -1\",\n \"fixref\": \"F-4531r88414_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4531r88414_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-export\": {\n \"value-id\": \"xccdf_mil.disa.stig_value_var_password_pam_ucredit\",\n \"export-name\": \"oval:mil.disa.stig.rhel7:var:3805\"\n },\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:484\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:16:23" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000193" + ], + "nist": [ + "IA-5 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204408", + "group_title": "SRG-OS-000070-GPOS-00038", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204408r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-export": { + "value-id": "xccdf_mil.disa.stig_value_var_password_pam_lcredit", + "export-name": "oval:mil.disa.stig.rhel7:var:3798" + }, + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:468" + } + }, + "fix_id": "F-4532r88417_fix", + "fixtext_fixref": "F-4532r88417_fix", + "ident": [ + { + "text": "CCE-27345-8", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86529", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71905", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000193", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204408r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:16:23", + "idref": "xccdf_mil.disa.stig_rule_SV-204407r603261_rule", + "version": "RHEL-07-010120", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-27200-5", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86527", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71903", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000192", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4531r88414_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-export": { + "value-id": "xccdf_mil.disa.stig_value_var_password_pam_ucredit", + "export-name": "oval:mil.disa.stig.rhel7:var:3805" + }, + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:484" + } + } + }, + "value": { + "type": "number", + "Id": "xccdf_mil.disa.stig_value_var_password_pam_ucredit", + "id": "xccdf_mil.disa.stig_value_var_password_pam_ucredit", + "cdf:title": "ucredit", + "cdf:description": "Minimum number of upper case in password", + "cdf:value": [ + -1, + { + "text": -2, + "selector": "2" + }, + { + "text": -1, + "selector": "1" + }, + { + "text": 0, + "selector": "0" + } + ] + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that when passwords are changed or new passwords are established, the new password must contain at least one lower-case character.", + "id": "V-204408", + "desc": "Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\n\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:468", + "label": "check" + }, + { + "data": "Configure the system to require at least one lower-case character when creating or changing a password.\n\nAdd or modify the following line\nin \"/etc/security/pwquality.conf\":\n\nlcredit = -1", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204408\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204408\",\n \"cdf:title\": \"SRG-OS-000070-GPOS-00038\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204408r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204408r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-010130\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must be configured so that when passwords are changed or new passwords are established, the new password must contain at least one lower-case character.\",\n \"cdf:description\": \"<VulnDiscussion>Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-27345-8\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86529\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-71905\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000193\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the system to require at least one lower-case character when creating or changing a password.\\n\\nAdd or modify the following line\\nin \\\"/etc/security/pwquality.conf\\\":\\n\\nlcredit = -1\",\n \"fixref\": \"F-4532r88417_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4532r88417_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-export\": {\n \"value-id\": \"xccdf_mil.disa.stig_value_var_password_pam_lcredit\",\n \"export-name\": \"oval:mil.disa.stig.rhel7:var:3798\"\n },\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:468\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:16:23" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000194" + ], + "nist": [ + "IA-5 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204409", + "group_title": "SRG-OS-000071-GPOS-00039", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204409r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-export": { + "value-id": "xccdf_mil.disa.stig_value_var_password_pam_dcredit", + "export-name": "oval:mil.disa.stig.rhel7:var:3796" + }, + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:463" + } + }, + "fix_id": "F-4533r88420_fix", + "fixtext_fixref": "F-4533r88420_fix", + "ident": [ + { + "text": "CCE-27214-6", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86531", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71907", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000194", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204409r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:16:23", + "idref": "xccdf_mil.disa.stig_rule_SV-204408r603261_rule", + "version": "RHEL-07-010130", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-27345-8", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86529", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71905", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000193", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4532r88417_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-export": { + "value-id": "xccdf_mil.disa.stig_value_var_password_pam_lcredit", + "export-name": "oval:mil.disa.stig.rhel7:var:3798" + }, + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:468" + } + } + }, + "value": { + "type": "number", + "Id": "xccdf_mil.disa.stig_value_var_password_pam_lcredit", + "id": "xccdf_mil.disa.stig_value_var_password_pam_lcredit", + "cdf:title": "lcredit", + "cdf:description": "Minimum number of lower case in password", + "cdf:value": [ + -1, + { + "text": -2, + "selector": "2" + }, + { + "text": -1, + "selector": "1" + }, + { + "text": 0, + "selector": "0" + } + ] + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that when passwords are changed or new passwords are assigned, the new password must contain at least one numeric character.", + "id": "V-204409", + "desc": "Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\n\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:463", + "label": "check" + }, + { + "data": "Configure the operating system to enforce password complexity by requiring that at least one numeric character be used by setting the \"dcredit\" option.\n\nAdd the following line to /etc/security/pwquality.conf (or modify the line to have the required value):\n\ndcredit = -1", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204409\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204409\",\n \"cdf:title\": \"SRG-OS-000071-GPOS-00039\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204409r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204409r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-010140\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must be configured so that when passwords are changed or new passwords are assigned, the new password must contain at least one numeric character.\",\n \"cdf:description\": \"<VulnDiscussion>Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-27214-6\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86531\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-71907\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000194\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to enforce password complexity by requiring that at least one numeric character be used by setting the \\\"dcredit\\\" option.\\n\\nAdd the following line to /etc/security/pwquality.conf (or modify the line to have the required value):\\n\\ndcredit = -1\",\n \"fixref\": \"F-4533r88420_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4533r88420_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-export\": {\n \"value-id\": \"xccdf_mil.disa.stig_value_var_password_pam_dcredit\",\n \"export-name\": \"oval:mil.disa.stig.rhel7:var:3796\"\n },\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:463\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:16:23" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001619" + ], + "nist": [ + "IA-5 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204410", + "group_title": "SRG-OS-000266-GPOS-00101", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204410r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-export": { + "value-id": "xccdf_mil.disa.stig_value_var_password_pam_ocredit", + "export-name": "oval:mil.disa.stig.rhel7:var:3803" + }, + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:478" + } + }, + "fix_id": "F-4534r88423_fix", + "fixtext_fixref": "F-4534r88423_fix", + "ident": [ + { + "text": "CCE-27360-7", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86533", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71909", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001619", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204410r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:16:23", + "idref": "xccdf_mil.disa.stig_rule_SV-204409r603261_rule", + "version": "RHEL-07-010140", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-27214-6", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86531", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71907", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000194", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4533r88420_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-export": { + "value-id": "xccdf_mil.disa.stig_value_var_password_pam_dcredit", + "export-name": "oval:mil.disa.stig.rhel7:var:3796" + }, + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:463" + } + } + }, + "value": { + "type": "number", + "Id": "xccdf_mil.disa.stig_value_var_password_pam_dcredit", + "id": "xccdf_mil.disa.stig_value_var_password_pam_dcredit", + "cdf:title": "dcredit", + "cdf:description": "Minimum number of digits in password", + "cdf:value": [ + -1, + { + "text": -2, + "selector": "2" + }, + { + "text": -1, + "selector": "1" + }, + { + "text": 0, + "selector": "0" + } + ] + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that when passwords are changed or new passwords are established, the new password must contain at least one special character.", + "id": "V-204410", + "desc": "Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\n\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:478", + "label": "check" + }, + { + "data": "Configure the operating system to enforce password complexity by requiring that at least one special character be used by setting the \"ocredit\" option.\n\nAdd the following line to \"/etc/security/pwquality.conf\" (or modify the line to have the required value):\n\nocredit = -1", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204410\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204410\",\n \"cdf:title\": \"SRG-OS-000266-GPOS-00101\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204410r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204410r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-010150\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must be configured so that when passwords are changed or new passwords are established, the new password must contain at least one special character.\",\n \"cdf:description\": \"<VulnDiscussion>Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-27360-7\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86533\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-71909\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-001619\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to enforce password complexity by requiring that at least one special character be used by setting the \\\"ocredit\\\" option.\\n\\nAdd the following line to \\\"/etc/security/pwquality.conf\\\" (or modify the line to have the required value):\\n\\nocredit = -1\",\n \"fixref\": \"F-4534r88423_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4534r88423_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-export\": {\n \"value-id\": \"xccdf_mil.disa.stig_value_var_password_pam_ocredit\",\n \"export-name\": \"oval:mil.disa.stig.rhel7:var:3803\"\n },\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:478\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:16:23" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000195" + ], + "nist": [ + "IA-5 (1) (b)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204411", + "group_title": "SRG-OS-000072-GPOS-00040", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204411r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-export": { + "value-id": "xccdf_mil.disa.stig_value_var_password_pam_difok", + "export-name": "oval:mil.disa.stig.rhel7:var:3797" + }, + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:466" + } + }, + "fix_id": "F-4535r88426_fix", + "fixtext_fixref": "F-4535r88426_fix", + "ident": [ + { + "text": "CCE-26631-2", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86535", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71911", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000195", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204411r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:16:23", + "idref": "xccdf_mil.disa.stig_rule_SV-204410r603261_rule", + "version": "RHEL-07-010150", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-27360-7", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86533", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71909", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001619", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4534r88423_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-export": { + "value-id": "xccdf_mil.disa.stig_value_var_password_pam_ocredit", + "export-name": "oval:mil.disa.stig.rhel7:var:3803" + }, + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:478" + } + } + }, + "value": { + "type": "number", + "Id": "xccdf_mil.disa.stig_value_var_password_pam_ocredit", + "id": "xccdf_mil.disa.stig_value_var_password_pam_ocredit", + "cdf:title": "ocredit", + "cdf:description": "Minimum number of other (special characters) in\npassword", + "cdf:value": [ + -1, + { + "text": -2, + "selector": "2" + }, + { + "text": -1, + "selector": "1" + }, + { + "text": 0, + "selector": "0" + } + ] + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that when passwords are changed a minimum of eight of the total number of characters must be changed.", + "id": "V-204411", + "desc": "Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\n\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:466", + "label": "check" + }, + { + "data": "Configure the operating system to require the change of at least eight of the total number of characters when passwords are changed by setting the \"difok\" option.\n\nAdd the following line to \"/etc/security/pwquality.conf\" (or modify the line to have the required value):\n\ndifok = 8", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204411\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204411\",\n \"cdf:title\": \"SRG-OS-000072-GPOS-00040\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204411r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204411r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-010160\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must be configured so that when passwords are changed a minimum of eight of the total number of characters must be changed.\",\n \"cdf:description\": \"<VulnDiscussion>Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-26631-2\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86535\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-71911\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000195\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to require the change of at least eight of the total number of characters when passwords are changed by setting the \\\"difok\\\" option.\\n\\nAdd the following line to \\\"/etc/security/pwquality.conf\\\" (or modify the line to have the required value):\\n\\ndifok = 8\",\n \"fixref\": \"F-4535r88426_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4535r88426_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-export\": {\n \"value-id\": \"xccdf_mil.disa.stig_value_var_password_pam_difok\",\n \"export-name\": \"oval:mil.disa.stig.rhel7:var:3797\"\n },\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:466\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:16:23" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000195" + ], + "nist": [ + "IA-5 (1) (b)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204412", + "group_title": "SRG-OS-000072-GPOS-00040", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204412r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-export": { + "value-id": "xccdf_mil.disa.stig_value_var_password_pam_minclass", + "export-name": "oval:mil.disa.stig.rhel7:var:3801" + }, + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:474" + } + }, + "fix_id": "F-4536r88429_fix", + "fixtext_fixref": "F-4536r88429_fix", + "ident": [ + { + "text": "CCE-27115-5", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86537", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71913", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000195", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204412r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:16:23", + "idref": "xccdf_mil.disa.stig_rule_SV-204411r603261_rule", + "version": "RHEL-07-010160", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-26631-2", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86535", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71911", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000195", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4535r88426_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-export": { + "value-id": "xccdf_mil.disa.stig_value_var_password_pam_difok", + "export-name": "oval:mil.disa.stig.rhel7:var:3797" + }, + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:466" + } + } + }, + "value": { + "type": "number", + "Id": "xccdf_mil.disa.stig_value_var_password_pam_difok", + "id": "xccdf_mil.disa.stig_value_var_password_pam_difok", + "cdf:title": "difok", + "cdf:description": "Minimum number of characters not present in old\npassword", + "cdf:warning": "Keep this high for short passwords", + "cdf:value": [ + 8, + { + "text": 2, + "selector": "2" + }, + { + "text": 3, + "selector": "3" + }, + { + "text": 4, + "selector": "4" + }, + { + "text": 5, + "selector": "5" + }, + { + "text": 6, + "selector": "6" + }, + { + "text": 7, + "selector": "7" + }, + { + "text": 8, + "selector": "8" + }, + { + "text": 15, + "selector": "15" + } + ] + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that when passwords are changed a minimum of four character classes must be changed.", + "id": "V-204412", + "desc": "Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\n\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:474", + "label": "check" + }, + { + "data": "Configure the operating system to require the change of at least four character classes when passwords are changed by setting the \"minclass\" option.\n\nAdd the following line to \"/etc/security/pwquality.conf conf\" (or modify the line to have the required value):\n\nminclass = 4", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204412\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204412\",\n \"cdf:title\": \"SRG-OS-000072-GPOS-00040\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204412r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204412r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-010170\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must be configured so that when passwords are changed a minimum of four character classes must be changed.\",\n \"cdf:description\": \"<VulnDiscussion>Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-27115-5\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86537\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-71913\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000195\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to require the change of at least four character classes when passwords are changed by setting the \\\"minclass\\\" option.\\n\\nAdd the following line to \\\"/etc/security/pwquality.conf conf\\\" (or modify the line to have the required value):\\n\\nminclass = 4\",\n \"fixref\": \"F-4536r88429_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4536r88429_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-export\": {\n \"value-id\": \"xccdf_mil.disa.stig_value_var_password_pam_minclass\",\n \"export-name\": \"oval:mil.disa.stig.rhel7:var:3801\"\n },\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:474\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:16:23" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000195" + ], + "nist": [ + "IA-5 (1) (b)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204413", + "group_title": "SRG-OS-000072-GPOS-00040", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204413r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-export": { + "value-id": "xccdf_mil.disa.stig_value_var_password_pam_maxrepeat", + "export-name": "oval:mil.disa.stig.rhel7:var:3800" + }, + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:472" + } + }, + "fix_id": "F-4537r88432_fix", + "fixtext_fixref": "F-4537r88432_fix", + "ident": [ + { + "text": "CCE-27333-4", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86539", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71915", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000195", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204413r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:16:23", + "idref": "xccdf_mil.disa.stig_rule_SV-204412r603261_rule", + "version": "RHEL-07-010170", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-27115-5", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86537", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71913", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000195", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4536r88429_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-export": { + "value-id": "xccdf_mil.disa.stig_value_var_password_pam_minclass", + "export-name": "oval:mil.disa.stig.rhel7:var:3801" + }, + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:474" + } + } + }, + "value": { + "type": "number", + "Id": "xccdf_mil.disa.stig_value_var_password_pam_minclass", + "id": "xccdf_mil.disa.stig_value_var_password_pam_minclass", + "cdf:title": "minclass", + "cdf:description": "Minimum number of categories of characters that must exist in a password", + "cdf:value": [ + 4, + { + "text": 1, + "selector": "1" + }, + { + "text": 2, + "selector": "2" + }, + { + "text": 3, + "selector": "3" + }, + { + "text": 4, + "selector": "4" + } + ] + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that when passwords are changed the number of repeating consecutive characters must not be more than three characters.", + "id": "V-204413", + "desc": "Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\n\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:472", + "label": "check" + }, + { + "data": "Configure the operating system to require the change of the number of repeating consecutive characters when passwords are changed by setting the \"maxrepeat\" option.\n\nAdd the following line to \"/etc/security/pwquality.conf conf\" (or modify the line to have the required value):\n\nmaxrepeat = 3", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204413\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204413\",\n \"cdf:title\": \"SRG-OS-000072-GPOS-00040\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204413r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204413r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-010180\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must be configured so that when passwords are changed the number of repeating consecutive characters must not be more than three characters.\",\n \"cdf:description\": \"<VulnDiscussion>Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-27333-4\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86539\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-71915\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000195\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to require the change of the number of repeating consecutive characters when passwords are changed by setting the \\\"maxrepeat\\\" option.\\n\\nAdd the following line to \\\"/etc/security/pwquality.conf conf\\\" (or modify the line to have the required value):\\n\\nmaxrepeat = 3\",\n \"fixref\": \"F-4537r88432_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4537r88432_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-export\": {\n \"value-id\": \"xccdf_mil.disa.stig_value_var_password_pam_maxrepeat\",\n \"export-name\": \"oval:mil.disa.stig.rhel7:var:3800\"\n },\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:472\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:16:23" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000195" + ], + "nist": [ + "IA-5 (1) (b)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204414", + "group_title": "SRG-OS-000072-GPOS-00040", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204414r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-export": { + "value-id": "xccdf_mil.disa.stig_value_var_password_pam_maxclassrepeat", + "export-name": "oval:mil.disa.stig.rhel7:var:3799" + }, + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:470" + } + }, + "fix_id": "F-4538r88435_fix", + "fixtext_fixref": "F-4538r88435_fix", + "ident": [ + { + "text": "CCE-27512-3", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86541", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71917", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000195", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204414r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:16:23", + "idref": "xccdf_mil.disa.stig_rule_SV-204413r603261_rule", + "version": "RHEL-07-010180", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-27333-4", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86539", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71915", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000195", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4537r88432_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-export": { + "value-id": "xccdf_mil.disa.stig_value_var_password_pam_maxrepeat", + "export-name": "oval:mil.disa.stig.rhel7:var:3800" + }, + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:472" + } + } + }, + "value": { + "type": "number", + "Id": "xccdf_mil.disa.stig_value_var_password_pam_maxrepeat", + "id": "xccdf_mil.disa.stig_value_var_password_pam_maxrepeat", + "cdf:title": "maxrepeat", + "cdf:description": "Maximum Number of Consecutive Repeating Characters in a Password", + "cdf:value": [ + 3, + { + "text": 1, + "selector": "1" + }, + { + "text": 2, + "selector": "2" + }, + { + "text": 3, + "selector": "3" + } + ] + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that when passwords are changed the number of repeating characters of the same character class must not be more than four characters.", + "id": "V-204414", + "desc": "Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\n\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:470", + "label": "check" + }, + { + "data": "Configure the operating system to require the change of the number of repeating characters of the same character class when passwords are changed by setting the \"maxclassrepeat\" option.\n\nAdd the following line to \"/etc/security/pwquality.conf\" conf (or modify the line to have the required value):\n\nmaxclassrepeat = 4", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204414\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204414\",\n \"cdf:title\": \"SRG-OS-000072-GPOS-00040\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204414r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204414r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-010190\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must be configured so that when passwords are changed the number of repeating characters of the same character class must not be more than four characters.\",\n \"cdf:description\": \"<VulnDiscussion>Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-27512-3\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86541\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-71917\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000195\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to require the change of the number of repeating characters of the same character class when passwords are changed by setting the \\\"maxclassrepeat\\\" option.\\n\\nAdd the following line to \\\"/etc/security/pwquality.conf\\\" conf (or modify the line to have the required value):\\n\\nmaxclassrepeat = 4\",\n \"fixref\": \"F-4538r88435_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4538r88435_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-export\": {\n \"value-id\": \"xccdf_mil.disa.stig_value_var_password_pam_maxclassrepeat\",\n \"export-name\": \"oval:mil.disa.stig.rhel7:var:3799\"\n },\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:470\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:16:23" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000196" + ], + "nist": [ + "IA-5 (1) (c)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Passwords need to be protected at all times, and encryption is the standard method for protecting passwords. If passwords are not encrypted, they can be plainly read (i.e., clear text) and easily compromised. Passwords encrypted with a weak algorithm are no more protected than if they are kept in plain text.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204415", + "group_title": "SRG-OS-000073-GPOS-00041", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204415r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:1367" + } + }, + "fix_id": "F-4539r88438_fix", + "fixtext_fixref": "F-4539r88438_fix", + "ident": [ + { + "text": "CCE-27104-9", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86543", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71919", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000196", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204415r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:16:23", + "idref": "xccdf_mil.disa.stig_rule_SV-204414r603261_rule", + "version": "RHEL-07-010190", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-27512-3", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86541", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71917", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000195", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4538r88435_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-export": { + "value-id": "xccdf_mil.disa.stig_value_var_password_pam_maxclassrepeat", + "export-name": "oval:mil.disa.stig.rhel7:var:3799" + }, + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:470" + } + } + }, + "value": { + "type": "number", + "Id": "xccdf_mil.disa.stig_value_var_password_pam_maxclassrepeat", + "id": "xccdf_mil.disa.stig_value_var_password_pam_maxclassrepeat", + "cdf:title": "maxclassrepeat", + "cdf:description": "Maximum Number of Consecutive Repeating Characters in a Password From the Same Character Class", + "cdf:value": [ + 4, + { + "text": 1, + "selector": "1" + }, + { + "text": 2, + "selector": "2" + }, + { + "text": 3, + "selector": "3" + }, + { + "text": 4, + "selector": "4" + } + ] + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that the PAM system service is configured to store only encrypted representations of passwords.", + "id": "V-204415", + "desc": "Passwords need to be protected at all times, and encryption is the standard method for protecting passwords. If passwords are not encrypted, they can be plainly read (i.e., clear text) and easily compromised. Passwords encrypted with a weak algorithm are no more protected than if they are kept in plain text.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:1367", + "label": "check" + }, + { + "data": "Configure the operating system to store only SHA512 encrypted representations of passwords.\n\nAdd the following line in \"/etc/pam.d/system-auth\":\npam_unix.so sha512 shadow try_first_pass use_authtok\n\nAdd the following line in \"/etc/pam.d/password-auth\":\npam_unix.so sha512 shadow try_first_pass use_authtok\n\nNote: Manual changes to the listed files may be overwritten by the \"authconfig\" program. The \"authconfig\" program should not be used to update the configurations listed in this requirement.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204415\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204415\",\n \"cdf:title\": \"SRG-OS-000073-GPOS-00041\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204415r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204415r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-010200\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must be configured so that the PAM system service is configured to store only encrypted representations of passwords.\",\n \"cdf:description\": \"<VulnDiscussion>Passwords need to be protected at all times, and encryption is the standard method for protecting passwords. If passwords are not encrypted, they can be plainly read (i.e., clear text) and easily compromised. Passwords encrypted with a weak algorithm are no more protected than if they are kept in plain text.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-27104-9\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86543\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-71919\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000196\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to store only SHA512 encrypted representations of passwords.\\n\\nAdd the following line in \\\"/etc/pam.d/system-auth\\\":\\npam_unix.so sha512 shadow try_first_pass use_authtok\\n\\nAdd the following line in \\\"/etc/pam.d/password-auth\\\":\\npam_unix.so sha512 shadow try_first_pass use_authtok\\n\\nNote: Manual changes to the listed files may be overwritten by the \\\"authconfig\\\" program. The \\\"authconfig\\\" program should not be used to update the configurations listed in this requirement.\",\n \"fixref\": \"F-4539r88438_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4539r88438_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:1367\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:16:23" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000196" + ], + "nist": [ + "IA-5 (1) (c)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Passwords need to be protected at all times, and encryption is the standard method for protecting passwords. If passwords are not encrypted, they can be plainly read (i.e., clear text) and easily compromised. Passwords encrypted with a weak algorithm are no more protected than if they are kept in plain text.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204416", + "group_title": "SRG-OS-000073-GPOS-00041", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204416r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:1365" + } + }, + "fix_id": "F-4540r88441_fix", + "fixtext_fixref": "F-4540r88441_fix", + "ident": [ + { + "text": "CCE-27124-7", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86545", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71921", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000196", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204416r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:16:23", + "idref": "xccdf_mil.disa.stig_rule_SV-204415r603261_rule", + "version": "RHEL-07-010200", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-27104-9", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86543", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71919", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000196", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4539r88438_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:1367" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured to use the shadow file to store only encrypted representations of passwords.", + "id": "V-204416", + "desc": "Passwords need to be protected at all times, and encryption is the standard method for protecting passwords. If passwords are not encrypted, they can be plainly read (i.e., clear text) and easily compromised. Passwords encrypted with a weak algorithm are no more protected than if they are kept in plain text.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:1365", + "label": "check" + }, + { + "data": "Configure the operating system to store only SHA512 encrypted representations of passwords.\n\nAdd or update the following line in \"/etc/login.defs\":\n\nENCRYPT_METHOD SHA512", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204416\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204416\",\n \"cdf:title\": \"SRG-OS-000073-GPOS-00041\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204416r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204416r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-010210\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must be configured to use the shadow file to store only encrypted representations of passwords.\",\n \"cdf:description\": \"<VulnDiscussion>Passwords need to be protected at all times, and encryption is the standard method for protecting passwords. If passwords are not encrypted, they can be plainly read (i.e., clear text) and easily compromised. Passwords encrypted with a weak algorithm are no more protected than if they are kept in plain text.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-27124-7\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86545\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-71921\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000196\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to store only SHA512 encrypted representations of passwords.\\n\\nAdd or update the following line in \\\"/etc/login.defs\\\":\\n\\nENCRYPT_METHOD SHA512\",\n \"fixref\": \"F-4540r88441_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4540r88441_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:1365\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:16:23" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000196" + ], + "nist": [ + "IA-5 (1) (c)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Passwords need to be protected at all times, and encryption is the standard method for protecting passwords. If passwords are not encrypted, they can be plainly read (i.e., clear text) and easily compromised. Passwords encrypted with a weak algorithm are no more protected than if they are kept in plain text.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204417", + "group_title": "SRG-OS-000073-GPOS-00041", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204417r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:1363" + } + }, + "fix_id": "F-4541r88444_fix", + "fixtext_fixref": "F-4541r88444_fix", + "ident": [ + { + "text": "CCE-27053-8", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86547", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71923", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000196", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204417r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:16:23", + "idref": "xccdf_mil.disa.stig_rule_SV-204416r603261_rule", + "version": "RHEL-07-010210", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-27124-7", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86545", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71921", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000196", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4540r88441_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:1365" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that user and group account administration utilities are configured to store only encrypted representations of passwords.", + "id": "V-204417", + "desc": "Passwords need to be protected at all times, and encryption is the standard method for protecting passwords. If passwords are not encrypted, they can be plainly read (i.e., clear text) and easily compromised. Passwords encrypted with a weak algorithm are no more protected than if they are kept in plain text.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:1363", + "label": "check" + }, + { + "data": "Configure the operating system to store only SHA512 encrypted representations of passwords.\n\nAdd or update the following line in \"/etc/libuser.conf\" in the [defaults] section:\n\ncrypt_style = sha512", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204417\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204417\",\n \"cdf:title\": \"SRG-OS-000073-GPOS-00041\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204417r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204417r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-010220\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must be configured so that user and group account administration utilities are configured to store only encrypted representations of passwords.\",\n \"cdf:description\": \"<VulnDiscussion>Passwords need to be protected at all times, and encryption is the standard method for protecting passwords. If passwords are not encrypted, they can be plainly read (i.e., clear text) and easily compromised. Passwords encrypted with a weak algorithm are no more protected than if they are kept in plain text.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-27053-8\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86547\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-71923\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000196\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to store only SHA512 encrypted representations of passwords.\\n\\nAdd or update the following line in \\\"/etc/libuser.conf\\\" in the [defaults] section:\\n\\ncrypt_style = sha512\",\n \"fixref\": \"F-4541r88444_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4541r88444_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:1363\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:16:23" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000198" + ], + "nist": [ + "IA-5 (1) (d)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Enforcing a minimum password lifetime helps to prevent repeated password changes to defeat the password reuse or history enforcement requirement. If users are allowed to immediately and continually change their password, the password could be repeatedly changed in a short period of time to defeat the organization's policy regarding password reuse.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204418", + "group_title": "SRG-OS-000075-GPOS-00043", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204418r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-export": { + "value-id": "xccdf_mil.disa.stig_value_var_accounts_minimum_age_login_defs", + "export-name": "oval:mil.disa.stig.rhel7:var:3794" + }, + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:455" + } + }, + "fix_id": "F-4542r88447_fix", + "fixtext_fixref": "F-4542r88447_fix", + "ident": [ + { + "text": "CCE-27002-5", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86549", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71925", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000198", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204418r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:16:23", + "idref": "xccdf_mil.disa.stig_rule_SV-204417r603261_rule", + "version": "RHEL-07-010220", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-27053-8", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86547", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71923", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000196", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4541r88444_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:1363" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that passwords for new users are restricted to a 24 hours/1 day minimum lifetime.", + "id": "V-204418", + "desc": "Enforcing a minimum password lifetime helps to prevent repeated password changes to defeat the password reuse or history enforcement requirement. If users are allowed to immediately and continually change their password, the password could be repeatedly changed in a short period of time to defeat the organization's policy regarding password reuse.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:455", + "label": "check" + }, + { + "data": "Configure the operating system to enforce 24 hours/1 day as the minimum password lifetime.\n\nAdd the following line in \"/etc/login.defs\" (or modify the line to have the required value):\n\nPASS_MIN_DAYS 1", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204418\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204418\",\n \"cdf:title\": \"SRG-OS-000075-GPOS-00043\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204418r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204418r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-010230\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must be configured so that passwords for new users are restricted to a 24 hours/1 day minimum lifetime.\",\n \"cdf:description\": \"<VulnDiscussion>Enforcing a minimum password lifetime helps to prevent repeated password changes to defeat the password reuse or history enforcement requirement. If users are allowed to immediately and continually change their password, the password could be repeatedly changed in a short period of time to defeat the organization's policy regarding password reuse.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-27002-5\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86549\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-71925\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000198\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to enforce 24 hours/1 day as the minimum password lifetime.\\n\\nAdd the following line in \\\"/etc/login.defs\\\" (or modify the line to have the required value):\\n\\nPASS_MIN_DAYS 1\",\n \"fixref\": \"F-4542r88447_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4542r88447_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-export\": {\n \"value-id\": \"xccdf_mil.disa.stig_value_var_accounts_minimum_age_login_defs\",\n \"export-name\": \"oval:mil.disa.stig.rhel7:var:3794\"\n },\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:455\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:16:23" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000198" + ], + "nist": [ + "IA-5 (1) (d)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Enforcing a minimum password lifetime helps to prevent repeated password changes to defeat the password reuse or history enforcement requirement. If users are allowed to immediately and continually change their password, the password could be repeatedly changed in a short period of time to defeat the organization's policy regarding password reuse.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204419", + "group_title": "SRG-OS-000075-GPOS-00043", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204419r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:86551" + } + }, + "fix_id": "F-4543r88450_fix", + "fixtext_fixref": "F-4543r88450_fix", + "ident": [ + { + "text": "SV-86551", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71927", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000198", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204419r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:16:23", + "idref": "xccdf_mil.disa.stig_rule_SV-204418r603261_rule", + "version": "RHEL-07-010230", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-27002-5", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86549", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71925", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000198", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4542r88447_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-export": { + "value-id": "xccdf_mil.disa.stig_value_var_accounts_minimum_age_login_defs", + "export-name": "oval:mil.disa.stig.rhel7:var:3794" + }, + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:455" + } + } + }, + "value": { + "type": "number", + "Id": "xccdf_mil.disa.stig_value_var_accounts_minimum_age_login_defs", + "id": "xccdf_mil.disa.stig_value_var_accounts_minimum_age_login_defs", + "cdf:title": "minimum password age", + "cdf:description": "Minimum age of password in days", + "cdf:warning": "This will only apply to newly created accounts", + "cdf:value": [ + 1, + { + "text": 7, + "selector": "7" + }, + { + "text": 5, + "selector": "5" + }, + { + "text": 2, + "selector": "2" + }, + { + "text": 1, + "selector": "1" + }, + { + "text": 0, + "selector": "0" + } + ] + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that passwords are restricted to a 24 hours/1 day minimum lifetime.", + "id": "V-204419", + "desc": "Enforcing a minimum password lifetime helps to prevent repeated password changes to defeat the password reuse or history enforcement requirement. If users are allowed to immediately and continually change their password, the password could be repeatedly changed in a short period of time to defeat the organization's policy regarding password reuse.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:86551", + "label": "check" + }, + { + "data": "Configure non-compliant accounts to enforce a 24 hours/1 day minimum password lifetime:\n\n# chage -m 1 [user]", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204419\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204419\",\n \"cdf:title\": \"SRG-OS-000075-GPOS-00043\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204419r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204419r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-010240\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must be configured so that passwords are restricted to a 24 hours/1 day minimum lifetime.\",\n \"cdf:description\": \"<VulnDiscussion>Enforcing a minimum password lifetime helps to prevent repeated password changes to defeat the password reuse or history enforcement requirement. If users are allowed to immediately and continually change their password, the password could be repeatedly changed in a short period of time to defeat the organization's policy regarding password reuse.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"SV-86551\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-71927\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000198\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure non-compliant accounts to enforce a 24 hours/1 day minimum password lifetime:\\n\\n# chage -m 1 [user]\",\n \"fixref\": \"F-4543r88450_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4543r88450_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:86551\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:16:23" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000199" + ], + "nist": [ + "IA-5 (1) (d)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Any password, no matter how complex, can eventually be cracked. Therefore, passwords need to be changed periodically. If the operating system does not limit the lifetime of passwords and force users to change their passwords, there is the risk that the operating system passwords could be compromised.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204420", + "group_title": "SRG-OS-000076-GPOS-00044", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204420r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-export": { + "value-id": "xccdf_mil.disa.stig_value_var_accounts_maximum_age_login_defs", + "export-name": "oval:mil.disa.stig.rhel7:var:3793" + }, + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:453" + } + }, + "fix_id": "F-4544r88453_fix", + "fixtext_fixref": "F-4544r88453_fix", + "ident": [ + { + "text": "CCE-27051-2", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86553", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71929", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000199", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204420r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:16:23", + "idref": "xccdf_mil.disa.stig_rule_SV-204419r603261_rule", + "version": "RHEL-07-010240", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "SV-86551", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71927", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000198", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4543r88450_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:86551" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that passwords for new users are restricted to a 60-day maximum lifetime.", + "id": "V-204420", + "desc": "Any password, no matter how complex, can eventually be cracked. Therefore, passwords need to be changed periodically. If the operating system does not limit the lifetime of passwords and force users to change their passwords, there is the risk that the operating system passwords could be compromised.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:453", + "label": "check" + }, + { + "data": "Configure the operating system to enforce a 60-day maximum password lifetime restriction.\n\nAdd the following line in \"/etc/login.defs\" (or modify the line to have the required value):\n\nPASS_MAX_DAYS 60", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204420\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204420\",\n \"cdf:title\": \"SRG-OS-000076-GPOS-00044\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204420r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204420r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-010250\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must be configured so that passwords for new users are restricted to a 60-day maximum lifetime.\",\n \"cdf:description\": \"<VulnDiscussion>Any password, no matter how complex, can eventually be cracked. Therefore, passwords need to be changed periodically. If the operating system does not limit the lifetime of passwords and force users to change their passwords, there is the risk that the operating system passwords could be compromised.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-27051-2\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86553\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-71929\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000199\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to enforce a 60-day maximum password lifetime restriction.\\n\\nAdd the following line in \\\"/etc/login.defs\\\" (or modify the line to have the required value):\\n\\nPASS_MAX_DAYS 60\",\n \"fixref\": \"F-4544r88453_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4544r88453_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-export\": {\n \"value-id\": \"xccdf_mil.disa.stig_value_var_accounts_maximum_age_login_defs\",\n \"export-name\": \"oval:mil.disa.stig.rhel7:var:3793\"\n },\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:453\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:16:23" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000199" + ], + "nist": [ + "IA-5 (1) (d)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Any password, no matter how complex, can eventually be cracked. Therefore, passwords need to be changed periodically. If the operating system does not limit the lifetime of passwords and force users to change their passwords, there is the risk that the operating system passwords could be compromised.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204421", + "group_title": "SRG-OS-000076-GPOS-00044", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204421r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:86555" + } + }, + "fix_id": "F-4545r88456_fix", + "fixtext_fixref": "F-4545r88456_fix", + "ident": [ + { + "text": "V-71931", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86555", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000199", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204421r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:16:23", + "idref": "xccdf_mil.disa.stig_rule_SV-204420r603261_rule", + "version": "RHEL-07-010250", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-27051-2", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86553", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71929", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000199", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4544r88453_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-export": { + "value-id": "xccdf_mil.disa.stig_value_var_accounts_maximum_age_login_defs", + "export-name": "oval:mil.disa.stig.rhel7:var:3793" + }, + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:453" + } + } + }, + "value": { + "type": "number", + "Id": "xccdf_mil.disa.stig_value_var_accounts_maximum_age_login_defs", + "id": "xccdf_mil.disa.stig_value_var_accounts_maximum_age_login_defs", + "cdf:title": "maximum password age", + "cdf:description": "Maximum age of password in days", + "cdf:warning": "This will only apply to newly created accounts", + "cdf:value": [ + 60, + { + "text": 60, + "selector": "60" + }, + { + "text": 90, + "selector": "90" + }, + { + "text": 120, + "selector": "120" + }, + { + "text": 180, + "selector": "180" + } + ] + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that existing passwords are restricted to a 60-day maximum lifetime.", + "id": "V-204421", + "desc": "Any password, no matter how complex, can eventually be cracked. Therefore, passwords need to be changed periodically. If the operating system does not limit the lifetime of passwords and force users to change their passwords, there is the risk that the operating system passwords could be compromised.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:86555", + "label": "check" + }, + { + "data": "Configure non-compliant accounts to enforce a 60-day maximum password lifetime restriction.\n\n# chage -M 60 [user]", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204421\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204421\",\n \"cdf:title\": \"SRG-OS-000076-GPOS-00044\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204421r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204421r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-010260\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must be configured so that existing passwords are restricted to a 60-day maximum lifetime.\",\n \"cdf:description\": \"<VulnDiscussion>Any password, no matter how complex, can eventually be cracked. Therefore, passwords need to be changed periodically. If the operating system does not limit the lifetime of passwords and force users to change their passwords, there is the risk that the operating system passwords could be compromised.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"V-71931\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86555\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000199\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure non-compliant accounts to enforce a 60-day maximum password lifetime restriction.\\n\\n# chage -M 60 [user]\",\n \"fixref\": \"F-4545r88456_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4545r88456_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:86555\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:16:23" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000200" + ], + "nist": [ + "IA-5 (1) (e)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. If the information system or application allows the user to consecutively reuse their password when that password has exceeded its defined lifetime, the end result is a password that is not changed per policy requirements.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204422", + "group_title": "SRG-OS-000077-GPOS-00045", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204422r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-export": { + "value-id": "xccdf_mil.disa.stig_value_var_password_pam_unix_remember", + "export-name": "oval:mil.disa.stig.rhel7:var:3806" + }, + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:486" + } + }, + "fix_id": "F-4546r88459_fix", + "fixtext_fixref": "F-4546r88459_fix", + "ident": [ + { + "text": "CCE-26923-3", + "system": "http://cce.mitre.org" + }, + { + "text": "V-71933", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86557", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000200", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204422r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:16:23", + "idref": "xccdf_mil.disa.stig_rule_SV-204421r603261_rule", + "version": "RHEL-07-010260", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "V-71931", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86555", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000199", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4545r88456_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:86555" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that passwords are prohibited from reuse for a minimum of five generations.", + "id": "V-204422", + "desc": "Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. If the information system or application allows the user to consecutively reuse their password when that password has exceeded its defined lifetime, the end result is a password that is not changed per policy requirements.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:486", + "label": "check" + }, + { + "data": "Configure the operating system to prohibit password reuse for a minimum of five generations.\n\nAdd the following line in \"/etc/pam.d/system-auth\" and \"/etc/pam.d/password-auth\" (or modify the line to have the required value):\n\npassword requisite pam_pwhistory.so use_authtok remember=5 retry=3\n\nNote: Manual changes to the listed files may be overwritten by the \"authconfig\" program. The \"authconfig\" program should not be used to update the configurations listed in this requirement.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204422\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204422\",\n \"cdf:title\": \"SRG-OS-000077-GPOS-00045\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204422r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204422r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-010270\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must be configured so that passwords are prohibited from reuse for a minimum of five generations.\",\n \"cdf:description\": \"<VulnDiscussion>Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. If the information system or application allows the user to consecutively reuse their password when that password has exceeded its defined lifetime, the end result is a password that is not changed per policy requirements.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-26923-3\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-71933\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86557\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000200\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to prohibit password reuse for a minimum of five generations.\\n\\nAdd the following line in \\\"/etc/pam.d/system-auth\\\" and \\\"/etc/pam.d/password-auth\\\" (or modify the line to have the required value):\\n\\npassword requisite pam_pwhistory.so use_authtok remember=5 retry=3\\n\\nNote: Manual changes to the listed files may be overwritten by the \\\"authconfig\\\" program. The \\\"authconfig\\\" program should not be used to update the configurations listed in this requirement.\",\n \"fixref\": \"F-4546r88459_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4546r88459_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-export\": {\n \"value-id\": \"xccdf_mil.disa.stig_value_var_password_pam_unix_remember\",\n \"export-name\": \"oval:mil.disa.stig.rhel7:var:3806\"\n },\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:486\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:16:23" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000205" + ], + "nist": [ + "IA-5 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"The shorter the password, the lower the number of possible combinations that need to be tested before the password is compromised.\\n\\nPassword complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. Password length is one factor of several that helps to determine strength and how long it takes to crack a password. Use of more characters in a password helps to exponentially increase the time and/or resources required to compromise the password.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204423", + "group_title": "SRG-OS-000078-GPOS-00046", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204423r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-export": { + "value-id": "xccdf_mil.disa.stig_value_var_password_pam_minlen", + "export-name": "oval:mil.disa.stig.rhel7:var:3802" + }, + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:476" + } + }, + "fix_id": "F-4547r88462_fix", + "fixtext_fixref": "F-4547r88462_fix", + "ident": [ + { + "text": "CCE-27293-0", + "system": "http://cce.mitre.org" + }, + { + "text": "V-71935", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86559", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000205", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204423r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:16:23", + "idref": "xccdf_mil.disa.stig_rule_SV-204422r603261_rule", + "version": "RHEL-07-010270", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-26923-3", + "system": "http://cce.mitre.org" + }, + { + "text": "V-71933", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86557", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000200", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4546r88459_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-export": { + "value-id": "xccdf_mil.disa.stig_value_var_password_pam_unix_remember", + "export-name": "oval:mil.disa.stig.rhel7:var:3806" + }, + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:486" + } + } + }, + "value": { + "type": "number", + "Id": "xccdf_mil.disa.stig_value_var_password_pam_unix_remember", + "id": "xccdf_mil.disa.stig_value_var_password_pam_unix_remember", + "cdf:title": "remember", + "cdf:description": "The last n passwords for each user are saved in /etc/security/opasswd in order to force password change history and keep the user from alternating between the same password too frequently.", + "cdf:value": [ + 5, + { + "text": 0, + "selector": "0" + }, + { + "text": 4, + "selector": "4" + }, + { + "text": 5, + "selector": "5" + }, + { + "text": 10, + "selector": "10" + }, + { + "text": 24, + "selector": "24" + } + ] + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that passwords are a minimum of 15 characters in length.", + "id": "V-204423", + "desc": "The shorter the password, the lower the number of possible combinations that need to be tested before the password is compromised.\n\nPassword complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. Password length is one factor of several that helps to determine strength and how long it takes to crack a password. Use of more characters in a password helps to exponentially increase the time and/or resources required to compromise the password.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:476", + "label": "check" + }, + { + "data": "Configure operating system to enforce a minimum 15-character password length.\n\nAdd the following line to \"/etc/security/pwquality.conf\" (or modify the line to have the required value):\n\nminlen = 15", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204423\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204423\",\n \"cdf:title\": \"SRG-OS-000078-GPOS-00046\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204423r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204423r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-010280\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must be configured so that passwords are a minimum of 15 characters in length.\",\n \"cdf:description\": \"<VulnDiscussion>The shorter the password, the lower the number of possible combinations that need to be tested before the password is compromised.\\n\\nPassword complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. Password length is one factor of several that helps to determine strength and how long it takes to crack a password. Use of more characters in a password helps to exponentially increase the time and/or resources required to compromise the password.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-27293-0\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-71935\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86559\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000205\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure operating system to enforce a minimum 15-character password length.\\n\\nAdd the following line to \\\"/etc/security/pwquality.conf\\\" (or modify the line to have the required value):\\n\\nminlen = 15\",\n \"fixref\": \"F-4547r88462_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4547r88462_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-export\": {\n \"value-id\": \"xccdf_mil.disa.stig_value_var_password_pam_minlen\",\n \"export-name\": \"oval:mil.disa.stig.rhel7:var:3802\"\n },\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:476\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:16:23" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "high", + "description": "{\"VulnDiscussion\":\"If an account has an empty password, anyone could log on and run commands with the privileges of that account. Accounts with empty passwords should never be used in operational environments.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204424", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204424r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:1229" + } + }, + "fix_id": "F-4548r88465_fix", + "fixtext_fixref": "F-4548r88465_fix", + "ident": [ + { + "text": "CCE-27286-4", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86561", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71937", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204424r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:16:23", + "idref": "xccdf_mil.disa.stig_rule_SV-204423r603261_rule", + "version": "RHEL-07-010280", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-27293-0", + "system": "http://cce.mitre.org" + }, + { + "text": "V-71935", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86559", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000205", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4547r88462_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-export": { + "value-id": "xccdf_mil.disa.stig_value_var_password_pam_minlen", + "export-name": "oval:mil.disa.stig.rhel7:var:3802" + }, + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:476" + } + } + }, + "value": { + "type": "number", + "Id": "xccdf_mil.disa.stig_value_var_password_pam_minlen", + "id": "xccdf_mil.disa.stig_value_var_password_pam_minlen", + "cdf:title": "minlen", + "cdf:description": "Minimum number of characters in password", + "cdf:value": [ + 15, + { + "text": 6, + "selector": "6" + }, + { + "text": 7, + "selector": "7" + }, + { + "text": 8, + "selector": "8" + }, + { + "text": 10, + "selector": "10" + }, + { + "text": 12, + "selector": "12" + }, + { + "text": 14, + "selector": "14" + }, + { + "text": 15, + "selector": "15" + } + ] + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must not have accounts configured with blank or null passwords.", + "id": "V-204424", + "desc": "If an account has an empty password, anyone could log on and run commands with the privileges of that account. Accounts with empty passwords should never be used in operational environments.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:1229", + "label": "check" + }, + { + "data": "If an account is configured for password authentication but does not have an assigned password, it may be possible to log on to the account without authenticating.\n\nRemove any instances of the \"nullok\" option in \"/etc/pam.d/system-auth\" and \"/etc/pam.d/password-auth\" to prevent logons with empty passwords.\n\nNote: Manual changes to the listed files may be overwritten by the \"authconfig\" program. The \"authconfig\" program should not be used to update the configurations listed in this requirement.", + "label": "fix" + } + ], + "impact": 0.7, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204424\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204424\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204424r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204424r603261_rule\",\n \"severity\": \"high\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-010290\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must not have accounts configured with blank or null passwords.\",\n \"cdf:description\": \"<VulnDiscussion>If an account has an empty password, anyone could log on and run commands with the privileges of that account. Accounts with empty passwords should never be used in operational environments.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-27286-4\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86561\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-71937\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"If an account is configured for password authentication but does not have an assigned password, it may be possible to log on to the account without authenticating.\\n\\nRemove any instances of the \\\"nullok\\\" option in \\\"/etc/pam.d/system-auth\\\" and \\\"/etc/pam.d/password-auth\\\" to prevent logons with empty passwords.\\n\\nNote: Manual changes to the listed files may be overwritten by the \\\"authconfig\\\" program. The \\\"authconfig\\\" program should not be used to update the configurations listed in this requirement.\",\n \"fixref\": \"F-4548r88465_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4548r88465_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:1229\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:16:23" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000766" + ], + "nist": [ + "IA-2 (2)" + ], + "severity": "high", + "description": "{\"VulnDiscussion\":\"Configuring this setting for the SSH daemon provides additional assurance that remote logon via SSH will require a password, even in the event of misconfiguration elsewhere.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204425", + "group_title": "SRG-OS-000106-GPOS-00053", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204425r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:1375" + } + }, + "fix_id": "F-4549r88468_fix", + "fixtext_fixref": "F-4549r88468_fix", + "ident": [ + { + "text": "CCE-27471-2", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86563", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71939", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000766", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204425r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:16:23", + "idref": "xccdf_mil.disa.stig_rule_SV-204424r603261_rule", + "version": "RHEL-07-010290", + "severity": "high", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-27286-4", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86561", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71937", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4548r88465_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:1229" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that the SSH daemon does not allow authentication using an empty password.", + "id": "V-204425", + "desc": "Configuring this setting for the SSH daemon provides additional assurance that remote logon via SSH will require a password, even in the event of misconfiguration elsewhere.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:1375", + "label": "check" + }, + { + "data": "To explicitly disallow remote logon from accounts with empty passwords, add or correct the following line in \"/etc/ssh/sshd_config\":\n\nPermitEmptyPasswords no\n\nThe SSH service must be restarted for changes to take effect. Any accounts with empty passwords should be disabled immediately, and PAM configuration should prevent users from being able to assign themselves empty passwords.", + "label": "fix" + } + ], + "impact": 0.7, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204425\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204425\",\n \"cdf:title\": \"SRG-OS-000106-GPOS-00053\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204425r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204425r603261_rule\",\n \"severity\": \"high\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-010300\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must be configured so that the SSH daemon does not allow authentication using an empty password.\",\n \"cdf:description\": \"<VulnDiscussion>Configuring this setting for the SSH daemon provides additional assurance that remote logon via SSH will require a password, even in the event of misconfiguration elsewhere.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-27471-2\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86563\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-71939\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000766\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"To explicitly disallow remote logon from accounts with empty passwords, add or correct the following line in \\\"/etc/ssh/sshd_config\\\":\\n\\nPermitEmptyPasswords no\\n\\nThe SSH service must be restarted for changes to take effect. Any accounts with empty passwords should be disabled immediately, and PAM configuration should prevent users from being able to assign themselves empty passwords.\",\n \"fixref\": \"F-4549r88468_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4549r88468_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:1375\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:16:23" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000795" + ], + "nist": [ + "IA-4 e" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Inactive identifiers pose a risk to systems and applications because attackers may exploit an inactive identifier and potentially obtain undetected access to the system. Owners of inactive accounts will not notice if unauthorized access to their user account has been obtained.\\n\\nOperating systems need to track periods of inactivity and disable application identifiers after zero days of inactivity.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204426", + "group_title": "SRG-OS-000118-GPOS-00060", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204426r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-export": { + "value-id": "xccdf_mil.disa.stig_value_var_account_disable_post_pw_expiration", + "export-name": "oval:mil.disa.stig.rhel7:var:3790" + }, + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:443" + } + }, + "fix_id": "F-4550r88471_fix", + "fixtext_fixref": "F-4550r88471_fix", + "ident": [ + { + "text": "CCE-27471-2", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86565", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71941", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000795", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204426r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:16:23", + "idref": "xccdf_mil.disa.stig_rule_SV-204425r603261_rule", + "version": "RHEL-07-010300", + "severity": "high", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-27471-2", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86563", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71939", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000766", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4549r88468_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:1375" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must disable account identifiers (individuals, groups, roles, and devices) if the password expires.", + "id": "V-204426", + "desc": "Inactive identifiers pose a risk to systems and applications because attackers may exploit an inactive identifier and potentially obtain undetected access to the system. Owners of inactive accounts will not notice if unauthorized access to their user account has been obtained.\n\nOperating systems need to track periods of inactivity and disable application identifiers after zero days of inactivity.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:443", + "label": "check" + }, + { + "data": "Configure the operating system to disable account identifiers (individuals, groups, roles, and devices) after the password expires.\n\nAdd the following line to \"/etc/default/useradd\" (or modify the line to have the required value):\n\nINACTIVE=0", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204426\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204426\",\n \"cdf:title\": \"SRG-OS-000118-GPOS-00060\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204426r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204426r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-010310\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must disable account identifiers (individuals, groups, roles, and devices) if the password expires.\",\n \"cdf:description\": \"<VulnDiscussion>Inactive identifiers pose a risk to systems and applications because attackers may exploit an inactive identifier and potentially obtain undetected access to the system. Owners of inactive accounts will not notice if unauthorized access to their user account has been obtained.\\n\\nOperating systems need to track periods of inactivity and disable application identifiers after zero days of inactivity.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-27471-2\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86565\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-71941\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000795\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to disable account identifiers (individuals, groups, roles, and devices) after the password expires.\\n\\nAdd the following line to \\\"/etc/default/useradd\\\" (or modify the line to have the required value):\\n\\nINACTIVE=0\",\n \"fixref\": \"F-4550r88471_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4550r88471_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-export\": {\n \"value-id\": \"xccdf_mil.disa.stig_value_var_account_disable_post_pw_expiration\",\n \"export-name\": \"oval:mil.disa.stig.rhel7:var:3790\"\n },\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:443\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:16:25" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-002038" + ], + "nist": [ + "IA-11" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without re-authentication, users may access resources or perform tasks for which they do not have authorization.\\n\\nWhen operating systems provide the capability to escalate a functional capability, it is critical the user re-authenticate.\\n\\nSatisfies: SRG-OS-000373-GPOS-00156, SRG-OS-000373-GPOS-00157, SRG-OS-000373-GPOS-00158\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204429", + "group_title": "SRG-OS-000373-GPOS-00156", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204429r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:176" + } + }, + "fix_id": "F-36303r602619_fix", + "fixtext_fixref": "F-36303r602619_fix", + "ident": [ + { + "text": "CCE-80351-0", + "system": "http://cce.mitre.org" + }, + { + "text": "V-71947", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86571", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-002038", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204429r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:16:25", + "idref": "xccdf_mil.disa.stig_rule_SV-204426r603261_rule", + "version": "RHEL-07-010310", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-27471-2", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86565", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71941", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000795", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4550r88471_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-export": { + "value-id": "xccdf_mil.disa.stig_value_var_account_disable_post_pw_expiration", + "export-name": "oval:mil.disa.stig.rhel7:var:3790" + }, + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:443" + } + } + }, + "value": { + "type": "number", + "Id": "xccdf_mil.disa.stig_value_var_account_disable_post_pw_expiration", + "id": "xccdf_mil.disa.stig_value_var_account_disable_post_pw_expiration", + "cdf:title": "number of days after a password expires until the account is permanently disabled", + "cdf:description": "The number of days to wait after a password expires, until the account will be permanently disabled.", + "cdf:warning": "This will only apply to newly created accounts", + "cdf:value": [ + 0, + { + "text": 0, + "selector": "0" + }, + { + "text": 30, + "selector": "30" + }, + { + "text": 35, + "selector": "35" + }, + { + "text": 40, + "selector": "40" + }, + { + "text": 60, + "selector": "60" + }, + { + "text": 90, + "selector": "90" + }, + { + "text": 180, + "selector": "180" + } + ] + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that users must provide a password for privilege escalation.", + "id": "V-204429", + "desc": "Without re-authentication, users may access resources or perform tasks for which they do not have authorization.\n\nWhen operating systems provide the capability to escalate a functional capability, it is critical the user re-authenticate.\n\nSatisfies: SRG-OS-000373-GPOS-00156, SRG-OS-000373-GPOS-00157, SRG-OS-000373-GPOS-00158", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:176", + "label": "check" + }, + { + "data": "Configure the operating system to require users to supply a password for privilege escalation.\n\nCheck the configuration of the \"/etc/sudoers\" file with the following command:\n# visudo\n\nRemove any occurrences of \"NOPASSWD\" tags in the file.\n\nCheck the configuration of the /etc/sudoers.d/* files with the following command:\n# grep -i nopasswd /etc/sudoers.d/*\n\nRemove any occurrences of \"NOPASSWD\" tags in the file.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204429\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204429\",\n \"cdf:title\": \"SRG-OS-000373-GPOS-00156\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204429r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204429r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-010340\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must be configured so that users must provide a password for privilege escalation.\",\n \"cdf:description\": \"<VulnDiscussion>Without re-authentication, users may access resources or perform tasks for which they do not have authorization.\\n\\nWhen operating systems provide the capability to escalate a functional capability, it is critical the user re-authenticate.\\n\\nSatisfies: SRG-OS-000373-GPOS-00156, SRG-OS-000373-GPOS-00157, SRG-OS-000373-GPOS-00158</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80351-0\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-71947\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86571\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-002038\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to require users to supply a password for privilege escalation.\\n\\nCheck the configuration of the \\\"/etc/sudoers\\\" file with the following command:\\n# visudo\\n\\nRemove any occurrences of \\\"NOPASSWD\\\" tags in the file.\\n\\nCheck the configuration of the /etc/sudoers.d/* files with the following command:\\n# grep -i nopasswd /etc/sudoers.d/*\\n\\nRemove any occurrences of \\\"NOPASSWD\\\" tags in the file.\",\n \"fixref\": \"F-36303r602619_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-36303r602619_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:176\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:16:25" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-002038" + ], + "nist": [ + "IA-11" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without re-authentication, users may access resources or perform tasks for which they do not have authorization.\\n\\nWhen operating systems provide the capability to escalate a functional capability, it is critical the user reauthenticate.\\n\\nSatisfies: SRG-OS-000373-GPOS-00156, SRG-OS-000373-GPOS-00157, SRG-OS-000373-GPOS-00158\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204430", + "group_title": "SRG-OS-000373-GPOS-00156", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204430r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:173" + } + }, + "fix_id": "F-4554r88483_fix", + "fixtext_fixref": "F-4554r88483_fix", + "ident": [ + { + "text": "CCE-80350-2", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86573", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71949", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-002038", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204430r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:16:25", + "idref": "xccdf_mil.disa.stig_rule_SV-204429r603261_rule", + "version": "RHEL-07-010340", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-80351-0", + "system": "http://cce.mitre.org" + }, + { + "text": "V-71947", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86571", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-002038", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-36303r602619_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:176" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that users must re-authenticate for privilege escalation.", + "id": "V-204430", + "desc": "Without re-authentication, users may access resources or perform tasks for which they do not have authorization.\n\nWhen operating systems provide the capability to escalate a functional capability, it is critical the user reauthenticate.\n\nSatisfies: SRG-OS-000373-GPOS-00156, SRG-OS-000373-GPOS-00157, SRG-OS-000373-GPOS-00158", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:173", + "label": "check" + }, + { + "data": "Configure the operating system to require users to reauthenticate for privilege escalation.\n\nCheck the configuration of the \"/etc/sudoers\" file with the following command:\n\n# visudo\nRemove any occurrences of \"!authenticate\" tags in the file.\n\nCheck the configuration of the \"/etc/sudoers.d/*\" files with the following command:\n\n# grep -i authenticate /etc/sudoers /etc/sudoers.d/*\nRemove any occurrences of \"!authenticate\" tags in the file(s).", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204430\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204430\",\n \"cdf:title\": \"SRG-OS-000373-GPOS-00156\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204430r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204430r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-010350\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must be configured so that users must re-authenticate for privilege escalation.\",\n \"cdf:description\": \"<VulnDiscussion>Without re-authentication, users may access resources or perform tasks for which they do not have authorization.\\n\\nWhen operating systems provide the capability to escalate a functional capability, it is critical the user reauthenticate.\\n\\nSatisfies: SRG-OS-000373-GPOS-00156, SRG-OS-000373-GPOS-00157, SRG-OS-000373-GPOS-00158</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80350-2\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86573\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-71949\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-002038\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to require users to reauthenticate for privilege escalation.\\n\\nCheck the configuration of the \\\"/etc/sudoers\\\" file with the following command:\\n\\n# visudo\\nRemove any occurrences of \\\"!authenticate\\\" tags in the file.\\n\\nCheck the configuration of the \\\"/etc/sudoers.d/*\\\" files with the following command:\\n\\n# grep -i authenticate /etc/sudoers /etc/sudoers.d/*\\nRemove any occurrences of \\\"!authenticate\\\" tags in the file(s).\",\n \"fixref\": \"F-4554r88483_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4554r88483_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:173\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:16:25" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Configuring the operating system to implement organization-wide security implementation guides and security checklists verifies compliance with federal standards and establishes a common security baseline across DoD that reflects the most restrictive security posture consistent with operational requirements.\\n\\nConfiguration settings are the set of parameters that can be changed in hardware, software, or firmware components of the system that affect the security posture and/or functionality of the system. Security-related parameters are those parameters impacting the security state of the system, including the parameters required to satisfy other security control requirements. Security-related parameters include, for example, registry settings; account, file, and directory permission settings; and settings for functions, ports, protocols, services, and remote connections.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204431", + "group_title": "SRG-OS-000480-GPOS-00226", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204431r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-export": { + "value-id": "xccdf_mil.disa.stig_value_var_accounts_fail_delay", + "export-name": "oval:mil.disa.stig.rhel7:var:3761" + }, + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:101" + } + }, + "fix_id": "F-4555r88486_fix", + "fixtext_fixref": "F-4555r88486_fix", + "ident": [ + { + "text": "CCE-80352-8", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86575", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71951", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204431r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:16:25", + "idref": "xccdf_mil.disa.stig_rule_SV-204430r603261_rule", + "version": "RHEL-07-010350", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-80350-2", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86573", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71949", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-002038", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4554r88483_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:173" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that the delay between logon prompts following a failed console logon attempt is at least four seconds.", + "id": "V-204431", + "desc": "Configuring the operating system to implement organization-wide security implementation guides and security checklists verifies compliance with federal standards and establishes a common security baseline across DoD that reflects the most restrictive security posture consistent with operational requirements.\n\nConfiguration settings are the set of parameters that can be changed in hardware, software, or firmware components of the system that affect the security posture and/or functionality of the system. Security-related parameters are those parameters impacting the security state of the system, including the parameters required to satisfy other security control requirements. Security-related parameters include, for example, registry settings; account, file, and directory permission settings; and settings for functions, ports, protocols, services, and remote connections.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:101", + "label": "check" + }, + { + "data": "Configure the operating system to enforce a delay of at least four seconds between logon prompts following a failed console logon attempt.\n\nModify the \"/etc/login.defs\" file to set the \"FAIL_DELAY\" parameter to \"4\" or greater:\n\nFAIL_DELAY 4", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204431\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204431\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00226\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204431r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204431r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-010430\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must be configured so that the delay between logon prompts following a failed console logon attempt is at least four seconds.\",\n \"cdf:description\": \"<VulnDiscussion>Configuring the operating system to implement organization-wide security implementation guides and security checklists verifies compliance with federal standards and establishes a common security baseline across DoD that reflects the most restrictive security posture consistent with operational requirements.\\n\\nConfiguration settings are the set of parameters that can be changed in hardware, software, or firmware components of the system that affect the security posture and/or functionality of the system. Security-related parameters are those parameters impacting the security state of the system, including the parameters required to satisfy other security control requirements. Security-related parameters include, for example, registry settings; account, file, and directory permission settings; and settings for functions, ports, protocols, services, and remote connections.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80352-8\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86575\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-71951\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to enforce a delay of at least four seconds between logon prompts following a failed console logon attempt.\\n\\nModify the \\\"/etc/login.defs\\\" file to set the \\\"FAIL_DELAY\\\" parameter to \\\"4\\\" or greater:\\n\\nFAIL_DELAY 4\",\n \"fixref\": \"F-4555r88486_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4555r88486_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-export\": {\n \"value-id\": \"xccdf_mil.disa.stig_value_var_accounts_fail_delay\",\n \"export-name\": \"oval:mil.disa.stig.rhel7:var:3761\"\n },\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:101\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:16:25" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "high", + "description": "{\"VulnDiscussion\":\"Failure to restrict system access to authenticated users negatively impacts operating system security.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204432", + "group_title": "SRG-OS-000480-GPOS-00229", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204432r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:1119" + } + }, + "fix_id": "F-4556r88489_fix", + "fixtext_fixref": "F-4556r88489_fix", + "ident": [ + { + "text": "CCE-80104-3", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86577", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71953", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204432r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:16:25", + "idref": "xccdf_mil.disa.stig_rule_SV-204431r603261_rule", + "version": "RHEL-07-010430", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-80352-8", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86575", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71951", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4555r88486_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-export": { + "value-id": "xccdf_mil.disa.stig_value_var_accounts_fail_delay", + "export-name": "oval:mil.disa.stig.rhel7:var:3761" + }, + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:101" + } + } + }, + "value": { + "type": "number", + "Id": "xccdf_mil.disa.stig_value_var_accounts_fail_delay", + "id": "xccdf_mil.disa.stig_value_var_accounts_fail_delay", + "cdf:title": "Maximum login attempts delay", + "cdf:description": "Maximum time in seconds between fail login attempts before re-prompting.", + "cdf:value": [ + 4, + { + "text": 1, + "selector": "1" + }, + { + "text": 2, + "selector": "2" + }, + { + "text": 3, + "selector": "3" + }, + { + "text": 4, + "selector": "4" + }, + { + "text": 5, + "selector": "5" + } + ] + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must not allow an unattended or automatic logon to the system via a graphical user interface.", + "id": "V-204432", + "desc": "Failure to restrict system access to authenticated users negatively impacts operating system security.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:1119", + "label": "check" + }, + { + "data": "Configure the operating system to not allow an unattended or automatic logon to the system via a graphical user interface.\n\nNote: If the system does not have GNOME installed, this requirement is Not Applicable.\n\nAdd or edit the line for the \"AutomaticLoginEnable\" parameter in the [daemon] section of the \"/etc/gdm/custom.conf\" file to \"false\":\n\n[daemon]\nAutomaticLoginEnable=false", + "label": "fix" + } + ], + "impact": 0.7, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204432\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204432\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00229\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204432r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204432r603261_rule\",\n \"severity\": \"high\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-010440\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must not allow an unattended or automatic logon to the system via a graphical user interface.\",\n \"cdf:description\": \"<VulnDiscussion>Failure to restrict system access to authenticated users negatively impacts operating system security.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80104-3\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86577\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-71953\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to not allow an unattended or automatic logon to the system via a graphical user interface.\\n\\nNote: If the system does not have GNOME installed, this requirement is Not Applicable.\\n\\nAdd or edit the line for the \\\"AutomaticLoginEnable\\\" parameter in the [daemon] section of the \\\"/etc/gdm/custom.conf\\\" file to \\\"false\\\":\\n\\n[daemon]\\nAutomaticLoginEnable=false\",\n \"fixref\": \"F-4556r88489_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4556r88489_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:1119\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:16:25" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "high", + "description": "{\"VulnDiscussion\":\"Failure to restrict system access to authenticated users negatively impacts operating system security.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204433", + "group_title": "SRG-OS-000480-GPOS-00229", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204433r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:1122" + } + }, + "fix_id": "F-4557r88492_fix", + "fixtext_fixref": "F-4557r88492_fix", + "ident": [ + { + "text": "CCE-80105-0", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86579", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71955", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204433r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:16:25", + "idref": "xccdf_mil.disa.stig_rule_SV-204432r603261_rule", + "version": "RHEL-07-010440", + "severity": "high", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-80104-3", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86577", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71953", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4556r88489_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:1119" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must not allow an unrestricted logon to the system.", + "id": "V-204433", + "desc": "Failure to restrict system access to authenticated users negatively impacts operating system security.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:1122", + "label": "check" + }, + { + "data": "Configure the operating system to not allow an unrestricted account to log on to the system via a graphical user interface.\n\nNote: If the system does not have GNOME installed, this requirement is Not Applicable.\n\nAdd or edit the line for the \"TimedLoginEnable\" parameter in the [daemon] section of the \"/etc/gdm/custom.conf\" file to \"false\":\n\n[daemon]\nTimedLoginEnable=false", + "label": "fix" + } + ], + "impact": 0.7, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204433\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204433\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00229\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204433r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204433r603261_rule\",\n \"severity\": \"high\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-010450\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must not allow an unrestricted logon to the system.\",\n \"cdf:description\": \"<VulnDiscussion>Failure to restrict system access to authenticated users negatively impacts operating system security.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80105-0\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86579\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-71955\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to not allow an unrestricted account to log on to the system via a graphical user interface.\\n\\nNote: If the system does not have GNOME installed, this requirement is Not Applicable.\\n\\nAdd or edit the line for the \\\"TimedLoginEnable\\\" parameter in the [daemon] section of the \\\"/etc/gdm/custom.conf\\\" file to \\\"false\\\":\\n\\n[daemon]\\nTimedLoginEnable=false\",\n \"fixref\": \"F-4557r88492_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4557r88492_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:1122\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:16:26" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Failure to restrict system access to authenticated users negatively impacts operating system security.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204434", + "group_title": "SRG-OS-000480-GPOS-00229", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204434r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:1385" + } + }, + "fix_id": "F-4558r88495_fix", + "fixtext_fixref": "F-4558r88495_fix", + "ident": [ + { + "text": "CCE-27363-1", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86581", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71957", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204434r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:16:26", + "idref": "xccdf_mil.disa.stig_rule_SV-204433r603261_rule", + "version": "RHEL-07-010450", + "severity": "high", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-80105-0", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86579", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71955", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4557r88492_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:1122" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must not allow users to override SSH environment variables.", + "id": "V-204434", + "desc": "Failure to restrict system access to authenticated users negatively impacts operating system security.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:1385", + "label": "check" + }, + { + "data": "Configure the operating system to not allow users to override environment variables to the SSH daemon.\n\nEdit the \"/etc/ssh/sshd_config\" file to uncomment or add the line for \"PermitUserEnvironment\" keyword and set the value to \"no\":\n\nPermitUserEnvironment no\n\nThe SSH service must be restarted for changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204434\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204434\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00229\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204434r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204434r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-010460\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must not allow users to override SSH environment variables.\",\n \"cdf:description\": \"<VulnDiscussion>Failure to restrict system access to authenticated users negatively impacts operating system security.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-27363-1\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86581\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-71957\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to not allow users to override environment variables to the SSH daemon.\\n\\nEdit the \\\"/etc/ssh/sshd_config\\\" file to uncomment or add the line for \\\"PermitUserEnvironment\\\" keyword and set the value to \\\"no\\\":\\n\\nPermitUserEnvironment no\\n\\nThe SSH service must be restarted for changes to take effect.\",\n \"fixref\": \"F-4558r88495_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4558r88495_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:1385\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:16:26" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Failure to restrict system access to authenticated users negatively impacts operating system security.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204435", + "group_title": "SRG-OS-000480-GPOS-00229", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204435r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:1011" + } + }, + "fix_id": "F-4559r88498_fix", + "fixtext_fixref": "F-4559r88498_fix", + "ident": [ + { + "text": "CCE-27413-4", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86583", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71959", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204435r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:16:26", + "idref": "xccdf_mil.disa.stig_rule_SV-204434r603261_rule", + "version": "RHEL-07-010460", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-27363-1", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86581", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71957", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4558r88495_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:1385" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must not allow a non-certificate trusted host SSH logon to the system.", + "id": "V-204435", + "desc": "Failure to restrict system access to authenticated users negatively impacts operating system security.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:1011", + "label": "check" + }, + { + "data": "Configure the operating system to not allow a non-certificate trusted host SSH logon to the system.\n\nEdit the \"/etc/ssh/sshd_config\" file to uncomment or add the line for \"HostbasedAuthentication\" keyword and set the value to \"no\":\n\nHostbasedAuthentication no\n\nThe SSH service must be restarted for changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204435\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204435\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00229\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204435r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204435r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-010470\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must not allow a non-certificate trusted host SSH logon to the system.\",\n \"cdf:description\": \"<VulnDiscussion>Failure to restrict system access to authenticated users negatively impacts operating system security.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-27413-4\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86583\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-71959\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to not allow a non-certificate trusted host SSH logon to the system.\\n\\nEdit the \\\"/etc/ssh/sshd_config\\\" file to uncomment or add the line for \\\"HostbasedAuthentication\\\" keyword and set the value to \\\"no\\\":\\n\\nHostbasedAuthentication no\\n\\nThe SSH service must be restarted for changes to take effect.\",\n \"fixref\": \"F-4559r88498_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4559r88498_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:1011\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:16:26" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000213" + ], + "nist": [ + "AC-3" + ], + "severity": "high", + "description": "{\"VulnDiscussion\":\"If the system does not require valid root authentication before it boots into single-user or maintenance mode, anyone who invokes single-user or maintenance mode is granted privileged access to all files on the system. GRUB 2 is the default boot loader for RHEL 7 and is designed to require a password to boot into single-user mode or make modifications to the boot menu.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204436", + "group_title": "SRG-OS-000080-GPOS-00048", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204436r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:908" + } + }, + "fix_id": "F-4560r88501_fix", + "fixtext_fixref": "F-4560r88501_fix", + "ident": [ + { + "text": "CCE-27309-4", + "system": "http://cce.mitre.org" + }, + { + "text": "V-71961", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86585", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000213", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204436r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:16:26", + "idref": "xccdf_mil.disa.stig_rule_SV-204435r603261_rule", + "version": "RHEL-07-010470", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-27413-4", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86583", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71959", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4559r88498_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:1011" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Red Hat Enterprise Linux operating systems prior to version 7.2 with a Basic Input/Output System (BIOS) must require authentication upon booting into single-user and maintenance modes.", + "id": "V-204436", + "desc": "If the system does not require valid root authentication before it boots into single-user or maintenance mode, anyone who invokes single-user or maintenance mode is granted privileged access to all files on the system. GRUB 2 is the default boot loader for RHEL 7 and is designed to require a password to boot into single-user mode or make modifications to the boot menu.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:908", + "label": "check" + }, + { + "data": "Configure the system to encrypt the boot password for root.\n\nGenerate an encrypted grub2 password for root with the following command:\n\nNote: The hash generated is an example.\n\n# grub2-mkpasswd-pbkdf2\n\nEnter Password:\nReenter Password:\nPBKDF2 hash of your password is grub.pbkdf2.sha512.10000.F3A7CFAA5A51EED123BE8238C23B25B2A6909AFC9812F0D45\n\nEdit \"/etc/grub.d/40_custom\" and add the following lines below the comments:\n\n# vi /etc/grub.d/40_custom\n\nset superusers=\"root\"\n\npassword_pbkdf2 root {hash from grub2-mkpasswd-pbkdf2 command}\n\nGenerate a new \"grub.conf\" file with the new password with the following commands:\n\n# grub2-mkconfig --output=/tmp/grub2.cfg\n# mv /tmp/grub2.cfg /boot/grub2/grub.cfg", + "label": "fix" + } + ], + "impact": 0.7, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204436\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204436\",\n \"cdf:title\": \"SRG-OS-000080-GPOS-00048\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204436r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204436r603261_rule\",\n \"severity\": \"high\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-010480\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"Red Hat Enterprise Linux operating systems prior to version 7.2 with a Basic Input/Output System (BIOS) must require authentication upon booting into single-user and maintenance modes.\",\n \"cdf:description\": \"<VulnDiscussion>If the system does not require valid root authentication before it boots into single-user or maintenance mode, anyone who invokes single-user or maintenance mode is granted privileged access to all files on the system. GRUB 2 is the default boot loader for RHEL 7 and is designed to require a password to boot into single-user mode or make modifications to the boot menu.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-27309-4\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-71961\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86585\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000213\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the system to encrypt the boot password for root.\\n\\nGenerate an encrypted grub2 password for root with the following command:\\n\\nNote: The hash generated is an example.\\n\\n# grub2-mkpasswd-pbkdf2\\n\\nEnter Password:\\nReenter Password:\\nPBKDF2 hash of your password is grub.pbkdf2.sha512.10000.F3A7CFAA5A51EED123BE8238C23B25B2A6909AFC9812F0D45\\n\\nEdit \\\"/etc/grub.d/40_custom\\\" and add the following lines below the comments:\\n\\n# vi /etc/grub.d/40_custom\\n\\nset superusers=\\\"root\\\"\\n\\npassword_pbkdf2 root {hash from grub2-mkpasswd-pbkdf2 command}\\n\\nGenerate a new \\\"grub.conf\\\" file with the new password with the following commands:\\n\\n# grub2-mkconfig --output=/tmp/grub2.cfg\\n# mv /tmp/grub2.cfg /boot/grub2/grub.cfg\",\n \"fixref\": \"F-4560r88501_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4560r88501_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:908\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:16:26" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000213" + ], + "nist": [ + "AC-3" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"If the system does not require valid root authentication before it boots into single-user or maintenance mode, anyone who invokes single-user or maintenance mode is granted privileged access to all files on the system.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204437", + "group_title": "SRG-OS-000080-GPOS-00048", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204437r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:92519" + } + }, + "fix_id": "F-4561r88504_fix", + "fixtext_fixref": "F-4561r88504_fix", + "ident": [ + { + "text": "V-77823", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-92519", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000213", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204437r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:16:26", + "idref": "xccdf_mil.disa.stig_rule_SV-204436r603261_rule", + "version": "RHEL-07-010480", + "severity": "high", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-27309-4", + "system": "http://cce.mitre.org" + }, + { + "text": "V-71961", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86585", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000213", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4560r88501_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:908" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must require authentication upon booting into single-user and maintenance modes.", + "id": "V-204437", + "desc": "If the system does not require valid root authentication before it boots into single-user or maintenance mode, anyone who invokes single-user or maintenance mode is granted privileged access to all files on the system.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:92519", + "label": "check" + }, + { + "data": "Configure the operating system to require authentication upon booting into single-user and maintenance modes.\n\nAdd or modify the \"ExecStart\" line in \"/usr/lib/systemd/system/rescue.service\" to include \"/usr/sbin/sulogin\":\n\nExecStart=-/bin/sh -c \"/usr/sbin/sulogin; /usr/bin/systemctl --fail --no-block default\"", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204437\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204437\",\n \"cdf:title\": \"SRG-OS-000080-GPOS-00048\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204437r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204437r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-010481\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must require authentication upon booting into single-user and maintenance modes.\",\n \"cdf:description\": \"<VulnDiscussion>If the system does not require valid root authentication before it boots into single-user or maintenance mode, anyone who invokes single-user or maintenance mode is granted privileged access to all files on the system.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"V-77823\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-92519\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000213\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to require authentication upon booting into single-user and maintenance modes.\\n\\nAdd or modify the \\\"ExecStart\\\" line in \\\"/usr/lib/systemd/system/rescue.service\\\" to include \\\"/usr/sbin/sulogin\\\":\\n\\nExecStart=-/bin/sh -c \\\"/usr/sbin/sulogin; /usr/bin/systemctl --fail --no-block default\\\"\",\n \"fixref\": \"F-4561r88504_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4561r88504_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:92519\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:16:26" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000213" + ], + "nist": [ + "AC-3" + ], + "severity": "high", + "description": "{\"VulnDiscussion\":\"If the system does not require valid root authentication before it boots into single-user or maintenance mode, anyone who invokes single-user or maintenance mode is granted privileged access to all files on the system. GRUB 2 is the default boot loader for RHEL 7 and is designed to require a password to boot into single-user mode or make modifications to the boot menu.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204438", + "group_title": "SRG-OS-000080-GPOS-00048", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204438r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:95717" + } + }, + "fix_id": "F-4562r88507_fix", + "fixtext_fixref": "F-4562r88507_fix", + "ident": [ + { + "text": "CCE-27309-4", + "system": "http://cce.mitre.org" + }, + { + "text": "V-81005", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-95717", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000213", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204438r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:16:26", + "idref": "xccdf_mil.disa.stig_rule_SV-204437r603261_rule", + "version": "RHEL-07-010481", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "V-77823", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-92519", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000213", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4561r88504_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:92519" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Red Hat Enterprise Linux operating systems version 7.2 or newer with a Basic Input/Output System (BIOS) must require authentication upon booting into single-user and maintenance modes.", + "id": "V-204438", + "desc": "If the system does not require valid root authentication before it boots into single-user or maintenance mode, anyone who invokes single-user or maintenance mode is granted privileged access to all files on the system. GRUB 2 is the default boot loader for RHEL 7 and is designed to require a password to boot into single-user mode or make modifications to the boot menu.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:95717", + "label": "check" + }, + { + "data": "Configure the system to encrypt the boot password for root.\n\nGenerate an encrypted grub2 password for root with the following command:\n\nNote: The hash generated is an example.\n\n# grub2-setpassword\nEnter password:\nConfirm password:\n\nEdit the /boot/grub2/grub.cfg file and add or modify the following lines in the \"### BEGIN /etc/grub.d/01_users ###\" section:\n\nset superusers=\"root\"\nexport superusers", + "label": "fix" + } + ], + "impact": 0.7, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204438\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204438\",\n \"cdf:title\": \"SRG-OS-000080-GPOS-00048\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204438r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204438r603261_rule\",\n \"severity\": \"high\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-010482\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"Red Hat Enterprise Linux operating systems version 7.2 or newer with a Basic Input/Output System (BIOS) must require authentication upon booting into single-user and maintenance modes.\",\n \"cdf:description\": \"<VulnDiscussion>If the system does not require valid root authentication before it boots into single-user or maintenance mode, anyone who invokes single-user or maintenance mode is granted privileged access to all files on the system. GRUB 2 is the default boot loader for RHEL 7 and is designed to require a password to boot into single-user mode or make modifications to the boot menu.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-27309-4\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-81005\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-95717\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000213\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the system to encrypt the boot password for root.\\n\\nGenerate an encrypted grub2 password for root with the following command:\\n\\nNote: The hash generated is an example.\\n\\n# grub2-setpassword\\nEnter password:\\nConfirm password:\\n\\nEdit the /boot/grub2/grub.cfg file and add or modify the following lines in the \\\"### BEGIN /etc/grub.d/01_users ###\\\" section:\\n\\nset superusers=\\\"root\\\"\\nexport superusers\",\n \"fixref\": \"F-4562r88507_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4562r88507_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:95717\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:16:26" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000213" + ], + "nist": [ + "AC-3" + ], + "severity": "high", + "description": "{\"VulnDiscussion\":\"If the system does not require valid root authentication before it boots into single-user or maintenance mode, anyone who invokes single-user or maintenance mode is granted privileged access to all files on the system. GRUB 2 is the default boot loader for RHEL 7 and is designed to require a password to boot into single-user mode or make modifications to the boot menu.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204439", + "group_title": "SRG-OS-000080-GPOS-00048", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204439r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:912" + } + }, + "fix_id": "F-4563r88510_fix", + "fixtext_fixref": "F-4563r88510_fix", + "ident": [ + { + "text": "CCE-80354-4", + "system": "http://cce.mitre.org" + }, + { + "text": "V-71963", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86587", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000213", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204439r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:16:26", + "idref": "xccdf_mil.disa.stig_rule_SV-204438r603261_rule", + "version": "RHEL-07-010482", + "severity": "high", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-27309-4", + "system": "http://cce.mitre.org" + }, + { + "text": "V-81005", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-95717", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000213", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4562r88507_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:95717" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Red Hat Enterprise Linux operating systems prior to version 7.2 using Unified Extensible Firmware Interface (UEFI) must require authentication upon booting into single-user and maintenance modes.", + "id": "V-204439", + "desc": "If the system does not require valid root authentication before it boots into single-user or maintenance mode, anyone who invokes single-user or maintenance mode is granted privileged access to all files on the system. GRUB 2 is the default boot loader for RHEL 7 and is designed to require a password to boot into single-user mode or make modifications to the boot menu.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:912", + "label": "check" + }, + { + "data": "Configure the system to encrypt the boot password for root.\n\nGenerate an encrypted grub2 password for root with the following command:\n\nNote: The hash generated is an example.\n\n# grub2-mkpasswd-pbkdf2\n\nEnter Password:\nReenter Password:\nPBKDF2 hash of your password is grub.pbkdf2.sha512.10000.F3A7CFAA5A51EED123BE8238C23B25B2A6909AFC9812F0D45\n\nEdit \"/etc/grub.d/40_custom\" and add the following lines below the comments:\n\n# vi /etc/grub.d/40_custom\n\nset superusers=\"root\"\n\npassword_pbkdf2 root {hash from grub2-mkpasswd-pbkdf2 command}\n\nGenerate a new \"grub.conf\" file with the new password with the following commands:\n\n# grub2-mkconfig --output=/tmp/grub2.cfg\n# mv /tmp/grub2.cfg /boot/efi/EFI/redhat/grub.cfg", + "label": "fix" + } + ], + "impact": 0.7, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204439\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204439\",\n \"cdf:title\": \"SRG-OS-000080-GPOS-00048\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204439r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204439r603261_rule\",\n \"severity\": \"high\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-010490\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"Red Hat Enterprise Linux operating systems prior to version 7.2 using Unified Extensible Firmware Interface (UEFI) must require authentication upon booting into single-user and maintenance modes.\",\n \"cdf:description\": \"<VulnDiscussion>If the system does not require valid root authentication before it boots into single-user or maintenance mode, anyone who invokes single-user or maintenance mode is granted privileged access to all files on the system. GRUB 2 is the default boot loader for RHEL 7 and is designed to require a password to boot into single-user mode or make modifications to the boot menu.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80354-4\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-71963\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86587\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000213\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the system to encrypt the boot password for root.\\n\\nGenerate an encrypted grub2 password for root with the following command:\\n\\nNote: The hash generated is an example.\\n\\n# grub2-mkpasswd-pbkdf2\\n\\nEnter Password:\\nReenter Password:\\nPBKDF2 hash of your password is grub.pbkdf2.sha512.10000.F3A7CFAA5A51EED123BE8238C23B25B2A6909AFC9812F0D45\\n\\nEdit \\\"/etc/grub.d/40_custom\\\" and add the following lines below the comments:\\n\\n# vi /etc/grub.d/40_custom\\n\\nset superusers=\\\"root\\\"\\n\\npassword_pbkdf2 root {hash from grub2-mkpasswd-pbkdf2 command}\\n\\nGenerate a new \\\"grub.conf\\\" file with the new password with the following commands:\\n\\n# grub2-mkconfig --output=/tmp/grub2.cfg\\n# mv /tmp/grub2.cfg /boot/efi/EFI/redhat/grub.cfg\",\n \"fixref\": \"F-4563r88510_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4563r88510_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:912\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:16:26" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000213" + ], + "nist": [ + "AC-3" + ], + "severity": "high", + "description": "{\"VulnDiscussion\":\"If the system does not require valid root authentication before it boots into single-user or maintenance mode, anyone who invokes single-user or maintenance mode is granted privileged access to all files on the system. GRUB 2 is the default boot loader for RHEL 7 and is designed to require a password to boot into single-user mode or make modifications to the boot menu.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204440", + "group_title": "SRG-OS-000080-GPOS-00048", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204440r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:95719" + } + }, + "fix_id": "F-4564r88513_fix", + "fixtext_fixref": "F-4564r88513_fix", + "ident": [ + { + "text": "CCE-80354-4", + "system": "http://cce.mitre.org" + }, + { + "text": "V-81007", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-95719", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000213", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204440r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:16:26", + "idref": "xccdf_mil.disa.stig_rule_SV-204439r603261_rule", + "version": "RHEL-07-010490", + "severity": "high", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-80354-4", + "system": "http://cce.mitre.org" + }, + { + "text": "V-71963", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86587", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000213", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4563r88510_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:912" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Red Hat Enterprise Linux operating systems version 7.2 or newer using Unified Extensible Firmware Interface (UEFI) must require authentication upon booting into single-user and maintenance modes.", + "id": "V-204440", + "desc": "If the system does not require valid root authentication before it boots into single-user or maintenance mode, anyone who invokes single-user or maintenance mode is granted privileged access to all files on the system. GRUB 2 is the default boot loader for RHEL 7 and is designed to require a password to boot into single-user mode or make modifications to the boot menu.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:95719", + "label": "check" + }, + { + "data": "Configure the system to encrypt the boot password for root.\n\nGenerate an encrypted grub2 password for root with the following command:\n\nNote: The hash generated is an example.\n\n# grub2-setpassword\nEnter password:\nConfirm password:\n\nEdit the /boot/efi/EFI/redhat/grub.cfg file and add or modify the following lines in the \"### BEGIN /etc/grub.d/01_users ###\" section:\n\nset superusers=\"root\"\nexport superusers", + "label": "fix" + } + ], + "impact": 0.7, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204440\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204440\",\n \"cdf:title\": \"SRG-OS-000080-GPOS-00048\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204440r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204440r603261_rule\",\n \"severity\": \"high\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-010491\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"Red Hat Enterprise Linux operating systems version 7.2 or newer using Unified Extensible Firmware Interface (UEFI) must require authentication upon booting into single-user and maintenance modes.\",\n \"cdf:description\": \"<VulnDiscussion>If the system does not require valid root authentication before it boots into single-user or maintenance mode, anyone who invokes single-user or maintenance mode is granted privileged access to all files on the system. GRUB 2 is the default boot loader for RHEL 7 and is designed to require a password to boot into single-user mode or make modifications to the boot menu.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80354-4\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-81007\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-95719\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000213\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the system to encrypt the boot password for root.\\n\\nGenerate an encrypted grub2 password for root with the following command:\\n\\nNote: The hash generated is an example.\\n\\n# grub2-setpassword\\nEnter password:\\nConfirm password:\\n\\nEdit the /boot/efi/EFI/redhat/grub.cfg file and add or modify the following lines in the \\\"### BEGIN /etc/grub.d/01_users ###\\\" section:\\n\\nset superusers=\\\"root\\\"\\nexport superusers\",\n \"fixref\": \"F-4564r88513_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4564r88513_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:95719\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:16:26" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000381" + ], + "nist": [ + "CM-7 a" + ], + "severity": "high", + "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\\n\\nThe rsh-server service provides an unencrypted remote access service that does not provide for the confidentiality and integrity of user passwords or the remote session and has very weak authentication.\\n\\nIf a privileged user were to log on using this service, the privileged user password could be compromised.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204442", + "group_title": "SRG-OS-000095-GPOS-00049", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204442r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:1271" + } + }, + "fix_id": "F-4566r88519_fix", + "fixtext_fixref": "F-4566r88519_fix", + "ident": [ + { + "text": "CCE-27342-5", + "system": "http://cce.mitre.org" + }, + { + "text": "V-71967", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86591", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000381", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204442r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:16:26", + "idref": "xccdf_mil.disa.stig_rule_SV-204440r603261_rule", + "version": "RHEL-07-010491", + "severity": "high", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-80354-4", + "system": "http://cce.mitre.org" + }, + { + "text": "V-81007", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-95719", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000213", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4564r88513_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:95719" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must not have the rsh-server package installed.", + "id": "V-204442", + "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\n\nThe rsh-server service provides an unencrypted remote access service that does not provide for the confidentiality and integrity of user passwords or the remote session and has very weak authentication.\n\nIf a privileged user were to log on using this service, the privileged user password could be compromised.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:1271", + "label": "check" + }, + { + "data": "Configure the operating system to disable non-essential capabilities by removing the rsh-server package from the system with the following command:\n\n# yum remove rsh-server", + "label": "fix" + } + ], + "impact": 0.7, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204442\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204442\",\n \"cdf:title\": \"SRG-OS-000095-GPOS-00049\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204442r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204442r603261_rule\",\n \"severity\": \"high\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-020000\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must not have the rsh-server package installed.\",\n \"cdf:description\": \"<VulnDiscussion>It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\\n\\nThe rsh-server service provides an unencrypted remote access service that does not provide for the confidentiality and integrity of user passwords or the remote session and has very weak authentication.\\n\\nIf a privileged user were to log on using this service, the privileged user password could be compromised.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-27342-5\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-71967\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86591\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000381\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to disable non-essential capabilities by removing the rsh-server package from the system with the following command:\\n\\n# yum remove rsh-server\",\n \"fixref\": \"F-4566r88519_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4566r88519_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:1271\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:16:26" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000381" + ], + "nist": [ + "CM-7 a" + ], + "severity": "high", + "description": "{\"VulnDiscussion\":\"Removing the \\\"ypserv\\\" package decreases the risk of the accidental (or intentional) activation of NIS or NIS+ services.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204443", + "group_title": "SRG-OS-000095-GPOS-00049", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204443r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:1309" + } + }, + "fix_id": "F-4567r88522_fix", + "fixtext_fixref": "F-4567r88522_fix", + "ident": [ + { + "text": "CCE-27399-5", + "system": "http://cce.mitre.org" + }, + { + "text": "V-71969", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86593", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000381", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204443r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:16:26", + "idref": "xccdf_mil.disa.stig_rule_SV-204442r603261_rule", + "version": "RHEL-07-020000", + "severity": "high", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-27342-5", + "system": "http://cce.mitre.org" + }, + { + "text": "V-71967", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86591", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000381", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4566r88519_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:1271" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must not have the ypserv package installed.", + "id": "V-204443", + "desc": "Removing the \"ypserv\" package decreases the risk of the accidental (or intentional) activation of NIS or NIS+ services.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:1309", + "label": "check" + }, + { + "data": "Configure the operating system to disable non-essential capabilities by removing the \"ypserv\" package from the system with the following command:\n\n# yum remove ypserv", + "label": "fix" + } + ], + "impact": 0.7, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204443\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204443\",\n \"cdf:title\": \"SRG-OS-000095-GPOS-00049\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204443r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204443r603261_rule\",\n \"severity\": \"high\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-020010\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must not have the ypserv package installed.\",\n \"cdf:description\": \"<VulnDiscussion>Removing the \\\"ypserv\\\" package decreases the risk of the accidental (or intentional) activation of NIS or NIS+ services.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-27399-5\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-71969\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86593\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000381\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to disable non-essential capabilities by removing the \\\"ypserv\\\" package from the system with the following command:\\n\\n# yum remove ypserv\",\n \"fixref\": \"F-4567r88522_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4567r88522_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:1309\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:16:27" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001744" + ], + "nist": [ + "CM-3 (5)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Unauthorized changes to the baseline configuration could make the system vulnerable to various attacks or allow unauthorized access to the operating system. Changes to operating system configurations can have unintended side effects, some of which may be relevant to security.\\n\\nDetecting such changes and providing an automated response can help avoid unintended, negative consequences that could ultimately affect the security state of the operating system. The operating system's Information Management Officer (IMO)/Information System Security Officer (ISSO) and System Administrators (SAs) must be notified via email and/or monitoring system trap when there is an unauthorized modification of a configuration item.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204445", + "group_title": "SRG-OS-000363-GPOS-00150", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204445r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:525" + } + }, + "fix_id": "F-36304r602622_fix", + "fixtext_fixref": "F-36304r602622_fix", + "ident": [ + { + "text": "CCE-26952-2", + "system": "http://cce.mitre.org" + }, + { + "text": "V-71973", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86597", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001744", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204445r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:16:27", + "idref": "xccdf_mil.disa.stig_rule_SV-204443r603261_rule", + "version": "RHEL-07-020010", + "severity": "high", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-27399-5", + "system": "http://cce.mitre.org" + }, + { + "text": "V-71969", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86593", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000381", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4567r88522_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:1309" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that a file integrity tool verifies the baseline operating system configuration at least weekly.", + "id": "V-204445", + "desc": "Unauthorized changes to the baseline configuration could make the system vulnerable to various attacks or allow unauthorized access to the operating system. Changes to operating system configurations can have unintended side effects, some of which may be relevant to security.\n\nDetecting such changes and providing an automated response can help avoid unintended, negative consequences that could ultimately affect the security state of the operating system. The operating system's Information Management Officer (IMO)/Information System Security Officer (ISSO) and System Administrators (SAs) must be notified via email and/or monitoring system trap when there is an unauthorized modification of a configuration item.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:525", + "label": "check" + }, + { + "data": "Configure the file integrity tool to run automatically on the system at least weekly. The following example output is generic. It will set cron to run AIDE daily, but other file integrity tools may be used:\n\n# more /etc/cron.daily/aide\n#!/bin/bash\n\n/usr/sbin/aide --check | /bin/mail -s \"$HOSTNAME - Daily aide integrity check run\" root@sysname.mil", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204445\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204445\",\n \"cdf:title\": \"SRG-OS-000363-GPOS-00150\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204445r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204445r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-020030\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must be configured so that a file integrity tool verifies the baseline operating system configuration at least weekly.\",\n \"cdf:description\": \"<VulnDiscussion>Unauthorized changes to the baseline configuration could make the system vulnerable to various attacks or allow unauthorized access to the operating system. Changes to operating system configurations can have unintended side effects, some of which may be relevant to security.\\n\\nDetecting such changes and providing an automated response can help avoid unintended, negative consequences that could ultimately affect the security state of the operating system. The operating system's Information Management Officer (IMO)/Information System Security Officer (ISSO) and System Administrators (SAs) must be notified via email and/or monitoring system trap when there is an unauthorized modification of a configuration item.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-26952-2\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-71973\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86597\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-001744\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the file integrity tool to run automatically on the system at least weekly. The following example output is generic. It will set cron to run AIDE daily, but other file integrity tools may be used:\\n\\n# more /etc/cron.daily/aide\\n#!/bin/bash\\n\\n/usr/sbin/aide --check | /bin/mail -s \\\"$HOSTNAME - Daily aide integrity check run\\\" root@sysname.mil\",\n \"fixref\": \"F-36304r602622_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-36304r602622_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:525\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:16:29" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001749" + ], + "nist": [ + "CM-5 (3)" + ], + "severity": "high", + "description": "{\"VulnDiscussion\":\"Changes to any software components can have significant effects on the overall security of the operating system. This requirement ensures the software has not been tampered with and that it has been provided by a trusted vendor.\\n\\nAccordingly, patches, service packs, device drivers, or operating system components must be signed with a certificate recognized and approved by the organization.\\n\\nVerifying the authenticity of the software prior to installation validates the integrity of the patch or upgrade received from a vendor. This verifies the software has not been tampered with and that it has been provided by a trusted vendor. Self-signed certificates are disallowed by this requirement. The operating system should not have to verify the software again. This requirement does not mandate DoD certificates for this purpose; however, the certificate used to verify the software must be from an approved CA.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204447", + "group_title": "SRG-OS-000366-GPOS-00153", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204447r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:1027" + } + }, + "fix_id": "F-4571r88534_fix", + "fixtext_fixref": "F-4571r88534_fix", + "ident": [ + { + "text": "CCE-26989-4", + "system": "http://cce.mitre.org" + }, + { + "text": "V-71977", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86601", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001749", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204447r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:16:29", + "idref": "xccdf_mil.disa.stig_rule_SV-204445r603261_rule", + "version": "RHEL-07-020030", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-26952-2", + "system": "http://cce.mitre.org" + }, + { + "text": "V-71973", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86597", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001744", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-36304r602622_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:525" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must prevent the installation of software, patches, service packs, device drivers, or operating system components from a repository without verification they have been digitally signed using a certificate that is issued by a Certificate Authority (CA) that is recognized and approved by the organization.", + "id": "V-204447", + "desc": "Changes to any software components can have significant effects on the overall security of the operating system. This requirement ensures the software has not been tampered with and that it has been provided by a trusted vendor.\n\nAccordingly, patches, service packs, device drivers, or operating system components must be signed with a certificate recognized and approved by the organization.\n\nVerifying the authenticity of the software prior to installation validates the integrity of the patch or upgrade received from a vendor. This verifies the software has not been tampered with and that it has been provided by a trusted vendor. Self-signed certificates are disallowed by this requirement. The operating system should not have to verify the software again. This requirement does not mandate DoD certificates for this purpose; however, the certificate used to verify the software must be from an approved CA.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:1027", + "label": "check" + }, + { + "data": "Configure the operating system to verify the signature of packages from a repository prior to install by setting the following option in the \"/etc/yum.conf\" file:\n\ngpgcheck=1", + "label": "fix" + } + ], + "impact": 0.7, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204447\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204447\",\n \"cdf:title\": \"SRG-OS-000366-GPOS-00153\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204447r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204447r603261_rule\",\n \"severity\": \"high\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-020050\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must prevent the installation of software, patches, service packs, device drivers, or operating system components from a repository without verification they have been digitally signed using a certificate that is issued by a Certificate Authority (CA) that is recognized and approved by the organization.\",\n \"cdf:description\": \"<VulnDiscussion>Changes to any software components can have significant effects on the overall security of the operating system. This requirement ensures the software has not been tampered with and that it has been provided by a trusted vendor.\\n\\nAccordingly, patches, service packs, device drivers, or operating system components must be signed with a certificate recognized and approved by the organization.\\n\\nVerifying the authenticity of the software prior to installation validates the integrity of the patch or upgrade received from a vendor. This verifies the software has not been tampered with and that it has been provided by a trusted vendor. Self-signed certificates are disallowed by this requirement. The operating system should not have to verify the software again. This requirement does not mandate DoD certificates for this purpose; however, the certificate used to verify the software must be from an approved CA.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-26989-4\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-71977\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86601\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-001749\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to verify the signature of packages from a repository prior to install by setting the following option in the \\\"/etc/yum.conf\\\" file:\\n\\ngpgcheck=1\",\n \"fixref\": \"F-4571r88534_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4571r88534_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:1027\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:16:30" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001749" + ], + "nist": [ + "CM-5 (3)" + ], + "severity": "high", + "description": "{\"VulnDiscussion\":\"Changes to any software components can have significant effects on the overall security of the operating system. This requirement ensures the software has not been tampered with and that it has been provided by a trusted vendor.\\n\\nAccordingly, patches, service packs, device drivers, or operating system components must be signed with a certificate recognized and approved by the organization.\\n\\nVerifying the authenticity of the software prior to installation validates the integrity of the patch or upgrade received from a vendor. This verifies the software has not been tampered with and that it has been provided by a trusted vendor. Self-signed certificates are disallowed by this requirement. The operating system should not have to verify the software again. This requirement does not mandate DoD certificates for this purpose; however, the certificate used to verify the software must be from an approved CA.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204448", + "group_title": "SRG-OS-000366-GPOS-00153", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204448r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:110" + } + }, + "fix_id": "F-4572r88537_fix", + "fixtext_fixref": "F-4572r88537_fix", + "ident": [ + { + "text": "CCE-80347-8", + "system": "http://cce.mitre.org" + }, + { + "text": "V-71979", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86603", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001749", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204448r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:16:30", + "idref": "xccdf_mil.disa.stig_rule_SV-204447r603261_rule", + "version": "RHEL-07-020050", + "severity": "high", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-26989-4", + "system": "http://cce.mitre.org" + }, + { + "text": "V-71977", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86601", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001749", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4571r88534_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:1027" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must prevent the installation of software, patches, service packs, device drivers, or operating system components of local packages without verification they have been digitally signed using a certificate that is issued by a Certificate Authority (CA) that is recognized and approved by the organization.", + "id": "V-204448", + "desc": "Changes to any software components can have significant effects on the overall security of the operating system. This requirement ensures the software has not been tampered with and that it has been provided by a trusted vendor.\n\nAccordingly, patches, service packs, device drivers, or operating system components must be signed with a certificate recognized and approved by the organization.\n\nVerifying the authenticity of the software prior to installation validates the integrity of the patch or upgrade received from a vendor. This verifies the software has not been tampered with and that it has been provided by a trusted vendor. Self-signed certificates are disallowed by this requirement. The operating system should not have to verify the software again. This requirement does not mandate DoD certificates for this purpose; however, the certificate used to verify the software must be from an approved CA.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:110", + "label": "check" + }, + { + "data": "Configure the operating system to verify the signature of local packages prior to install by setting the following option in the \"/etc/yum.conf\" file:\n\nlocalpkg_gpgcheck=1", + "label": "fix" + } + ], + "impact": 0.7, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204448\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204448\",\n \"cdf:title\": \"SRG-OS-000366-GPOS-00153\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204448r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204448r603261_rule\",\n \"severity\": \"high\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-020060\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must prevent the installation of software, patches, service packs, device drivers, or operating system components of local packages without verification they have been digitally signed using a certificate that is issued by a Certificate Authority (CA) that is recognized and approved by the organization.\",\n \"cdf:description\": \"<VulnDiscussion>Changes to any software components can have significant effects on the overall security of the operating system. This requirement ensures the software has not been tampered with and that it has been provided by a trusted vendor.\\n\\nAccordingly, patches, service packs, device drivers, or operating system components must be signed with a certificate recognized and approved by the organization.\\n\\nVerifying the authenticity of the software prior to installation validates the integrity of the patch or upgrade received from a vendor. This verifies the software has not been tampered with and that it has been provided by a trusted vendor. Self-signed certificates are disallowed by this requirement. The operating system should not have to verify the software again. This requirement does not mandate DoD certificates for this purpose; however, the certificate used to verify the software must be from an approved CA.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80347-8\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-71979\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86603\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-001749\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to verify the signature of local packages prior to install by setting the following option in the \\\"/etc/yum.conf\\\" file:\\n\\nlocalpkg_gpgcheck=1\",\n \"fixref\": \"F-4572r88537_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4572r88537_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:110\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:16:30" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001958", + "CCI-000778", + "CCI-000366" + ], + "nist": [ + "IA-3", + "IA-3", + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"USB mass storage permits easy introduction of unknown devices, thereby facilitating malicious activity.\\n\\nSatisfies: SRG-OS-000114-GPOS-00059, SRG-OS-000378-GPOS-00163, SRG-OS-000480-GPOS-00227\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204449", + "group_title": "SRG-OS-000114-GPOS-00059", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204449r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:1141" + } + }, + "fix_id": "F-4573r462538_fix", + "fixtext_fixref": "F-4573r462538_fix", + "ident": [ + { + "text": "V-71983", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86607", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001958", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000778", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204449r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:16:30", + "idref": "xccdf_mil.disa.stig_rule_SV-204448r603261_rule", + "version": "RHEL-07-020060", + "severity": "high", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-80347-8", + "system": "http://cce.mitre.org" + }, + { + "text": "V-71979", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86603", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001749", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4572r88537_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:110" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured to disable USB mass storage.", + "id": "V-204449", + "desc": "USB mass storage permits easy introduction of unknown devices, thereby facilitating malicious activity.\n\nSatisfies: SRG-OS-000114-GPOS-00059, SRG-OS-000378-GPOS-00163, SRG-OS-000480-GPOS-00227", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:1141", + "label": "check" + }, + { + "data": "Configure the operating system to disable the ability to use the USB Storage kernel module.\n\nCreate a file under \"/etc/modprobe.d\" with the following command:\n\n# touch /etc/modprobe.d/usb-storage.conf\n\nAdd the following line to the created file:\n\ninstall usb-storage /bin/true\n\nConfigure the operating system to disable the ability to use USB mass storage devices.\n\n# vi /etc/modprobe.d/blacklist.conf\n\nAdd or update the line:\n\nblacklist usb-storage", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204449\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204449\",\n \"cdf:title\": \"SRG-OS-000114-GPOS-00059\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204449r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204449r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-020100\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must be configured to disable USB mass storage.\",\n \"cdf:description\": \"<VulnDiscussion>USB mass storage permits easy introduction of unknown devices, thereby facilitating malicious activity.\\n\\nSatisfies: SRG-OS-000114-GPOS-00059, SRG-OS-000378-GPOS-00163, SRG-OS-000480-GPOS-00227</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"V-71983\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86607\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-001958\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000778\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to disable the ability to use the USB Storage kernel module.\\n\\nCreate a file under \\\"/etc/modprobe.d\\\" with the following command:\\n\\n# touch /etc/modprobe.d/usb-storage.conf\\n\\nAdd the following line to the created file:\\n\\ninstall usb-storage /bin/true\\n\\nConfigure the operating system to disable the ability to use USB mass storage devices.\\n\\n# vi /etc/modprobe.d/blacklist.conf\\n\\nAdd or update the line:\\n\\nblacklist usb-storage\",\n \"fixref\": \"F-4573r462538_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4573r462538_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:1141\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:16:30" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001958" + ], + "nist": [ + "IA-3" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Disabling DCCP protects the system against exploitation of any flaws in the protocol implementation.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204450", + "group_title": "SRG-OS-000378-GPOS-00163", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204450r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:92517" + } + }, + "fix_id": "F-4574r88543_fix", + "fixtext_fixref": "F-4574r88543_fix", + "ident": [ + { + "text": "SV-92517", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-77821", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001958", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204450r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:16:30", + "idref": "xccdf_mil.disa.stig_rule_SV-204449r603261_rule", + "version": "RHEL-07-020100", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "V-71983", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86607", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001958", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000778", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4573r462538_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:1141" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that the Datagram Congestion Control Protocol (DCCP) kernel module is disabled unless required.", + "id": "V-204450", + "desc": "Disabling DCCP protects the system against exploitation of any flaws in the protocol implementation.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:92517", + "label": "check" + }, + { + "data": "Configure the operating system to disable the ability to use the DCCP kernel module.\n\nCreate a file under \"/etc/modprobe.d\" with the following command:\n\n# touch /etc/modprobe.d/dccp.conf\n\nAdd the following line to the created file:\n\ninstall dccp /bin/true\n\nEnsure that the DCCP module is blacklisted:\n\n# vi /etc/modprobe.d/blacklist.conf\n\nAdd or update the line:\n\nblacklist dccp", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204450\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204450\",\n \"cdf:title\": \"SRG-OS-000378-GPOS-00163\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204450r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204450r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-020101\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must be configured so that the Datagram Congestion Control Protocol (DCCP) kernel module is disabled unless required.\",\n \"cdf:description\": \"<VulnDiscussion>Disabling DCCP protects the system against exploitation of any flaws in the protocol implementation.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"SV-92517\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-77821\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-001958\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to disable the ability to use the DCCP kernel module.\\n\\nCreate a file under \\\"/etc/modprobe.d\\\" with the following command:\\n\\n# touch /etc/modprobe.d/dccp.conf\\n\\nAdd the following line to the created file:\\n\\ninstall dccp /bin/true\\n\\nEnsure that the DCCP module is blacklisted:\\n\\n# vi /etc/modprobe.d/blacklist.conf\\n\\nAdd or update the line:\\n\\nblacklist dccp\",\n \"fixref\": \"F-4574r88543_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4574r88543_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:92517\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:16:30" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001958", + "CCI-000366", + "CCI-000778" + ], + "nist": [ + "IA-3", + "CM-6 b", + "IA-3" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Automatically mounting file systems permits easy introduction of unknown devices, thereby facilitating malicious activity.\\n\\nSatisfies: SRG-OS-000114-GPOS-00059, SRG-OS-000378-GPOS-00163, SRG-OS-000480-GPOS-00227\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204451", + "group_title": "SRG-OS-000114-GPOS-00059", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204451r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:86609" + } + }, + "fix_id": "F-4575r88546_fix", + "fixtext_fixref": "F-4575r88546_fix", + "ident": [ + { + "text": "CCE-27498-5", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86609", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71985", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001958", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000778", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204451r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:16:30", + "idref": "xccdf_mil.disa.stig_rule_SV-204450r603261_rule", + "version": "RHEL-07-020101", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "SV-92517", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-77821", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001958", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4574r88543_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:92517" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must disable the file system automounter unless required.", + "id": "V-204451", + "desc": "Automatically mounting file systems permits easy introduction of unknown devices, thereby facilitating malicious activity.\n\nSatisfies: SRG-OS-000114-GPOS-00059, SRG-OS-000378-GPOS-00163, SRG-OS-000480-GPOS-00227", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:86609", + "label": "check" + }, + { + "data": "Configure the operating system to disable the ability to automount devices.\n\nTurn off the automount service with the following commands:\n\n# systemctl stop autofs\n# systemctl disable autofs\n\nIf \"autofs\" is required for Network File System (NFS), it must be documented with the ISSO.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204451\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204451\",\n \"cdf:title\": \"SRG-OS-000114-GPOS-00059\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204451r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204451r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-020110\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must disable the file system automounter unless required.\",\n \"cdf:description\": \"<VulnDiscussion>Automatically mounting file systems permits easy introduction of unknown devices, thereby facilitating malicious activity.\\n\\nSatisfies: SRG-OS-000114-GPOS-00059, SRG-OS-000378-GPOS-00163, SRG-OS-000480-GPOS-00227</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-27498-5\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86609\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-71985\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-001958\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000778\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to disable the ability to automount devices.\\n\\nTurn off the automount service with the following commands:\\n\\n# systemctl stop autofs\\n# systemctl disable autofs\\n\\nIf \\\"autofs\\\" is required for Network File System (NFS), it must be documented with the ISSO.\",\n \"fixref\": \"F-4575r88546_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4575r88546_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:86609\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:16:30" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-002617" + ], + "nist": [ + "SI-2 (6)" + ], + "severity": "low", + "description": "{\"VulnDiscussion\":\"Previous versions of software components that are not removed from the information system after updates have been installed may be exploited by adversaries. Some information technology products may remove older versions of software automatically from the information system.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204452", + "group_title": "SRG-OS-000437-GPOS-00194", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204452r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:108" + } + }, + "fix_id": "F-4576r88549_fix", + "fixtext_fixref": "F-4576r88549_fix", + "ident": [ + { + "text": "CCE-80346-0", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86611", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71987", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-002617", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204452r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:16:30", + "idref": "xccdf_mil.disa.stig_rule_SV-204451r603261_rule", + "version": "RHEL-07-020110", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-27498-5", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86609", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71985", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001958", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000778", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4575r88546_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:86609" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must remove all software components after updated versions have been installed.", + "id": "V-204452", + "desc": "Previous versions of software components that are not removed from the information system after updates have been installed may be exploited by adversaries. Some information technology products may remove older versions of software automatically from the information system.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:108", + "label": "check" + }, + { + "data": "Configure the operating system to remove all software components after updated versions have been installed.\n\nSet the \"clean_requirements_on_remove\" option to \"1\" in the \"/etc/yum.conf\" file:\n\nclean_requirements_on_remove=1", + "label": "fix" + } + ], + "impact": 0.3, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204452\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204452\",\n \"cdf:title\": \"SRG-OS-000437-GPOS-00194\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204452r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204452r603261_rule\",\n \"severity\": \"low\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-020200\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must remove all software components after updated versions have been installed.\",\n \"cdf:description\": \"<VulnDiscussion>Previous versions of software components that are not removed from the information system after updates have been installed may be exploited by adversaries. Some information technology products may remove older versions of software automatically from the information system.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80346-0\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86611\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-71987\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-002617\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to remove all software components after updated versions have been installed.\\n\\nSet the \\\"clean_requirements_on_remove\\\" option to \\\"1\\\" in the \\\"/etc/yum.conf\\\" file:\\n\\nclean_requirements_on_remove=1\",\n \"fixref\": \"F-4576r88549_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4576r88549_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:108\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:16:30" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Setting the most restrictive default permissions ensures that when new accounts are created, they do not have unnecessary access.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204457", + "group_title": "SRG-OS-000480-GPOS-00228", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204457r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-export": { + "value-id": "xccdf_mil.disa.stig_value_var_accounts_user_umask", + "export-name": "oval:mil.disa.stig.rhel7:var:4211" + }, + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:518" + } + }, + "fix_id": "F-4581r88564_fix", + "fixtext_fixref": "F-4581r88564_fix", + "ident": [ + { + "text": "CCE-80205-8", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86619", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71995", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204457r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:16:30", + "idref": "xccdf_mil.disa.stig_rule_SV-204452r603261_rule", + "version": "RHEL-07-020200", + "severity": "low", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-80346-0", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86611", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71987", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-002617", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4576r88549_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:108" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must define default permissions for all authenticated users in such a way that the user can only read and modify their own files.", + "id": "V-204457", + "desc": "Setting the most restrictive default permissions ensures that when new accounts are created, they do not have unnecessary access.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:518", + "label": "check" + }, + { + "data": "Configure the operating system to define default permissions for all authenticated users in such a way that the user can only read and modify their own files.\n\nAdd or edit the line for the \"UMASK\" parameter in \"/etc/login.defs\" file to \"077\":\n\nUMASK 077", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204457\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204457\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00228\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204457r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204457r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-020240\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must define default permissions for all authenticated users in such a way that the user can only read and modify their own files.\",\n \"cdf:description\": \"<VulnDiscussion>Setting the most restrictive default permissions ensures that when new accounts are created, they do not have unnecessary access.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80205-8\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86619\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-71995\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to define default permissions for all authenticated users in such a way that the user can only read and modify their own files.\\n\\nAdd or edit the line for the \\\"UMASK\\\" parameter in \\\"/etc/login.defs\\\" file to \\\"077\\\":\\n\\nUMASK 077\",\n \"fixref\": \"F-4581r88564_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4581r88564_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-export\": {\n \"value-id\": \"xccdf_mil.disa.stig_value_var_accounts_user_umask\",\n \"export-name\": \"oval:mil.disa.stig.rhel7:var:4211\"\n },\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:518\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:16:30" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "high", + "description": "{\"VulnDiscussion\":\"An operating system release is considered \\\"supported\\\" if the vendor continues to provide security patches for the product. With an unsupported release, it will not be possible to resolve security issues discovered in the system software.\\n\\nRed Hat offers the Extended Update Support (EUS) Add-On to a Red Hat Enterprise Linux subscription, for a fee, for those customers who wish to standardize on a specific minor release for an extended period. RHEL 7.7 marks the final minor release that EUS will be available.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204458", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204458r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:169" + } + }, + "fix_id": "F-4582r462547_fix", + "fixtext_fixref": "F-4582r462547_fix", + "ident": [ + { + "text": "CCE-80349-4", + "system": "http://cce.mitre.org" + }, + { + "text": "V-71997", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86621", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204458r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:16:30", + "idref": "xccdf_mil.disa.stig_rule_SV-204457r603261_rule", + "version": "RHEL-07-020240", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-80205-8", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86619", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-71995", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4581r88564_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-export": { + "value-id": "xccdf_mil.disa.stig_value_var_accounts_user_umask", + "export-name": "oval:mil.disa.stig.rhel7:var:4211" + }, + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:518" + } + } + }, + "value": { + "Id": "xccdf_mil.disa.stig_value_var_accounts_user_umask", + "id": "xccdf_mil.disa.stig_value_var_accounts_user_umask", + "cdf:title": "Sensible umask", + "cdf:description": "Enter default user umask", + "cdf:value": [ + 77, + { + "text": 7, + "selector": "007" + }, + { + "text": 22, + "selector": "022" + }, + { + "text": 27, + "selector": "027" + }, + { + "text": 77, + "selector": "077" + } + ] + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be a vendor supported release.", + "id": "V-204458", + "desc": "An operating system release is considered \"supported\" if the vendor continues to provide security patches for the product. With an unsupported release, it will not be possible to resolve security issues discovered in the system software.\n\nRed Hat offers the Extended Update Support (EUS) Add-On to a Red Hat Enterprise Linux subscription, for a fee, for those customers who wish to standardize on a specific minor release for an extended period. RHEL 7.7 marks the final minor release that EUS will be available.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:169", + "label": "check" + }, + { + "data": "Upgrade to a supported version of the operating system.", + "label": "fix" + } + ], + "impact": 0.7, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204458\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204458\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204458r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204458r603261_rule\",\n \"severity\": \"high\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-020250\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must be a vendor supported release.\",\n \"cdf:description\": \"<VulnDiscussion>An operating system release is considered \\\"supported\\\" if the vendor continues to provide security patches for the product. With an unsupported release, it will not be possible to resolve security issues discovered in the system software.\\n\\nRed Hat offers the Extended Update Support (EUS) Add-On to a Red Hat Enterprise Linux subscription, for a fee, for those customers who wish to standardize on a specific minor release for an extended period. RHEL 7.7 marks the final minor release that EUS will be available.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80349-4\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-71997\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86621\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Upgrade to a supported version of the operating system.\",\n \"fixref\": \"F-4582r462547_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4582r462547_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:169\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:16:30" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000764" + ], + "nist": [ + "IA-2" + ], + "severity": "low", + "description": "{\"VulnDiscussion\":\"If a user is assigned the GID of a group not existing on the system, and a group with the GID is subsequently created, the user may have unintended rights to any files associated with the group.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204461", + "group_title": "SRG-OS-000104-GPOS-00051", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204461r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:1117" + } + }, + "fix_id": "F-4585r88576_fix", + "fixtext_fixref": "F-4585r88576_fix", + "ident": [ + { + "text": "CCE-27503-2", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72003", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86627", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000764", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204461r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:16:30", + "idref": "xccdf_mil.disa.stig_rule_SV-204458r603261_rule", + "version": "RHEL-07-020250", + "severity": "high", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-80349-4", + "system": "http://cce.mitre.org" + }, + { + "text": "V-71997", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86621", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4582r462547_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:169" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that all Group Identifiers (GIDs) referenced in the /etc/passwd file are defined in the /etc/group file.", + "id": "V-204461", + "desc": "If a user is assigned the GID of a group not existing on the system, and a group with the GID is subsequently created, the user may have unintended rights to any files associated with the group.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:1117", + "label": "check" + }, + { + "data": "Configure the system to define all GIDs found in the \"/etc/passwd\" file by modifying the \"/etc/group\" file to add any non-existent group referenced in the \"/etc/passwd\" file, or change the GIDs referenced in the \"/etc/passwd\" file to a group that exists in \"/etc/group\".", + "label": "fix" + } + ], + "impact": 0.3, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204461\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204461\",\n \"cdf:title\": \"SRG-OS-000104-GPOS-00051\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204461r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204461r603261_rule\",\n \"severity\": \"low\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-020300\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must be configured so that all Group Identifiers (GIDs) referenced in the /etc/passwd file are defined in the /etc/group file.\",\n \"cdf:description\": \"<VulnDiscussion>If a user is assigned the GID of a group not existing on the system, and a group with the GID is subsequently created, the user may have unintended rights to any files associated with the group.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-27503-2\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-72003\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86627\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000764\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the system to define all GIDs found in the \\\"/etc/passwd\\\" file by modifying the \\\"/etc/group\\\" file to add any non-existent group referenced in the \\\"/etc/passwd\\\" file, or change the GIDs referenced in the \\\"/etc/passwd\\\" file to a group that exists in \\\"/etc/group\\\".\",\n \"fixref\": \"F-4585r88576_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4585r88576_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:1117\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:16:36" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "high", + "description": "{\"VulnDiscussion\":\"If an account other than root also has a User Identifier (UID) of \\\"0\\\", it has root authority, giving that account unrestricted access to the entire operating system. Multiple accounts with a UID of \\\"0\\\" afford an opportunity for potential intruders to guess a password for a privileged account.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204462", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204462r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:457" + } + }, + "fix_id": "F-4586r88579_fix", + "fixtext_fixref": "F-4586r88579_fix", + "ident": [ + { + "text": "CCE-27175-9", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86629", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72005", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204462r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:16:36", + "idref": "xccdf_mil.disa.stig_rule_SV-204461r603261_rule", + "version": "RHEL-07-020300", + "severity": "low", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-27503-2", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72003", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86627", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000764", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4585r88576_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:1117" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that the root account must be the only account having unrestricted access to the system.", + "id": "V-204462", + "desc": "If an account other than root also has a User Identifier (UID) of \"0\", it has root authority, giving that account unrestricted access to the entire operating system. Multiple accounts with a UID of \"0\" afford an opportunity for potential intruders to guess a password for a privileged account.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:457", + "label": "check" + }, + { + "data": "Change the UID of any account on the system, other than root, that has a UID of \"0\".\n\nIf the account is associated with system commands or applications, the UID should be changed to one greater than \"0\" but less than \"1000\". Otherwise, assign a UID of greater than \"1000\" that has not already been assigned.", + "label": "fix" + } + ], + "impact": 0.7, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204462\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204462\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204462r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204462r603261_rule\",\n \"severity\": \"high\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-020310\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must be configured so that the root account must be the only account having unrestricted access to the system.\",\n \"cdf:description\": \"<VulnDiscussion>If an account other than root also has a User Identifier (UID) of \\\"0\\\", it has root authority, giving that account unrestricted access to the entire operating system. Multiple accounts with a UID of \\\"0\\\" afford an opportunity for potential intruders to guess a password for a privileged account.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-27175-9\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86629\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72005\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Change the UID of any account on the system, other than root, that has a UID of \\\"0\\\".\\n\\nIf the account is associated with system commands or applications, the UID should be changed to one greater than \\\"0\\\" but less than \\\"1000\\\". Otherwise, assign a UID of greater than \\\"1000\\\" that has not already been assigned.\",\n \"fixref\": \"F-4586r88579_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4586r88579_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:457\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:16:41" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"If local interactive users are not assigned a valid home directory, there is no place for the storage and control of files they should own.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204466", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204466r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:447" + } + }, + "fix_id": "F-4590r88591_fix", + "fixtext_fixref": "F-4590r88591_fix", + "ident": [ + { + "text": "CCE-80434-4", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86637", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72013", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204466r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:16:41", + "idref": "xccdf_mil.disa.stig_rule_SV-204462r603261_rule", + "version": "RHEL-07-020310", + "severity": "high", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-27175-9", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86629", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72005", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4586r88579_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:457" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that all local interactive user accounts, upon creation, are assigned a home directory.", + "id": "V-204466", + "desc": "If local interactive users are not assigned a valid home directory, there is no place for the storage and control of files they should own.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:447", + "label": "check" + }, + { + "data": "Configure the operating system to assign home directories to all new local interactive users by setting the \"CREATE_HOME\" parameter in \"/etc/login.defs\" to \"yes\" as follows.\n\nCREATE_HOME yes", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204466\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204466\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204466r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204466r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-020610\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must be configured so that all local interactive user accounts, upon creation, are assigned a home directory.\",\n \"cdf:description\": \"<VulnDiscussion>If local interactive users are not assigned a valid home directory, there is no place for the storage and control of files they should own.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80434-4\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86637\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72013\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to assign home directories to all new local interactive users by setting the \\\"CREATE_HOME\\\" parameter in \\\"/etc/login.defs\\\" to \\\"yes\\\" as follows.\\n\\nCREATE_HOME yes\",\n \"fixref\": \"F-4590r88591_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4590r88591_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:447\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:16:41" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"If local interactive users are not assigned a valid home directory, there is no place for the storage and control of files they should own.\\n\\nIn addition, if a local interactive user has a home directory defined that does not exist, the user may be given access to the / directory as the current working directory upon logon. This could create a Denial of Service because the user would not be able to access their logon configuration files, and it may give them visibility to system files they normally would not be able to access.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204467", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204467r603826_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:86639" + } + }, + "fix_id": "F-4591r462550_fix", + "fixtext_fixref": "F-4591r462550_fix", + "ident": [ + { + "text": "V-72015", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86639", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204467r603826_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:16:41", + "idref": "xccdf_mil.disa.stig_rule_SV-204466r603261_rule", + "version": "RHEL-07-020610", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-80434-4", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86637", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72013", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4590r88591_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:447" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that all local interactive users have a home directory assigned and defined in the /etc/passwd file.", + "id": "V-204467", + "desc": "If local interactive users are not assigned a valid home directory, there is no place for the storage and control of files they should own.\n\nIn addition, if a local interactive user has a home directory defined that does not exist, the user may be given access to the / directory as the current working directory upon logon. This could create a Denial of Service because the user would not be able to access their logon configuration files, and it may give them visibility to system files they normally would not be able to access.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:86639", + "label": "check" + }, + { + "data": "Create home directories to all local interactive users that currently do not have a home directory assigned. Use the following commands to create the user home directory assigned in \"/etc/ passwd\":\n\nNote: The example will be for the user smithj, who has a home directory of \"/home/smithj\", a UID of \"smithj\", and a Group Identifier (GID) of \"users\" assigned in \"/etc/passwd\".\n\n# mkdir /home/smithj\n# chown smithj /home/smithj\n# chgrp users /home/smithj\n# chmod 0750 /home/smithj", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204467\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204467\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204467r603826_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204467r603826_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-020620\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must be configured so that all local interactive users have a home directory assigned and defined in the /etc/passwd file.\",\n \"cdf:description\": \"<VulnDiscussion>If local interactive users are not assigned a valid home directory, there is no place for the storage and control of files they should own.\\n\\nIn addition, if a local interactive user has a home directory defined that does not exist, the user may be given access to the / directory as the current working directory upon logon. This could create a Denial of Service because the user would not be able to access their logon configuration files, and it may give them visibility to system files they normally would not be able to access.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"V-72015\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86639\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Create home directories to all local interactive users that currently do not have a home directory assigned. Use the following commands to create the user home directory assigned in \\\"/etc/ passwd\\\":\\n\\nNote: The example will be for the user smithj, who has a home directory of \\\"/home/smithj\\\", a UID of \\\"smithj\\\", and a Group Identifier (GID) of \\\"users\\\" assigned in \\\"/etc/passwd\\\".\\n\\n# mkdir /home/smithj\\n# chown smithj /home/smithj\\n# chgrp users /home/smithj\\n# chmod 0750 /home/smithj\",\n \"fixref\": \"F-4591r462550_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4591r462550_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:86639\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:16:41" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"The \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204482", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204482r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:1186" + } + }, + "fix_id": "F-4606r88639_fix", + "fixtext_fixref": "F-4606r88639_fix", + "ident": [ + { + "text": "CCE-80240-5", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86669", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72045", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204482r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:16:41", + "idref": "xccdf_mil.disa.stig_rule_SV-204467r603826_rule", + "version": "RHEL-07-020620", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "V-72015", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86639", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4591r462550_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:86639" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must prevent files with the setuid and setgid bit set from being executed on file systems that are being imported via Network File System (NFS).", + "id": "V-204482", + "desc": "The \"nosuid\" mount option causes the system to not execute \"setuid\" and \"setgid\" files with owner privileges. This option must be used for mounting any file system not containing approved \"setuid\" and \"setguid\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:1186", + "label": "check" + }, + { + "data": "Configure the \"/etc/fstab\" to use the \"nosuid\" option on file systems that are being imported via NFS.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204482\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204482\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204482r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204482r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-021020\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must prevent files with the setuid and setgid bit set from being executed on file systems that are being imported via Network File System (NFS).\",\n \"cdf:description\": \"<VulnDiscussion>The \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80240-5\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86669\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72045\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the \\\"/etc/fstab\\\" to use the \\\"nosuid\\\" option on file systems that are being imported via NFS.\",\n \"fixref\": \"F-4606r88639_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4606r88639_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:1186\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:16:41" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"The \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204483", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204483r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:1178" + } + }, + "fix_id": "F-4607r88642_fix", + "fixtext_fixref": "F-4607r88642_fix", + "ident": [ + { + "text": "CCE-80436-9", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-87813", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-73161", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204483r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:16:41", + "idref": "xccdf_mil.disa.stig_rule_SV-204482r603261_rule", + "version": "RHEL-07-021020", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-80240-5", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86669", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72045", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4606r88639_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:1186" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must prevent binary files from being executed on file systems that are being imported via Network File System (NFS).", + "id": "V-204483", + "desc": "The \"noexec\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:1178", + "label": "check" + }, + { + "data": "Configure the \"/etc/fstab\" to use the \"noexec\" option on file systems that are being imported via NFS.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204483\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204483\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204483r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204483r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-021021\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must prevent binary files from being executed on file systems that are being imported via Network File System (NFS).\",\n \"cdf:description\": \"<VulnDiscussion>The \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80436-9\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-87813\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-73161\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the \\\"/etc/fstab\\\" to use the \\\"noexec\\\" option on file systems that are being imported via NFS.\",\n \"fixref\": \"F-4607r88642_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4607r88642_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:1178\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:16:41" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"If a world-writable directory has the sticky bit set and is not group-owned by root, sys, bin, or an application Group Identifier (GID), unauthorized users may be able to modify files created by others.\\n\\nThe only authorized public directories are those temporary directories supplied with the system or those designed to be temporary file repositories. The setting is normally reserved for directories used by the system and by users for temporary file storage, (e.g., /tmp), and for directories requiring global read/write access.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204487", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204487r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:1009" + } + }, + "fix_id": "F-36308r602634_fix", + "fixtext_fixref": "F-36308r602634_fix", + "ident": [ + { + "text": "CCE-80136-5", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86671", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72047", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204487r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:16:41", + "idref": "xccdf_mil.disa.stig_rule_SV-204483r603261_rule", + "version": "RHEL-07-021021", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-80436-9", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-87813", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-73161", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4607r88642_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:1178" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that all world-writable directories are group-owned by root, sys, bin, or an application group.", + "id": "V-204487", + "desc": "If a world-writable directory has the sticky bit set and is not group-owned by root, sys, bin, or an application Group Identifier (GID), unauthorized users may be able to modify files created by others.\n\nThe only authorized public directories are those temporary directories supplied with the system or those designed to be temporary file repositories. The setting is normally reserved for directories used by the system and by users for temporary file storage, (e.g., /tmp), and for directories requiring global read/write access.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:1009", + "label": "check" + }, + { + "data": "All directories in local partitions which are world-writable should be group-owned by root or another system account. If any world-writable directories are not group-owned by a system account, this should be investigated. Following this, the directories should be deleted or assigned to an appropriate group.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204487\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204487\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204487r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204487r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-021030\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must be configured so that all world-writable directories are group-owned by root, sys, bin, or an application group.\",\n \"cdf:description\": \"<VulnDiscussion>If a world-writable directory has the sticky bit set and is not group-owned by root, sys, bin, or an application Group Identifier (GID), unauthorized users may be able to modify files created by others.\\n\\nThe only authorized public directories are those temporary directories supplied with the system or those designed to be temporary file repositories. The setting is normally reserved for directories used by the system and by users for temporary file storage, (e.g., /tmp), and for directories requiring global read/write access.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80136-5\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86671\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72047\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"All directories in local partitions which are world-writable should be group-owned by root or another system account. If any world-writable directories are not group-owned by a system account, this should be investigated. Following this, the directories should be deleted or assigned to an appropriate group.\",\n \"fixref\": \"F-36308r602634_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-36308r602634_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:1009\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:16:41" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"If the owner of the \\\"cron.allow\\\" file is not set to root, the possibility exists for an unauthorized user to view or to edit sensitive information.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204490", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204490r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:116" + } + }, + "fix_id": "F-4614r88663_fix", + "fixtext_fixref": "F-4614r88663_fix", + "ident": [ + { + "text": "CCE-80378-3", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86677", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72053", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204490r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:16:41", + "idref": "xccdf_mil.disa.stig_rule_SV-204487r603261_rule", + "version": "RHEL-07-021030", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-80136-5", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86671", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72047", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-36308r602634_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:1009" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that the cron.allow file, if it exists, is owned by root.", + "id": "V-204490", + "desc": "If the owner of the \"cron.allow\" file is not set to root, the possibility exists for an unauthorized user to view or to edit sensitive information.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:116", + "label": "check" + }, + { + "data": "Set the owner on the \"/etc/cron.allow\" file to root with the following command:\n\n# chown root /etc/cron.allow", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204490\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204490\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204490r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204490r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-021110\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must be configured so that the cron.allow file, if it exists, is owned by root.\",\n \"cdf:description\": \"<VulnDiscussion>If the owner of the \\\"cron.allow\\\" file is not set to root, the possibility exists for an unauthorized user to view or to edit sensitive information.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80378-3\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86677\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72053\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Set the owner on the \\\"/etc/cron.allow\\\" file to root with the following command:\\n\\n# chown root /etc/cron.allow\",\n \"fixref\": \"F-4614r88663_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4614r88663_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:116\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:12" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"If the group owner of the \\\"cron.allow\\\" file is not set to root, sensitive information could be viewed or edited by unauthorized users.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204491", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204491r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:114" + } + }, + "fix_id": "F-4615r88666_fix", + "fixtext_fixref": "F-4615r88666_fix", + "ident": [ + { + "text": "CCE-80379-1", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86679", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72055", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204491r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:12", + "idref": "xccdf_mil.disa.stig_rule_SV-204490r603261_rule", + "version": "RHEL-07-021110", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-80378-3", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86677", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72053", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4614r88663_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:116" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that the cron.allow file, if it exists, is group-owned by root.", + "id": "V-204491", + "desc": "If the group owner of the \"cron.allow\" file is not set to root, sensitive information could be viewed or edited by unauthorized users.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:114", + "label": "check" + }, + { + "data": "Set the group owner on the \"/etc/cron.allow\" file to root with the following command:\n\n# chgrp root /etc/cron.allow", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204491\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204491\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204491r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204491r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-021120\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must be configured so that the cron.allow file, if it exists, is group-owned by root.\",\n \"cdf:description\": \"<VulnDiscussion>If the group owner of the \\\"cron.allow\\\" file is not set to root, sensitive information could be viewed or edited by unauthorized users.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80379-1\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86679\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72055\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Set the group owner on the \\\"/etc/cron.allow\\\" file to root with the following command:\\n\\n# chgrp root /etc/cron.allow\",\n \"fixref\": \"F-4615r88666_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4615r88666_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:114\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:12" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "low", + "description": "{\"VulnDiscussion\":\"The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204493", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204493r603840_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:1311" + } + }, + "fix_id": "F-4617r88672_fix", + "fixtext_fixref": "F-4617r88672_fix", + "ident": [ + { + "text": "CCE-80144-9", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86683", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72059", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204493r603840_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:12", + "idref": "xccdf_mil.disa.stig_rule_SV-204491r603261_rule", + "version": "RHEL-07-021120", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-80379-1", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86679", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72055", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4615r88666_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:114" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that a separate file system is used for user home directories (such as /home or an equivalent).", + "id": "V-204493", + "desc": "The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:1311", + "label": "check" + }, + { + "data": "Migrate the \"/home\" directory onto a separate file system/partition.", + "label": "fix" + } + ], + "impact": 0.3, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204493\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204493\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204493r603840_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204493r603840_rule\",\n \"severity\": \"low\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-021310\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must be configured so that a separate file system is used for user home directories (such as /home or an equivalent).\",\n \"cdf:description\": \"<VulnDiscussion>The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80144-9\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86683\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72059\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Migrate the \\\"/home\\\" directory onto a separate file system/partition.\",\n \"fixref\": \"F-4617r88672_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4617r88672_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:1311\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:12" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "low", + "description": "{\"VulnDiscussion\":\"The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204494", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204494r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:1315" + } + }, + "fix_id": "F-4618r88675_fix", + "fixtext_fixref": "F-4618r88675_fix", + "ident": [ + { + "text": "CCE-26404-4", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86685", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72061", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204494r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:12", + "idref": "xccdf_mil.disa.stig_rule_SV-204493r603840_rule", + "version": "RHEL-07-021310", + "severity": "low", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-80144-9", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86683", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72059", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4617r88672_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:1311" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must use a separate file system for /var.", + "id": "V-204494", + "desc": "The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:1315", + "label": "check" + }, + { + "data": "Migrate the \"/var\" path onto a separate file system.", + "label": "fix" + } + ], + "impact": 0.3, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204494\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204494\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204494r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204494r603261_rule\",\n \"severity\": \"low\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-021320\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must use a separate file system for /var.\",\n \"cdf:description\": \"<VulnDiscussion>The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-26404-4\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86685\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72061\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Migrate the \\\"/var\\\" path onto a separate file system.\",\n \"fixref\": \"F-4618r88675_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4618r88675_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:1315\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:12" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "low", + "description": "{\"VulnDiscussion\":\"The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204495", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204495r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:1319" + } + }, + "fix_id": "F-4619r88678_fix", + "fixtext_fixref": "F-4619r88678_fix", + "ident": [ + { + "text": "SV-86687", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72063", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204495r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:12", + "idref": "xccdf_mil.disa.stig_rule_SV-204494r603261_rule", + "version": "RHEL-07-021320", + "severity": "low", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-26404-4", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86685", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72061", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4618r88675_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:1315" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must use a separate file system for the system audit data path.", + "id": "V-204495", + "desc": "The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:1319", + "label": "check" + }, + { + "data": "Migrate the system audit data path onto a separate file system.", + "label": "fix" + } + ], + "impact": 0.3, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204495\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204495\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204495r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204495r603261_rule\",\n \"severity\": \"low\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-021330\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must use a separate file system for the system audit data path.\",\n \"cdf:description\": \"<VulnDiscussion>The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"SV-86687\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72063\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Migrate the system audit data path onto a separate file system.\",\n \"fixref\": \"F-4619r88678_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4619r88678_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:1319\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:12" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "low", + "description": "{\"VulnDiscussion\":\"The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204496", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204496r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:86689" + } + }, + "fix_id": "F-36309r602637_fix", + "fixtext_fixref": "F-36309r602637_fix", + "ident": [ + { + "text": "CCE-27173-4", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86689", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72065", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204496r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:12", + "idref": "xccdf_mil.disa.stig_rule_SV-204495r603261_rule", + "version": "RHEL-07-021330", + "severity": "low", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "SV-86687", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72063", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4619r88678_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:1319" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must use a separate file system for /tmp (or equivalent).", + "id": "V-204496", + "desc": "The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:86689", + "label": "check" + }, + { + "data": "Start the \"tmp.mount\" service with the following command:\n\n# systemctl enable tmp.mount\n\nOR\n\nEdit the \"/etc/fstab\" file and ensure the \"/tmp\" directory is defined in the fstab with a device and mount point.", + "label": "fix" + } + ], + "impact": 0.3, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204496\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204496\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204496r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204496r603261_rule\",\n \"severity\": \"low\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-021340\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must use a separate file system for /tmp (or equivalent).\",\n \"cdf:description\": \"<VulnDiscussion>The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-27173-4\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86689\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72065\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Start the \\\"tmp.mount\\\" service with the following command:\\n\\n# systemctl enable tmp.mount\\n\\nOR\\n\\nEdit the \\\"/etc/fstab\\\" file and ensure the \\\"/tmp\\\" directory is defined in the fstab with a device and mount point.\",\n \"fixref\": \"F-36309r602637_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-36309r602637_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:86689\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:12" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001199", + "CCI-000068", + "CCI-002450", + "CCI-002476" + ], + "nist": [ + "SC-28", + "AC-17 (2)", + "SC-13 b", + "SC-28 (1)" + ], + "severity": "high", + "description": "{\"VulnDiscussion\":\"Use of weak or untested encryption algorithms undermines the purposes of using encryption to protect data. The operating system must implement cryptographic modules adhering to the higher standards approved by the federal government since this provides assurance they have been tested and validated.\\n\\nSatisfies: SRG-OS-000033-GPOS-00014, SRG-OS-000185-GPOS-00079, SRG-OS-000396-GPOS-00176, SRG-OS-000405-GPOS-00184, SRG-OS-000478-GPOS-00223\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204497", + "group_title": "SRG-OS-000033-GPOS-00014", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204497r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:126" + } + }, + "fix_id": "F-36310r602640_fix", + "fixtext_fixref": "F-36310r602640_fix", + "ident": [ + { + "text": "CCE-80359-3", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86691", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72067", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001199", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000068", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002450", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002476", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204497r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:12", + "idref": "xccdf_mil.disa.stig_rule_SV-204496r603261_rule", + "version": "RHEL-07-021340", + "severity": "low", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-27173-4", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86689", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72065", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-36309r602637_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:86689" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must implement NIST FIPS-validated cryptography for the following: to provision digital signatures, to generate cryptographic hashes, and to protect data requiring data-at-rest protections in accordance with applicable federal laws, Executive Orders, directives, policies, regulations, and standards.", + "id": "V-204497", + "desc": "Use of weak or untested encryption algorithms undermines the purposes of using encryption to protect data. The operating system must implement cryptographic modules adhering to the higher standards approved by the federal government since this provides assurance they have been tested and validated.\n\nSatisfies: SRG-OS-000033-GPOS-00014, SRG-OS-000185-GPOS-00079, SRG-OS-000396-GPOS-00176, SRG-OS-000405-GPOS-00184, SRG-OS-000478-GPOS-00223", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:126", + "label": "check" + }, + { + "data": "Configure the operating system to implement DoD-approved encryption by installing the dracut-fips package.\n\nTo enable strict FIPS compliance, the fips=1 kernel option needs to be added to the kernel command line during system installation so key generation is done with FIPS-approved algorithms and continuous monitoring tests in place.\n\nConfigure the operating system to implement DoD-approved encryption by following the steps below:\n\nThe fips=1 kernel option needs to be added to the kernel command line during system installation so that key generation is done with FIPS-approved algorithms and continuous monitoring tests in place. Users should also ensure that the system has plenty of entropy during the installation process by moving the mouse around, or if no mouse is available, ensuring that many keystrokes are typed. The recommended amount of keystrokes is 256 and more. Less than 256 keystrokes may generate a non-unique key.\n\nInstall the dracut-fips package with the following command:\n\n# yum install dracut-fips\n\nRecreate the \"initramfs\" file with the following command:\n\nNote: This command will overwrite the existing \"initramfs\" file.\n\n# dracut -f\n\nModify the kernel command line of the current kernel in the \"grub.cfg\" file by adding the following option to the GRUB_CMDLINE_LINUX key in the \"/etc/default/grub\" file and then rebuild the \"grub.cfg\" file:\n\nfips=1\n\nChanges to \"/etc/default/grub\" require rebuilding the \"grub.cfg\" file as follows:\n\nOn BIOS-based machines, use the following command:\n\n# grub2-mkconfig -o /boot/grub2/grub.cfg\n\nOn UEFI-based machines, use the following command:\n\n# grub2-mkconfig -o /boot/efi/EFI/redhat/grub.cfg\n\nIf /boot or /boot/efi reside on separate partitions, the kernel parameter boot= must be added to the kernel command line. You can identify a partition by running the df /boot or df /boot/efi command:\n\n# df /boot\nFilesystem 1K-blocks Used Available Use% Mounted on\n/dev/sda1 495844 53780 416464 12% /boot\n\nTo ensure the \"boot=\" configuration option will work even if device naming changes occur between boots, identify the universally unique identifier (UUID) of the partition with the following command:\n\n# blkid /dev/sda1\n/dev/sda1: UUID=\"05c000f1-a213-759e-c7a2-f11b7424c797\" TYPE=\"ext4\"\n\nFor the example above, append the following string to the kernel command line:\n\nboot=UUID=05c000f1-a213-759e-c7a2-f11b7424c797\n\nIf the file /etc/system-fips does not exists, recreate it:\n\n# touch /etc/ system-fips\n\nReboot the system for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.7, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204497\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204497\",\n \"cdf:title\": \"SRG-OS-000033-GPOS-00014\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204497r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204497r603261_rule\",\n \"severity\": \"high\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-021350\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must implement NIST FIPS-validated cryptography for the following: to provision digital signatures, to generate cryptographic hashes, and to protect data requiring data-at-rest protections in accordance with applicable federal laws, Executive Orders, directives, policies, regulations, and standards.\",\n \"cdf:description\": \"<VulnDiscussion>Use of weak or untested encryption algorithms undermines the purposes of using encryption to protect data. The operating system must implement cryptographic modules adhering to the higher standards approved by the federal government since this provides assurance they have been tested and validated.\\n\\nSatisfies: SRG-OS-000033-GPOS-00014, SRG-OS-000185-GPOS-00079, SRG-OS-000396-GPOS-00176, SRG-OS-000405-GPOS-00184, SRG-OS-000478-GPOS-00223</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80359-3\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86691\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72067\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-001199\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000068\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002450\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002476\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to implement DoD-approved encryption by installing the dracut-fips package.\\n\\nTo enable strict FIPS compliance, the fips=1 kernel option needs to be added to the kernel command line during system installation so key generation is done with FIPS-approved algorithms and continuous monitoring tests in place.\\n\\nConfigure the operating system to implement DoD-approved encryption by following the steps below:\\n\\nThe fips=1 kernel option needs to be added to the kernel command line during system installation so that key generation is done with FIPS-approved algorithms and continuous monitoring tests in place. Users should also ensure that the system has plenty of entropy during the installation process by moving the mouse around, or if no mouse is available, ensuring that many keystrokes are typed. The recommended amount of keystrokes is 256 and more. Less than 256 keystrokes may generate a non-unique key.\\n\\nInstall the dracut-fips package with the following command:\\n\\n# yum install dracut-fips\\n\\nRecreate the \\\"initramfs\\\" file with the following command:\\n\\nNote: This command will overwrite the existing \\\"initramfs\\\" file.\\n\\n# dracut -f\\n\\nModify the kernel command line of the current kernel in the \\\"grub.cfg\\\" file by adding the following option to the GRUB_CMDLINE_LINUX key in the \\\"/etc/default/grub\\\" file and then rebuild the \\\"grub.cfg\\\" file:\\n\\nfips=1\\n\\nChanges to \\\"/etc/default/grub\\\" require rebuilding the \\\"grub.cfg\\\" file as follows:\\n\\nOn BIOS-based machines, use the following command:\\n\\n# grub2-mkconfig -o /boot/grub2/grub.cfg\\n\\nOn UEFI-based machines, use the following command:\\n\\n# grub2-mkconfig -o /boot/efi/EFI/redhat/grub.cfg\\n\\nIf /boot or /boot/efi reside on separate partitions, the kernel parameter boot=<partition of /boot or /boot/efi> must be added to the kernel command line. You can identify a partition by running the df /boot or df /boot/efi command:\\n\\n# df /boot\\nFilesystem 1K-blocks Used Available Use% Mounted on\\n/dev/sda1 495844 53780 416464 12% /boot\\n\\nTo ensure the \\\"boot=\\\" configuration option will work even if device naming changes occur between boots, identify the universally unique identifier (UUID) of the partition with the following command:\\n\\n# blkid /dev/sda1\\n/dev/sda1: UUID=\\\"05c000f1-a213-759e-c7a2-f11b7424c797\\\" TYPE=\\\"ext4\\\"\\n\\nFor the example above, append the following string to the kernel command line:\\n\\nboot=UUID=05c000f1-a213-759e-c7a2-f11b7424c797\\n\\nIf the file /etc/system-fips does not exists, recreate it:\\n\\n# touch /etc/ system-fips\\n\\nReboot the system for the changes to take effect.\",\n \"fixref\": \"F-36310r602640_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-36310r602640_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:126\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:12" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000381" + ], + "nist": [ + "CM-7 a" + ], + "severity": "high", + "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\\n\\nExamples of non-essential capabilities include, but are not limited to, games, software packages, tools, and demonstration software not related to requirements or providing a wide array of functionality not required for every mission, but which cannot be disabled.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204502", + "group_title": "SRG-OS-000095-GPOS-00049", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204502r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:1292" + } + }, + "fix_id": "F-4626r88699_fix", + "fixtext_fixref": "F-4626r88699_fix", + "ident": [ + { + "text": "CCE-27165-0", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86701", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72077", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000381", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204502r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:12", + "idref": "xccdf_mil.disa.stig_rule_SV-204497r603261_rule", + "version": "RHEL-07-021350", + "severity": "high", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-80359-3", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86691", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72067", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001199", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000068", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002450", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002476", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-36310r602640_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:126" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must not have the telnet-server package installed.", + "id": "V-204502", + "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\n\nExamples of non-essential capabilities include, but are not limited to, games, software packages, tools, and demonstration software not related to requirements or providing a wide array of functionality not required for every mission, but which cannot be disabled.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:1292", + "label": "check" + }, + { + "data": "Configure the operating system to disable non-essential capabilities by removing the telnet-server package from the system with the following command:\n\n# yum remove telnet-server", + "label": "fix" + } + ], + "impact": 0.7, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204502\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204502\",\n \"cdf:title\": \"SRG-OS-000095-GPOS-00049\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204502r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204502r603261_rule\",\n \"severity\": \"high\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-021710\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must not have the telnet-server package installed.\",\n \"cdf:description\": \"<VulnDiscussion>It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\\n\\nExamples of non-essential capabilities include, but are not limited to, games, software packages, tools, and demonstration software not related to requirements or providing a wide array of functionality not required for every mission, but which cannot be disabled.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-27165-0\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86701\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72077\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000381\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to disable non-essential capabilities by removing the telnet-server package from the system with the following command:\\n\\n# yum remove telnet-server\",\n \"fixref\": \"F-4626r88699_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4626r88699_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:1292\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:15" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000126", + "CCI-000131" + ], + "nist": [ + "AU-2 c", + "AU-3 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without establishing what type of events occurred, it would be difficult to establish, correlate, and investigate the events leading up to an outage or attack.\\n\\nAudit record content that may be necessary to satisfy this requirement includes, for example, time stamps, source and destination addresses, user/process identifiers, event descriptions, success/fail indications, filenames involved, and access control or flow control rules invoked.\\n\\nAssociating event types with detected events in the operating system audit logs provides a means of investigating an attack; recognizing resource utilization or capacity thresholds; or identifying an improperly configured operating system.\\n\\nSatisfies: SRG-OS-000038-GPOS-00016, SRG-OS-000039-GPOS-00017, SRG-OS-000042-GPOS-00021, SRG-OS-000254-GPOS-00095, SRG-OS-000255-GPOS-00096\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204503", + "group_title": "SRG-OS-000038-GPOS-00016", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204503r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:86703" + } + }, + "fix_id": "F-36311r602643_fix", + "fixtext_fixref": "F-36311r602643_fix", + "ident": [ + { + "text": "CCE-27407-6", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86703", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72079", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000126", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000131", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204503r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:15", + "idref": "xccdf_mil.disa.stig_rule_SV-204502r603261_rule", + "version": "RHEL-07-021710", + "severity": "high", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-27165-0", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86701", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72077", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000381", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4626r88699_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:1292" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that auditing is configured to produce records containing information to establish what type of events occurred, where the events occurred, the source of the events, and the outcome of the events. These audit records must also identify individual identities of group account users.", + "id": "V-204503", + "desc": "Without establishing what type of events occurred, it would be difficult to establish, correlate, and investigate the events leading up to an outage or attack.\n\nAudit record content that may be necessary to satisfy this requirement includes, for example, time stamps, source and destination addresses, user/process identifiers, event descriptions, success/fail indications, filenames involved, and access control or flow control rules invoked.\n\nAssociating event types with detected events in the operating system audit logs provides a means of investigating an attack; recognizing resource utilization or capacity thresholds; or identifying an improperly configured operating system.\n\nSatisfies: SRG-OS-000038-GPOS-00016, SRG-OS-000039-GPOS-00017, SRG-OS-000042-GPOS-00021, SRG-OS-000254-GPOS-00095, SRG-OS-000255-GPOS-00096", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:86703", + "label": "check" + }, + { + "data": "Configure the operating system to produce audit records containing information to establish when (date and time) the events occurred.\n\nEnable the auditd service with the following command:\n\n# systemctl start auditd.service", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204503\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204503\",\n \"cdf:title\": \"SRG-OS-000038-GPOS-00016\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204503r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204503r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-030000\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must be configured so that auditing is configured to produce records containing information to establish what type of events occurred, where the events occurred, the source of the events, and the outcome of the events. These audit records must also identify individual identities of group account users.\",\n \"cdf:description\": \"<VulnDiscussion>Without establishing what type of events occurred, it would be difficult to establish, correlate, and investigate the events leading up to an outage or attack.\\n\\nAudit record content that may be necessary to satisfy this requirement includes, for example, time stamps, source and destination addresses, user/process identifiers, event descriptions, success/fail indications, filenames involved, and access control or flow control rules invoked.\\n\\nAssociating event types with detected events in the operating system audit logs provides a means of investigating an attack; recognizing resource utilization or capacity thresholds; or identifying an improperly configured operating system.\\n\\nSatisfies: SRG-OS-000038-GPOS-00016, SRG-OS-000039-GPOS-00017, SRG-OS-000042-GPOS-00021, SRG-OS-000254-GPOS-00095, SRG-OS-000255-GPOS-00096</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-27407-6\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86703\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72079\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000126\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000131\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to produce audit records containing information to establish when (date and time) the events occurred.\\n\\nEnable the auditd service with the following command:\\n\\n# systemctl start auditd.service\",\n \"fixref\": \"F-36311r602643_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-36311r602643_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:86703\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:16" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000139" + ], + "nist": [ + "AU-5 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"It is critical for the appropriate personnel to be aware if a system is at risk of failing to process audit logs as required. Without this notification, the security personnel may be unaware of an impending failure of the audit capability, and system operation may be adversely affected.\\n\\nAudit processing failures include software/hardware errors, failures in the audit capturing mechanisms, and audit storage capacity being reached or exceeded.\\n\\nThis requirement applies to each audit data storage repository (i.e., distinct information system component where audit records are stored), the centralized audit storage capacity of organizations (i.e., all audit data storage repositories combined), or both.\\n\\nSatisfies: SRG-OS-000046-GPOS-00022, SRG-OS-000047-GPOS-00023\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204504", + "group_title": "SRG-OS-000046-GPOS-00022", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204504r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:776" + } + }, + "fix_id": "F-4628r462467_fix", + "fixtext_fixref": "F-4628r462467_fix", + "ident": [ + { + "text": "CCE-80381-7", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72081", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86705", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000139", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204504r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:16", + "idref": "xccdf_mil.disa.stig_rule_SV-204503r603261_rule", + "version": "RHEL-07-030000", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-27407-6", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86703", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72079", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000126", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000131", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-36311r602643_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:86703" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must shut down upon audit processing failure, unless availability is an overriding concern. If availability is a concern, the system must alert the designated staff (System Administrator [SA] and Information System Security Officer [ISSO] at a minimum) in the event of an audit processing failure.", + "id": "V-204504", + "desc": "It is critical for the appropriate personnel to be aware if a system is at risk of failing to process audit logs as required. Without this notification, the security personnel may be unaware of an impending failure of the audit capability, and system operation may be adversely affected.\n\nAudit processing failures include software/hardware errors, failures in the audit capturing mechanisms, and audit storage capacity being reached or exceeded.\n\nThis requirement applies to each audit data storage repository (i.e., distinct information system component where audit records are stored), the centralized audit storage capacity of organizations (i.e., all audit data storage repositories combined), or both.\n\nSatisfies: SRG-OS-000046-GPOS-00022, SRG-OS-000047-GPOS-00023", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:776", + "label": "check" + }, + { + "data": "Configure the operating system to shut down in the event of an audit processing failure.\n\nAdd or correct the option to shut down the operating system with the following command:\n\n# auditctl -f 2\n\nEdit the \"/etc/audit/rules.d/audit.rules\" file and add the following line:\n\n-f 2\n\nIf availability has been determined to be more important, and this decision is documented with the ISSO, configure the operating system to notify system administration staff and ISSO staff in the event of an audit processing failure with the following command:\n\n# auditctl -f 1\n\nEdit the \"/etc/audit/rules.d/audit.rules\" file and add the following line:\n\n-f 1\n\nKernel log monitoring must also be configured to properly alert designated staff.\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204504\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204504\",\n \"cdf:title\": \"SRG-OS-000046-GPOS-00022\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204504r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204504r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-030010\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must shut down upon audit processing failure, unless availability is an overriding concern. If availability is a concern, the system must alert the designated staff (System Administrator [SA] and Information System Security Officer [ISSO] at a minimum) in the event of an audit processing failure.\",\n \"cdf:description\": \"<VulnDiscussion>It is critical for the appropriate personnel to be aware if a system is at risk of failing to process audit logs as required. Without this notification, the security personnel may be unaware of an impending failure of the audit capability, and system operation may be adversely affected.\\n\\nAudit processing failures include software/hardware errors, failures in the audit capturing mechanisms, and audit storage capacity being reached or exceeded.\\n\\nThis requirement applies to each audit data storage repository (i.e., distinct information system component where audit records are stored), the centralized audit storage capacity of organizations (i.e., all audit data storage repositories combined), or both.\\n\\nSatisfies: SRG-OS-000046-GPOS-00022, SRG-OS-000047-GPOS-00023</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80381-7\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-72081\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86705\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000139\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to shut down in the event of an audit processing failure.\\n\\nAdd or correct the option to shut down the operating system with the following command:\\n\\n# auditctl -f 2\\n\\nEdit the \\\"/etc/audit/rules.d/audit.rules\\\" file and add the following line:\\n\\n-f 2\\n\\nIf availability has been determined to be more important, and this decision is documented with the ISSO, configure the operating system to notify system administration staff and ISSO staff in the event of an audit processing failure with the following command:\\n\\n# auditctl -f 1\\n\\nEdit the \\\"/etc/audit/rules.d/audit.rules\\\" file and add the following line:\\n\\n-f 1\\n\\nKernel log monitoring must also be configured to properly alert designated staff.\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-4628r462467_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4628r462467_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:776\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:17" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001851" + ], + "nist": [ + "AU-4 (1)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\\n\\nOff-loading is a common process in information systems with limited audit storage capacity.\\n\\nOne method of off-loading audit logs in Red Hat Enterprise Linux is with the use of the audisp-remote dameon. Without the configuration of the \\\"au-remote\\\" plugin, the audisp-remote daemon will not off load the logs from the system being audited.\\n\\nSatisfies: SRG-OS-000342-GPOS-00133, SRG-OS-000479-GPOS-00224\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204506", + "group_title": "SRG-OS-000342-GPOS-00133", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204506r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:95729" + } + }, + "fix_id": "F-4630r462470_fix", + "fixtext_fixref": "F-4630r462470_fix", + "ident": [ + { + "text": "SV-95729", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-81017", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001851", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204506r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:17", + "idref": "xccdf_mil.disa.stig_rule_SV-204504r603261_rule", + "version": "RHEL-07-030010", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-80381-7", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72081", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86705", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000139", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4628r462467_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:776" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured to off-load audit logs onto a different system or storage media from the system being audited.", + "id": "V-204506", + "desc": "Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\n\nOff-loading is a common process in information systems with limited audit storage capacity.\n\nOne method of off-loading audit logs in Red Hat Enterprise Linux is with the use of the audisp-remote dameon. Without the configuration of the \"au-remote\" plugin, the audisp-remote daemon will not off load the logs from the system being audited.\n\nSatisfies: SRG-OS-000342-GPOS-00133, SRG-OS-000479-GPOS-00224", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:95729", + "label": "check" + }, + { + "data": "Edit the /etc/audisp/plugins.d/au-remote.conf file and add or update the following values:\n\ndirection = out\npath = /sbin/audisp-remote\ntype = always\n\nThe audit daemon must be restarted for changes to take effect:\n\n# service auditd restart", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204506\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204506\",\n \"cdf:title\": \"SRG-OS-000342-GPOS-00133\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204506r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204506r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-030201\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must be configured to off-load audit logs onto a different system or storage media from the system being audited.\",\n \"cdf:description\": \"<VulnDiscussion>Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\\n\\nOff-loading is a common process in information systems with limited audit storage capacity.\\n\\nOne method of off-loading audit logs in Red Hat Enterprise Linux is with the use of the audisp-remote dameon. Without the configuration of the \\\"au-remote\\\" plugin, the audisp-remote daemon will not off load the logs from the system being audited.\\n\\nSatisfies: SRG-OS-000342-GPOS-00133, SRG-OS-000479-GPOS-00224</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"SV-95729\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-81017\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-001851\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Edit the /etc/audisp/plugins.d/au-remote.conf file and add or update the following values:\\n\\ndirection = out\\npath = /sbin/audisp-remote\\ntype = always\\n\\nThe audit daemon must be restarted for changes to take effect:\\n\\n# service auditd restart\",\n \"fixref\": \"F-4630r462470_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4630r462470_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:95729\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:17" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001851" + ], + "nist": [ + "AU-4 (1)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\\n\\nOff-loading is a common process in information systems with limited audit storage capacity.\\n\\nOne method of off-loading audit logs in Red Hat Enterprise Linux is with the use of the audisp-remote dameon. When the remote buffer is full, audit logs will not be collected and sent to the central log server.\\n\\nSatisfies: SRG-OS-000342-GPOS-00133, SRG-OS-000479-GPOS-00224\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204507", + "group_title": "SRG-OS-000342-GPOS-00133", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204507r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:95731" + } + }, + "fix_id": "F-36312r602646_fix", + "fixtext_fixref": "F-36312r602646_fix", + "ident": [ + { + "text": "V-81019", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-95731", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001851", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204507r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:17", + "idref": "xccdf_mil.disa.stig_rule_SV-204506r603261_rule", + "version": "RHEL-07-030201", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "SV-95729", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-81017", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001851", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4630r462470_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:95729" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must take appropriate action when the remote logging buffer is full.", + "id": "V-204507", + "desc": "Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\n\nOff-loading is a common process in information systems with limited audit storage capacity.\n\nOne method of off-loading audit logs in Red Hat Enterprise Linux is with the use of the audisp-remote dameon. When the remote buffer is full, audit logs will not be collected and sent to the central log server.\n\nSatisfies: SRG-OS-000342-GPOS-00133, SRG-OS-000479-GPOS-00224", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:95731", + "label": "check" + }, + { + "data": "Edit the /etc/audisp/audispd.conf file and add or update the \"overflow_action\" option:\n\noverflow_action = syslog\n\nThe audit daemon must be restarted for changes to take effect:\n\n# service auditd restart", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204507\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204507\",\n \"cdf:title\": \"SRG-OS-000342-GPOS-00133\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204507r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204507r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-030210\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must take appropriate action when the remote logging buffer is full.\",\n \"cdf:description\": \"<VulnDiscussion>Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\\n\\nOff-loading is a common process in information systems with limited audit storage capacity.\\n\\nOne method of off-loading audit logs in Red Hat Enterprise Linux is with the use of the audisp-remote dameon. When the remote buffer is full, audit logs will not be collected and sent to the central log server.\\n\\nSatisfies: SRG-OS-000342-GPOS-00133, SRG-OS-000479-GPOS-00224</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"V-81019\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-95731\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-001851\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Edit the /etc/audisp/audispd.conf file and add or update the \\\"overflow_action\\\" option:\\n\\noverflow_action = syslog\\n\\nThe audit daemon must be restarted for changes to take effect:\\n\\n# service auditd restart\",\n \"fixref\": \"F-36312r602646_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-36312r602646_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:95731\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:17" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001851" + ], + "nist": [ + "AU-4 (1)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\\n\\nOff-loading is a common process in information systems with limited audit storage capacity.\\n\\nOne method of off-loading audit logs in Red Hat Enterprise Linux is with the use of the audisp-remote dameon. When audit logs are not labeled before they are sent to a central log server, the audit data will not be able to be analyzed and tied back to the correct system.\\n\\nSatisfies: SRG-OS-000342-GPOS-00133, SRG-OS-000479-GPOS-00224\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204508", + "group_title": "SRG-OS-000342-GPOS-00133", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204508r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:95733" + } + }, + "fix_id": "F-36313r602649_fix", + "fixtext_fixref": "F-36313r602649_fix", + "ident": [ + { + "text": "SV-95733", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-81021", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001851", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204508r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:17", + "idref": "xccdf_mil.disa.stig_rule_SV-204507r603261_rule", + "version": "RHEL-07-030210", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "V-81019", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-95731", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001851", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-36312r602646_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:95731" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must label all off-loaded audit logs before sending them to the central log server.", + "id": "V-204508", + "desc": "Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\n\nOff-loading is a common process in information systems with limited audit storage capacity.\n\nOne method of off-loading audit logs in Red Hat Enterprise Linux is with the use of the audisp-remote dameon. When audit logs are not labeled before they are sent to a central log server, the audit data will not be able to be analyzed and tied back to the correct system.\n\nSatisfies: SRG-OS-000342-GPOS-00133, SRG-OS-000479-GPOS-00224", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:95733", + "label": "check" + }, + { + "data": "Edit the /etc/audisp/audispd.conf file and add or update the \"name_format\" option:\n\nname_format = hostname\n\nThe audit daemon must be restarted for changes to take effect:\n\n# service auditd restart", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204508\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204508\",\n \"cdf:title\": \"SRG-OS-000342-GPOS-00133\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204508r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204508r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-030211\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must label all off-loaded audit logs before sending them to the central log server.\",\n \"cdf:description\": \"<VulnDiscussion>Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\\n\\nOff-loading is a common process in information systems with limited audit storage capacity.\\n\\nOne method of off-loading audit logs in Red Hat Enterprise Linux is with the use of the audisp-remote dameon. When audit logs are not labeled before they are sent to a central log server, the audit data will not be able to be analyzed and tied back to the correct system.\\n\\nSatisfies: SRG-OS-000342-GPOS-00133, SRG-OS-000479-GPOS-00224</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"SV-95733\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-81021\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-001851\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Edit the /etc/audisp/audispd.conf file and add or update the \\\"name_format\\\" option:\\n\\nname_format = hostname\\n\\nThe audit daemon must be restarted for changes to take effect:\\n\\n# service auditd restart\",\n \"fixref\": \"F-36313r602649_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-36313r602649_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:95733\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:17" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001851" + ], + "nist": [ + "AU-4 (1)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\\n\\nOff-loading is a common process in information systems with limited audit storage capacity.\\n\\nSatisfies: SRG-OS-000342-GPOS-00133, SRG-OS-000479-GPOS-00224\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204509", + "group_title": "SRG-OS-000342-GPOS-00133", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204509r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:86707" + } + }, + "fix_id": "F-4633r88720_fix", + "fixtext_fixref": "F-4633r88720_fix", + "ident": [ + { + "text": "SV-86707", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72083", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001851", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204509r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:17", + "idref": "xccdf_mil.disa.stig_rule_SV-204508r603261_rule", + "version": "RHEL-07-030211", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "SV-95733", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-81021", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001851", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-36313r602649_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:95733" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must off-load audit records onto a different system or media from the system being audited.", + "id": "V-204509", + "desc": "Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\n\nOff-loading is a common process in information systems with limited audit storage capacity.\n\nSatisfies: SRG-OS-000342-GPOS-00133, SRG-OS-000479-GPOS-00224", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:86707", + "label": "check" + }, + { + "data": "Configure the operating system to off-load audit records onto a different system or media from the system being audited.\n\nSet the remote server option in \"/etc/audisp/audisp-remote.conf\" with the IP address of the log aggregation server.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204509\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204509\",\n \"cdf:title\": \"SRG-OS-000342-GPOS-00133\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204509r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204509r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-030300\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must off-load audit records onto a different system or media from the system being audited.\",\n \"cdf:description\": \"<VulnDiscussion>Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\\n\\nOff-loading is a common process in information systems with limited audit storage capacity.\\n\\nSatisfies: SRG-OS-000342-GPOS-00133, SRG-OS-000479-GPOS-00224</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"SV-86707\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72083\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-001851\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to off-load audit records onto a different system or media from the system being audited.\\n\\nSet the remote server option in \\\"/etc/audisp/audisp-remote.conf\\\" with the IP address of the log aggregation server.\",\n \"fixref\": \"F-4633r88720_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4633r88720_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:86707\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-04-29T14:18:17" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001851" + ], + "nist": [ + "AU-4 (1)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\\n\\nOff-loading is a common process in information systems with limited audit storage capacity.\\n\\nSatisfies: SRG-OS-000342-GPOS-00133, SRG-OS-000479-GPOS-00224\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204510", + "group_title": "SRG-OS-000342-GPOS-00133", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204510r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:86709" + } + }, + "fix_id": "F-4634r88723_fix", + "fixtext_fixref": "F-4634r88723_fix", + "ident": [ + { + "text": "SV-86709", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72085", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001851", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204510r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:17", + "idref": "xccdf_mil.disa.stig_rule_SV-204509r603261_rule", + "version": "RHEL-07-030300", + "severity": "medium", + "weight": "10.0", + "cdf:result": "fail", + "cdf:ident": [ + { + "text": "SV-86707", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72083", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001851", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4633r88720_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:86707" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must encrypt the transfer of audit records off-loaded onto a different system or media from the system being audited.", + "id": "V-204510", + "desc": "Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\n\nOff-loading is a common process in information systems with limited audit storage capacity.\n\nSatisfies: SRG-OS-000342-GPOS-00133, SRG-OS-000479-GPOS-00224", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:86709", + "label": "check" + }, + { + "data": "Configure the operating system to encrypt the transfer of off-loaded audit records onto a different system or media from the system being audited.\n\nUncomment the \"enable_krb5\" option in \"/etc/audisp/audisp-remote.conf\" and set it with the following line:\n\nenable_krb5 = yes", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204510\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204510\",\n \"cdf:title\": \"SRG-OS-000342-GPOS-00133\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204510r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204510r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-030310\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must encrypt the transfer of audit records off-loaded onto a different system or media from the system being audited.\",\n \"cdf:description\": \"<VulnDiscussion>Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\\n\\nOff-loading is a common process in information systems with limited audit storage capacity.\\n\\nSatisfies: SRG-OS-000342-GPOS-00133, SRG-OS-000479-GPOS-00224</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"SV-86709\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72085\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-001851\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to encrypt the transfer of off-loaded audit records onto a different system or media from the system being audited.\\n\\nUncomment the \\\"enable_krb5\\\" option in \\\"/etc/audisp/audisp-remote.conf\\\" and set it with the following line:\\n\\nenable_krb5 = yes\",\n \"fixref\": \"F-4634r88723_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4634r88723_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:86709\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:17" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001851" + ], + "nist": [ + "AU-4 (1)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Taking appropriate action in case of a filled audit storage volume will minimize the possibility of losing audit records.\\nOne method of off-loading audit logs in Red Hat Enterprise Linux is with the use of the audisp-remote dameon.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204511", + "group_title": "SRG-OS-000342-GPOS-00133", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204511r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:86711" + } + }, + "fix_id": "F-36314r602652_fix", + "fixtext_fixref": "F-36314r602652_fix", + "ident": [ + { + "text": "V-72087", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86711", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001851", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204511r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:17", + "idref": "xccdf_mil.disa.stig_rule_SV-204510r603261_rule", + "version": "RHEL-07-030310", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "SV-86709", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72085", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001851", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4634r88723_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:86709" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that the audit system takes appropriate action when the audit storage volume is full.", + "id": "V-204511", + "desc": "Taking appropriate action in case of a filled audit storage volume will minimize the possibility of losing audit records.\nOne method of off-loading audit logs in Red Hat Enterprise Linux is with the use of the audisp-remote dameon.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:86711", + "label": "check" + }, + { + "data": "Configure the action the operating system takes if the disk the audit records are written to becomes full.\n\nUncomment or edit the \"disk_full_action\" option in \"/etc/audisp/audisp-remote.conf\" and set it to \"syslog\", \"single\", or \"halt\", such as the following line:\n\ndisk_full_action = single", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204511\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204511\",\n \"cdf:title\": \"SRG-OS-000342-GPOS-00133\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204511r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204511r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-030320\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must be configured so that the audit system takes appropriate action when the audit storage volume is full.\",\n \"cdf:description\": \"<VulnDiscussion>Taking appropriate action in case of a filled audit storage volume will minimize the possibility of losing audit records.\\nOne method of off-loading audit logs in Red Hat Enterprise Linux is with the use of the audisp-remote dameon.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"V-72087\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86711\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-001851\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the action the operating system takes if the disk the audit records are written to becomes full.\\n\\nUncomment or edit the \\\"disk_full_action\\\" option in \\\"/etc/audisp/audisp-remote.conf\\\" and set it to \\\"syslog\\\", \\\"single\\\", or \\\"halt\\\", such as the following line:\\n\\ndisk_full_action = single\",\n \"fixref\": \"F-36314r602652_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-36314r602652_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:86711\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:17" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001851" + ], + "nist": [ + "AU-4 (1)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Taking appropriate action when there is an error sending audit records to a remote system will minimize the possibility of losing audit records.\\nOne method of off-loading audit logs in Red Hat Enterprise Linux is with the use of the audisp-remote dameon.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204512", + "group_title": "SRG-OS-000342-GPOS-00133", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204512r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:87815" + } + }, + "fix_id": "F-36315r602655_fix", + "fixtext_fixref": "F-36315r602655_fix", + "ident": [ + { + "text": "SV-87815", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-73163", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001851", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204512r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:17", + "idref": "xccdf_mil.disa.stig_rule_SV-204511r603261_rule", + "version": "RHEL-07-030320", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "V-72087", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86711", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001851", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-36314r602652_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:86711" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that the audit system takes appropriate action when there is an error sending audit records to a remote system.", + "id": "V-204512", + "desc": "Taking appropriate action when there is an error sending audit records to a remote system will minimize the possibility of losing audit records.\nOne method of off-loading audit logs in Red Hat Enterprise Linux is with the use of the audisp-remote dameon.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:87815", + "label": "check" + }, + { + "data": "Configure the action the operating system takes if there is an error sending audit records to a remote system.\n\nUncomment the \"network_failure_action\" option in \"/etc/audisp/audisp-remote.conf\" and set it to \"syslog\", \"single\", or \"halt\".\n\nnetwork_failure_action = syslog", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204512\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204512\",\n \"cdf:title\": \"SRG-OS-000342-GPOS-00133\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204512r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204512r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-030321\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must be configured so that the audit system takes appropriate action when there is an error sending audit records to a remote system.\",\n \"cdf:description\": \"<VulnDiscussion>Taking appropriate action when there is an error sending audit records to a remote system will minimize the possibility of losing audit records.\\nOne method of off-loading audit logs in Red Hat Enterprise Linux is with the use of the audisp-remote dameon.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"SV-87815\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-73163\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-001851\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the action the operating system takes if there is an error sending audit records to a remote system.\\n\\nUncomment the \\\"network_failure_action\\\" option in \\\"/etc/audisp/audisp-remote.conf\\\" and set it to \\\"syslog\\\", \\\"single\\\", or \\\"halt\\\".\\n\\nnetwork_failure_action = syslog\",\n \"fixref\": \"F-36315r602655_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-36315r602655_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:87815\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:17" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001855" + ], + "nist": [ + "AU-5 (1)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"If security personnel are not notified immediately when the threshold for the repository maximum audit record storage capacity is reached, they are unable to expand the audit record storage capacity before records are lost.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204514", + "group_title": "SRG-OS-000343-GPOS-00134", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204514r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:86715" + } + }, + "fix_id": "F-4638r88735_fix", + "fixtext_fixref": "F-4638r88735_fix", + "ident": [ + { + "text": "SV-86715", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72091", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001855", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204514r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:17", + "idref": "xccdf_mil.disa.stig_rule_SV-204512r603261_rule", + "version": "RHEL-07-030321", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "SV-87815", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-73163", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001851", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-36315r602655_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:87815" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must immediately notify the System Administrator (SA) and Information System Security Officer (ISSO) (at a minimum) via email when the threshold for the repository maximum audit record storage capacity is reached.", + "id": "V-204514", + "desc": "If security personnel are not notified immediately when the threshold for the repository maximum audit record storage capacity is reached, they are unable to expand the audit record storage capacity before records are lost.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:86715", + "label": "check" + }, + { + "data": "Configure the operating system to immediately notify the SA and ISSO (at a minimum) when the threshold for the repository maximum audit record storage capacity is reached.\n\nUncomment or edit the \"space_left_action\" keyword in \"/etc/audit/auditd.conf\" and set it to \"email\".\n\nspace_left_action = email", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204514\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204514\",\n \"cdf:title\": \"SRG-OS-000343-GPOS-00134\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204514r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204514r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-030340\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must immediately notify the System Administrator (SA) and Information System Security Officer (ISSO) (at a minimum) via email when the threshold for the repository maximum audit record storage capacity is reached.\",\n \"cdf:description\": \"<VulnDiscussion>If security personnel are not notified immediately when the threshold for the repository maximum audit record storage capacity is reached, they are unable to expand the audit record storage capacity before records are lost.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"SV-86715\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72091\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-001855\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to immediately notify the SA and ISSO (at a minimum) when the threshold for the repository maximum audit record storage capacity is reached.\\n\\nUncomment or edit the \\\"space_left_action\\\" keyword in \\\"/etc/audit/auditd.conf\\\" and set it to \\\"email\\\".\\n\\nspace_left_action = email\",\n \"fixref\": \"F-4638r88735_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4638r88735_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:86715\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:17" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001855" + ], + "nist": [ + "AU-5 (1)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"If security personnel are not notified immediately when the threshold for the repository maximum audit record storage capacity is reached, they are unable to expand the audit record storage capacity before records are lost.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204515", + "group_title": "SRG-OS-000343-GPOS-00134", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204515r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-export": { + "value-id": "xccdf_mil.disa.stig_value_var_auditd_action_mail_acct", + "export-name": "oval:mil.disa.stig.rhel7:var:3821" + }, + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:885" + } + }, + "fix_id": "F-4639r88738_fix", + "fixtext_fixref": "F-4639r88738_fix", + "ident": [ + { + "text": "CCE-27394-6", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86717", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72093", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001855", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204515r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:17", + "idref": "xccdf_mil.disa.stig_rule_SV-204514r603261_rule", + "version": "RHEL-07-030340", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "SV-86715", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72091", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001855", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4638r88735_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:86715" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must immediately notify the System Administrator (SA) and Information System Security Officer (ISSO) (at a minimum) when the threshold for the repository maximum audit record storage capacity is reached.", + "id": "V-204515", + "desc": "If security personnel are not notified immediately when the threshold for the repository maximum audit record storage capacity is reached, they are unable to expand the audit record storage capacity before records are lost.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:885", + "label": "check" + }, + { + "data": "Configure the operating system to immediately notify the SA and ISSO (at a minimum) when the threshold for the repository maximum audit record storage capacity is reached.\n\nUncomment or edit the \"action_mail_acct\" keyword in \"/etc/audit/auditd.conf\" and set it to root and any other accounts associated with security personnel.\n\naction_mail_acct = root", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204515\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204515\",\n \"cdf:title\": \"SRG-OS-000343-GPOS-00134\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204515r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204515r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-030350\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must immediately notify the System Administrator (SA) and Information System Security Officer (ISSO) (at a minimum) when the threshold for the repository maximum audit record storage capacity is reached.\",\n \"cdf:description\": \"<VulnDiscussion>If security personnel are not notified immediately when the threshold for the repository maximum audit record storage capacity is reached, they are unable to expand the audit record storage capacity before records are lost.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-27394-6\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86717\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72093\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-001855\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to immediately notify the SA and ISSO (at a minimum) when the threshold for the repository maximum audit record storage capacity is reached.\\n\\nUncomment or edit the \\\"action_mail_acct\\\" keyword in \\\"/etc/audit/auditd.conf\\\" and set it to root and any other accounts associated with security personnel.\\n\\naction_mail_acct = root\",\n \"fixref\": \"F-4639r88738_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4639r88738_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-export\": {\n \"value-id\": \"xccdf_mil.disa.stig_value_var_auditd_action_mail_acct\",\n \"export-name\": \"oval:mil.disa.stig.rhel7:var:3821\"\n },\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:885\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:17" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-002234" + ], + "nist": [ + "AC-6 (9)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Misuse of privileged functions, either intentionally or unintentionally by authorized users, or by unauthorized external entities that have compromised information system accounts, is a serious and ongoing concern and can have significant adverse impacts on organizations. Auditing the use of privileged functions is one way to detect such misuse and identify the risk from insider threats and the advanced persistent threat.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204516", + "group_title": "SRG-OS-000327-GPOS-00127", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204516r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:710" + } + }, + "fix_id": "F-4640r88741_fix", + "fixtext_fixref": "F-4640r88741_fix", + "ident": [ + { + "text": "SV-86719", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72095", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-002234", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204516r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:17", + "idref": "xccdf_mil.disa.stig_rule_SV-204515r603261_rule", + "version": "RHEL-07-030350", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-27394-6", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86717", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72093", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001855", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4639r88738_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-export": { + "value-id": "xccdf_mil.disa.stig_value_var_auditd_action_mail_acct", + "export-name": "oval:mil.disa.stig.rhel7:var:3821" + }, + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:885" + } + } + }, + "value": { + "Id": "xccdf_mil.disa.stig_value_var_auditd_action_mail_acct", + "id": "xccdf_mil.disa.stig_value_var_auditd_action_mail_acct", + "cdf:title": "Account for auditd to send email when actions occurs", + "cdf:description": "The setting for action_mail_acct in /etc/audit/auditd.conf", + "cdf:value": [ + "root", + { + "text": "root", + "selector": "root" + }, + { + "text": "admin", + "selector": "admin" + } + ] + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all executions of privileged functions.", + "id": "V-204516", + "desc": "Misuse of privileged functions, either intentionally or unintentionally by authorized users, or by unauthorized external entities that have compromised information system accounts, is a serious and ongoing concern and can have significant adverse impacts on organizations. Auditing the use of privileged functions is one way to detect such misuse and identify the risk from insider threats and the advanced persistent threat.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:710", + "label": "check" + }, + { + "data": "Configure the operating system to audit the execution of privileged functions.\n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S execve -C uid!=euid -F euid=0 -k setuid\n-a always,exit -F arch=b64 -S execve -C uid!=euid -F euid=0 -k setuid\n-a always,exit -F arch=b32 -S execve -C gid!=egid -F egid=0 -k setgid\n-a always,exit -F arch=b64 -S execve -C gid!=egid -F egid=0 -k setgid\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204516\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204516\",\n \"cdf:title\": \"SRG-OS-000327-GPOS-00127\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204516r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204516r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-030360\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must audit all executions of privileged functions.\",\n \"cdf:description\": \"<VulnDiscussion>Misuse of privileged functions, either intentionally or unintentionally by authorized users, or by unauthorized external entities that have compromised information system accounts, is a serious and ongoing concern and can have significant adverse impacts on organizations. Auditing the use of privileged functions is one way to detect such misuse and identify the risk from insider threats and the advanced persistent threat.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"SV-86719\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72095\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-002234\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to audit the execution of privileged functions.\\n\\nAdd or update the following rules in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F arch=b32 -S execve -C uid!=euid -F euid=0 -k setuid\\n-a always,exit -F arch=b64 -S execve -C uid!=euid -F euid=0 -k setuid\\n-a always,exit -F arch=b32 -S execve -C gid!=egid -F egid=0 -k setgid\\n-a always,exit -F arch=b64 -S execve -C gid!=egid -F egid=0 -k setgid\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-4640r88741_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4640r88741_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:710\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:17" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000172", + "CCI-000126" + ], + "nist": [ + "AU-12 c", + "AU-2 c" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000474-GPOS-00219\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204517", + "group_title": "SRG-OS-000064-GPOS-00033", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204517r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:552" + } + }, + "fix_id": "F-4641r462559_fix", + "fixtext_fixref": "F-4641r462559_fix", + "ident": [ + { + "text": "CCE-27364-9", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86721", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72097", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000126", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204517r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:17", + "idref": "xccdf_mil.disa.stig_rule_SV-204516r603261_rule", + "version": "RHEL-07-030360", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "SV-86719", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72095", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-002234", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4640r88741_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:710" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the chown syscall.", + "id": "V-204517", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000474-GPOS-00219", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:552", + "label": "check" + }, + { + "data": "Add or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S chown -F auid>=1000 -F auid!=unset -k perm_mod\n\n-a always,exit -F arch=b64 -S chown -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204517\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204517\",\n \"cdf:title\": \"SRG-OS-000064-GPOS-00033\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204517r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204517r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-030370\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must audit all uses of the chown syscall.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000474-GPOS-00219</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-27364-9\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86721\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72097\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000126\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Add or update the following rule in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F arch=b32 -S chown -F auid>=1000 -F auid!=unset -k perm_mod\\n\\n-a always,exit -F arch=b64 -S chown -F auid>=1000 -F auid!=unset -k perm_mod\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-4641r462559_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4641r462559_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:552\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:18" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000126", + "CCI-000172" + ], + "nist": [ + "AU-2 c", + "AU-12 c" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000474-GPOS-00219\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204518", + "group_title": "SRG-OS-000064-GPOS-00033", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204518r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:567" + } + }, + "fix_id": "F-4642r462562_fix", + "fixtext_fixref": "F-4642r462562_fix", + "ident": [ + { + "text": "CCE-27356-5", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86723", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72099", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000126", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204518r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:18", + "idref": "xccdf_mil.disa.stig_rule_SV-204517r603261_rule", + "version": "RHEL-07-030370", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-27364-9", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86721", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72097", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000126", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4641r462559_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:552" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the fchown syscall.", + "id": "V-204518", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000474-GPOS-00219", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:567", + "label": "check" + }, + { + "data": "Add or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S fchown -F auid>=1000 -F auid!=unset -k perm_mod\n\n-a always,exit -F arch=b64 -S fchown -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204518\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204518\",\n \"cdf:title\": \"SRG-OS-000064-GPOS-00033\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204518r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204518r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-030380\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must audit all uses of the fchown syscall.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000474-GPOS-00219</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-27356-5\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86723\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72099\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000126\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Add or update the following rules in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F arch=b32 -S fchown -F auid>=1000 -F auid!=unset -k perm_mod\\n\\n-a always,exit -F arch=b64 -S fchown -F auid>=1000 -F auid!=unset -k perm_mod\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-4642r462562_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4642r462562_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:567\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:18" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000126", + "CCI-000172" + ], + "nist": [ + "AU-2 c", + "AU-12 c" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000474-GPOS-00219\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204519", + "group_title": "SRG-OS-000064-GPOS-00033", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204519r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:587" + } + }, + "fix_id": "F-4643r462565_fix", + "fixtext_fixref": "F-4643r462565_fix", + "ident": [ + { + "text": "CCE-27083-5", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86725", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72101", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000126", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204519r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:18", + "idref": "xccdf_mil.disa.stig_rule_SV-204518r603261_rule", + "version": "RHEL-07-030380", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-27356-5", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86723", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72099", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000126", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4642r462562_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:567" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the lchown syscall.", + "id": "V-204519", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000474-GPOS-00219", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:587", + "label": "check" + }, + { + "data": "Add or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S lchown -F auid>=1000 -F auid!=unset -k perm_mod\n\n-a always,exit -F arch=b64 -S lchown -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204519\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204519\",\n \"cdf:title\": \"SRG-OS-000064-GPOS-00033\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204519r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204519r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-030390\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must audit all uses of the lchown syscall.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000474-GPOS-00219</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-27083-5\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86725\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72101\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000126\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Add or update the following rules in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F arch=b32 -S lchown -F auid>=1000 -F auid!=unset -k perm_mod\\n\\n-a always,exit -F arch=b64 -S lchown -F auid>=1000 -F auid!=unset -k perm_mod\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-4643r462565_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4643r462565_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:587\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:18" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000126", + "CCI-000172" + ], + "nist": [ + "AU-2 c", + "AU-12 c" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000474-GPOS-00219\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204520", + "group_title": "SRG-OS-000064-GPOS-00033", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204520r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:572" + } + }, + "fix_id": "F-4644r462568_fix", + "fixtext_fixref": "F-4644r462568_fix", + "ident": [ + { + "text": "CCE-27387-0", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86727", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72103", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000126", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204520r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:18", + "idref": "xccdf_mil.disa.stig_rule_SV-204519r603261_rule", + "version": "RHEL-07-030390", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-27083-5", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86725", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72101", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000126", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4643r462565_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:587" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the fchownat syscall.", + "id": "V-204520", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000474-GPOS-00219", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:572", + "label": "check" + }, + { + "data": "Add or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S fchownat -F auid>=1000 -F auid!=unset -k perm_mod\n\n-a always,exit -F arch=b64 -S fchownat -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204520\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204520\",\n \"cdf:title\": \"SRG-OS-000064-GPOS-00033\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204520r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204520r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-030400\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must audit all uses of the fchownat syscall.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000474-GPOS-00219</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-27387-0\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86727\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72103\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000126\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Add or update the following rules in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F arch=b32 -S fchownat -F auid>=1000 -F auid!=unset -k perm_mod\\n\\n-a always,exit -F arch=b64 -S fchownat -F auid>=1000 -F auid!=unset -k perm_mod\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-4644r462568_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4644r462568_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:572\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:18" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000172" + ], + "nist": [ + "AU-12 c" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204521", + "group_title": "SRG-OS-000458-GPOS-00203", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204521r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:546" + } + }, + "fix_id": "F-4645r462571_fix", + "fixtext_fixref": "F-4645r462571_fix", + "ident": [ + { + "text": "CCE-27339-1", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86729", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72105", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204521r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:18", + "idref": "xccdf_mil.disa.stig_rule_SV-204520r603261_rule", + "version": "RHEL-07-030400", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-27387-0", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86727", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72103", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000126", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4644r462568_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:572" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the chmod syscall.", + "id": "V-204521", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:546", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"chmod\" syscall occur.\n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S chmod -F auid>=1000 -F auid!=unset -k perm_mod\n\n-a always,exit -F arch=b64 -S chmod -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204521\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204521\",\n \"cdf:title\": \"SRG-OS-000458-GPOS-00203\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204521r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204521r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-030410\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must audit all uses of the chmod syscall.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-27339-1\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86729\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72105\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"chmod\\\" syscall occur.\\n\\nAdd or update the following rules in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F arch=b32 -S chmod -F auid>=1000 -F auid!=unset -k perm_mod\\n\\n-a always,exit -F arch=b64 -S chmod -F auid>=1000 -F auid!=unset -k perm_mod\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-4645r462571_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4645r462571_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:546\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:18" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000172" + ], + "nist": [ + "AU-12 c" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204522", + "group_title": "SRG-OS-000458-GPOS-00203", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204522r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:557" + } + }, + "fix_id": "F-4646r462574_fix", + "fixtext_fixref": "F-4646r462574_fix", + "ident": [ + { + "text": "CCE-27393-8", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86731", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72107", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204522r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:18", + "idref": "xccdf_mil.disa.stig_rule_SV-204521r603261_rule", + "version": "RHEL-07-030410", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-27339-1", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86729", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72105", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4645r462571_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:546" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the fchmod syscall.", + "id": "V-204522", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:557", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"fchmod\" syscall occur.\n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S fchmod -F auid>=1000 -F auid!=unset -k perm_mod\n\n-a always,exit -F arch=b64 -S fchmod -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204522\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204522\",\n \"cdf:title\": \"SRG-OS-000458-GPOS-00203\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204522r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204522r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-030420\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must audit all uses of the fchmod syscall.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-27393-8\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86731\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72107\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"fchmod\\\" syscall occur.\\n\\nAdd or update the following rules in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F arch=b32 -S fchmod -F auid>=1000 -F auid!=unset -k perm_mod\\n\\n-a always,exit -F arch=b64 -S fchmod -F auid>=1000 -F auid!=unset -k perm_mod\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-4646r462574_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4646r462574_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:557\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:18" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000172" + ], + "nist": [ + "AU-12 c" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204523", + "group_title": "SRG-OS-000458-GPOS-00203", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204523r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:562" + } + }, + "fix_id": "F-4647r462577_fix", + "fixtext_fixref": "F-4647r462577_fix", + "ident": [ + { + "text": "CCE-27388-8", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86733", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72109", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204523r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:18", + "idref": "xccdf_mil.disa.stig_rule_SV-204522r603261_rule", + "version": "RHEL-07-030420", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-27393-8", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86731", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72107", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4646r462574_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:557" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the fchmodat syscall.", + "id": "V-204523", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:562", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"fchmodat\" syscall occur.\n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S fchmodat -F auid>=1000 -F auid!=unset -k perm_mod\n\n-a always,exit -F arch=b64 -S fchmodat -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204523\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204523\",\n \"cdf:title\": \"SRG-OS-000458-GPOS-00203\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204523r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204523r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-030430\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must audit all uses of the fchmodat syscall.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-27388-8\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86733\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72109\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"fchmodat\\\" syscall occur.\\n\\nAdd or update the following rules in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F arch=b32 -S fchmodat -F auid>=1000 -F auid!=unset -k perm_mod\\n\\n-a always,exit -F arch=b64 -S fchmodat -F auid>=1000 -F auid!=unset -k perm_mod\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-4647r462577_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4647r462577_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:562\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:18" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000172" + ], + "nist": [ + "AU-12 c" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204524", + "group_title": "SRG-OS-000458-GPOS-00203", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204524r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:607" + } + }, + "fix_id": "F-4648r462732_fix", + "fixtext_fixref": "F-4648r462732_fix", + "ident": [ + { + "text": "CCE-27213-8", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86735", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72111", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204524r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:18", + "idref": "xccdf_mil.disa.stig_rule_SV-204523r603261_rule", + "version": "RHEL-07-030430", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-27388-8", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86733", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72109", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4647r462577_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:562" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the setxattr syscall.", + "id": "V-204524", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:607", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"setxattr\" syscall occur.\n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S setxattr -F auid>=1000 -F auid!=unset -k perm_mod\n\n-a always,exit -F arch=b64 -S setxattr -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204524\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204524\",\n \"cdf:title\": \"SRG-OS-000458-GPOS-00203\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204524r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204524r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-030440\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must audit all uses of the setxattr syscall.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-27213-8\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86735\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72111\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"setxattr\\\" syscall occur.\\n\\nAdd or update the following rules in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F arch=b32 -S setxattr -F auid>=1000 -F auid!=unset -k perm_mod\\n\\n-a always,exit -F arch=b64 -S setxattr -F auid>=1000 -F auid!=unset -k perm_mod\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-4648r462732_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4648r462732_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:607\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:18" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000172" + ], + "nist": [ + "AU-12 c" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204525", + "group_title": "SRG-OS-000458-GPOS-00203", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204525r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:582" + } + }, + "fix_id": "F-4649r462580_fix", + "fixtext_fixref": "F-4649r462580_fix", + "ident": [ + { + "text": "CCE-27389-6", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86737", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72113", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204525r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:18", + "idref": "xccdf_mil.disa.stig_rule_SV-204524r603261_rule", + "version": "RHEL-07-030440", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-27213-8", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86735", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72111", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4648r462732_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:607" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the fsetxattr syscall.", + "id": "V-204525", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:582", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"fsetxattr\" syscall occur.\n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S fsetxattr -F auid>=1000 -F auid!=unset -k perm_mod\n\n-a always,exit -F arch=b64 -S fsetxattr -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204525\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204525\",\n \"cdf:title\": \"SRG-OS-000458-GPOS-00203\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204525r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204525r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-030450\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must audit all uses of the fsetxattr syscall.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-27389-6\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86737\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72113\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"fsetxattr\\\" syscall occur.\\n\\nAdd or update the following rules in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F arch=b32 -S fsetxattr -F auid>=1000 -F auid!=unset -k perm_mod\\n\\n-a always,exit -F arch=b64 -S fsetxattr -F auid>=1000 -F auid!=unset -k perm_mod\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-4649r462580_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4649r462580_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:582\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:18" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000172" + ], + "nist": [ + "AU-12 c" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204526", + "group_title": "SRG-OS-000458-GPOS-00203", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204526r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:597" + } + }, + "fix_id": "F-4650r462583_fix", + "fixtext_fixref": "F-4650r462583_fix", + "ident": [ + { + "text": "CCE-27280-7", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86739", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72115", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204526r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:18", + "idref": "xccdf_mil.disa.stig_rule_SV-204525r603261_rule", + "version": "RHEL-07-030450", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-27389-6", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86737", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72113", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4649r462580_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:582" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the lsetxattr syscall.", + "id": "V-204526", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:597", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"lsetxattr\" syscall occur.\n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S lsetxattr -F auid>=1000 -F auid!=unset -k perm_mod\n\n-a always,exit -F arch=b64 -S lsetxattr -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204526\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204526\",\n \"cdf:title\": \"SRG-OS-000458-GPOS-00203\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204526r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204526r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-030460\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must audit all uses of the lsetxattr syscall.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-27280-7\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86739\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72115\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"lsetxattr\\\" syscall occur.\\n\\nAdd or update the following rules in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F arch=b32 -S lsetxattr -F auid>=1000 -F auid!=unset -k perm_mod\\n\\n-a always,exit -F arch=b64 -S lsetxattr -F auid>=1000 -F auid!=unset -k perm_mod\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-4650r462583_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4650r462583_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:597\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:18" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000172" + ], + "nist": [ + "AU-12 c" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204527", + "group_title": "SRG-OS-000458-GPOS-00203", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204527r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:602" + } + }, + "fix_id": "F-4651r462586_fix", + "fixtext_fixref": "F-4651r462586_fix", + "ident": [ + { + "text": "CCE-27367-2", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86741", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72117", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204527r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:18", + "idref": "xccdf_mil.disa.stig_rule_SV-204526r603261_rule", + "version": "RHEL-07-030460", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-27280-7", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86739", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72115", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4650r462583_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:597" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the removexattr syscall.", + "id": "V-204527", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:602", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"removexattr\" syscall occur.\n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S removexattr -F auid>=1000 -F auid!=unset -k perm_mod\n\n-a always,exit -F arch=b64 -S removexattr -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204527\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204527\",\n \"cdf:title\": \"SRG-OS-000458-GPOS-00203\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204527r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204527r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-030470\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must audit all uses of the removexattr syscall.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-27367-2\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86741\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72117\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"removexattr\\\" syscall occur.\\n\\nAdd or update the following rules in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F arch=b32 -S removexattr -F auid>=1000 -F auid!=unset -k perm_mod\\n\\n-a always,exit -F arch=b64 -S removexattr -F auid>=1000 -F auid!=unset -k perm_mod\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-4651r462586_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4651r462586_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:602\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:18" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000172" + ], + "nist": [ + "AU-12 c" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204528", + "group_title": "SRG-OS-000458-GPOS-00203", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204528r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:577" + } + }, + "fix_id": "F-4652r462589_fix", + "fixtext_fixref": "F-4652r462589_fix", + "ident": [ + { + "text": "CCE-27353-2", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86743", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72119", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204528r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:18", + "idref": "xccdf_mil.disa.stig_rule_SV-204527r603261_rule", + "version": "RHEL-07-030470", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-27367-2", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86741", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72117", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4651r462586_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:602" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the fremovexattr syscall.", + "id": "V-204528", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:577", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"fremovexattr\" syscall occur.\n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S fremovexattr -F auid>=1000 -F auid!=unset -k perm_mod\n\n-a always,exit -F arch=b64 -S fremovexattr -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204528\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204528\",\n \"cdf:title\": \"SRG-OS-000458-GPOS-00203\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204528r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204528r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-030480\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must audit all uses of the fremovexattr syscall.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-27353-2\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86743\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72119\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"fremovexattr\\\" syscall occur.\\n\\nAdd or update the following rules in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F arch=b32 -S fremovexattr -F auid>=1000 -F auid!=unset -k perm_mod\\n\\n-a always,exit -F arch=b64 -S fremovexattr -F auid>=1000 -F auid!=unset -k perm_mod\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-4652r462589_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4652r462589_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:577\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:18" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000172" + ], + "nist": [ + "AU-12 c" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204529", + "group_title": "SRG-OS-000458-GPOS-00203", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204529r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:592" + } + }, + "fix_id": "F-4653r462592_fix", + "fixtext_fixref": "F-4653r462592_fix", + "ident": [ + { + "text": "CCE-27410-0", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86745", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72121", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204529r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:18", + "idref": "xccdf_mil.disa.stig_rule_SV-204528r603261_rule", + "version": "RHEL-07-030480", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-27353-2", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86743", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72119", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4652r462589_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:577" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the lremovexattr syscall.", + "id": "V-204529", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:592", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"lremovexattr\" syscall occur.\n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S lremovexattr -F auid>=1000 -F auid!=unset -k perm_mod\n\n-a always,exit -F arch=b64 -S lremovexattr -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204529\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204529\",\n \"cdf:title\": \"SRG-OS-000458-GPOS-00203\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204529r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204529r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-030490\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must audit all uses of the lremovexattr syscall.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000458-GPOS-00203, SRG-OS-000392-GPOS-00172, SRG-OS-000064-GPOS-00033</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-27410-0\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86745\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72121\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"lremovexattr\\\" syscall occur.\\n\\nAdd or update the following rules in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F arch=b32 -S lremovexattr -F auid>=1000 -F auid!=unset -k perm_mod\\n\\n-a always,exit -F arch=b64 -S lremovexattr -F auid>=1000 -F auid!=unset -k perm_mod\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-4653r462592_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4653r462592_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:592\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:18" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000172", + "CCI-002884" + ], + "nist": [ + "AU-12 c", + "MA-4 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000458-GPOS-00203, SRG-OS-000461-GPOS-00205, SRG-OS-000392-GPOS-00172\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204530", + "group_title": "SRG-OS-000064-GPOS-00033", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204530r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:801" + } + }, + "fix_id": "F-4654r462595_fix", + "fixtext_fixref": "F-4654r462595_fix", + "ident": [ + { + "text": "CCE-80385-8", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86747", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72123", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204530r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:18", + "idref": "xccdf_mil.disa.stig_rule_SV-204529r603261_rule", + "version": "RHEL-07-030490", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-27410-0", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86745", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72121", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4653r462592_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:592" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the creat syscall.", + "id": "V-204530", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000458-GPOS-00203, SRG-OS-000461-GPOS-00205, SRG-OS-000392-GPOS-00172", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:801", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"creat\" syscall occur.\n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules:\n\n-a always,exit -F arch=b32 -S creat -F exit=-EPERM -F auid>=1000 -F auid!=unset -k access\n\n-a always,exit -F arch=b32 -S creat -F exit=-EACCES -F auid>=1000 -F auid!=unset -k access\n\n-a always,exit -F arch=b64 -S creat -F exit=-EPERM -F auid>=1000 -F auid!=unset -k access\n\n-a always,exit -F arch=b64 -S creat -F exit=-EACCES -F auid>=1000 -F auid!=unset -k access\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204530\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204530\",\n \"cdf:title\": \"SRG-OS-000064-GPOS-00033\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204530r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204530r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-030500\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must audit all uses of the creat syscall.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000458-GPOS-00203, SRG-OS-000461-GPOS-00205, SRG-OS-000392-GPOS-00172</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80385-8\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86747\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72123\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002884\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"creat\\\" syscall occur.\\n\\nAdd or update the following rules in \\\"/etc/audit/rules.d/audit.rules:\\n\\n-a always,exit -F arch=b32 -S creat -F exit=-EPERM -F auid>=1000 -F auid!=unset -k access\\n\\n-a always,exit -F arch=b32 -S creat -F exit=-EACCES -F auid>=1000 -F auid!=unset -k access\\n\\n-a always,exit -F arch=b64 -S creat -F exit=-EPERM -F auid>=1000 -F auid!=unset -k access\\n\\n-a always,exit -F arch=b64 -S creat -F exit=-EACCES -F auid>=1000 -F auid!=unset -k access\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-4654r462595_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4654r462595_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:801\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:18" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000172", + "CCI-002884" + ], + "nist": [ + "AU-12 c", + "MA-4 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000458-GPOS-00203, SRG-OS-000461-GPOS-00205, SRG-OS-000392-GPOS-00172\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204531", + "group_title": "SRG-OS-000064-GPOS-00033", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204531r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:805" + } + }, + "fix_id": "F-4655r462598_fix", + "fixtext_fixref": "F-4655r462598_fix", + "ident": [ + { + "text": "CCE-80386-6", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86749", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72125", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204531r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:18", + "idref": "xccdf_mil.disa.stig_rule_SV-204530r603261_rule", + "version": "RHEL-07-030500", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-80385-8", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86747", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72123", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4654r462595_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:801" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the open syscall.", + "id": "V-204531", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000458-GPOS-00203, SRG-OS-000461-GPOS-00205, SRG-OS-000392-GPOS-00172", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:805", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"open\" syscall occur.\n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S open -F exit=-EPERM -F auid>=1000 -F auid!=unset -k access\n\n-a always,exit -F arch=b32 -S open -F exit=-EACCES -F auid>=1000 -F auid!=unset -k access\n\n-a always,exit -F arch=b64 -S open -F exit=-EPERM -F auid>=1000 -F auid!=unset -k access\n\n-a always,exit -F arch=b64 -S open -F exit=-EACCES -F auid>=1000 -F auid!=unset -k access\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204531\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204531\",\n \"cdf:title\": \"SRG-OS-000064-GPOS-00033\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204531r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204531r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-030510\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must audit all uses of the open syscall.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000458-GPOS-00203, SRG-OS-000461-GPOS-00205, SRG-OS-000392-GPOS-00172</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80386-6\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86749\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72125\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002884\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"open\\\" syscall occur.\\n\\nAdd or update the following rules in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F arch=b32 -S open -F exit=-EPERM -F auid>=1000 -F auid!=unset -k access\\n\\n-a always,exit -F arch=b32 -S open -F exit=-EACCES -F auid>=1000 -F auid!=unset -k access\\n\\n-a always,exit -F arch=b64 -S open -F exit=-EPERM -F auid>=1000 -F auid!=unset -k access\\n\\n-a always,exit -F arch=b64 -S open -F exit=-EACCES -F auid>=1000 -F auid!=unset -k access\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-4655r462598_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4655r462598_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:805\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:19" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000172", + "CCI-002884" + ], + "nist": [ + "AU-12 c", + "MA-4 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000458-GPOS-00203, SRG-OS-000461-GPOS-00205, SRG-OS-000392-GPOS-00172\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204532", + "group_title": "SRG-OS-000064-GPOS-00033", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204532r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:803" + } + }, + "fix_id": "F-4656r462601_fix", + "fixtext_fixref": "F-4656r462601_fix", + "ident": [ + { + "text": "CCE-80387-4", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86751", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72127", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204532r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:19", + "idref": "xccdf_mil.disa.stig_rule_SV-204531r603261_rule", + "version": "RHEL-07-030510", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-80386-6", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86749", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72125", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4655r462598_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:805" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the openat syscall.", + "id": "V-204532", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000458-GPOS-00203, SRG-OS-000461-GPOS-00205, SRG-OS-000392-GPOS-00172", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:803", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"openat\" syscall occur.\n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S openat -F exit=-EPERM -F auid>=1000 -F auid!=unset -k access\n\n-a always,exit -F arch=b32 -S openat -F exit=-EACCES -F auid>=1000 -F auid!=unset -k access\n\n-a always,exit -F arch=b64 -S openat -F exit=-EPERM -F auid>=1000 -F auid!=unset -k access\n\n-a always,exit -F arch=b64 -S openat -F exit=-EACCES -F auid>=1000 -F auid!=unset -k access\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204532\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204532\",\n \"cdf:title\": \"SRG-OS-000064-GPOS-00033\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204532r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204532r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-030520\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must audit all uses of the openat syscall.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000458-GPOS-00203, SRG-OS-000461-GPOS-00205, SRG-OS-000392-GPOS-00172</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80387-4\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86751\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72127\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002884\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"openat\\\" syscall occur.\\n\\nAdd or update the following rules in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F arch=b32 -S openat -F exit=-EPERM -F auid>=1000 -F auid!=unset -k access\\n\\n-a always,exit -F arch=b32 -S openat -F exit=-EACCES -F auid>=1000 -F auid!=unset -k access\\n\\n-a always,exit -F arch=b64 -S openat -F exit=-EPERM -F auid>=1000 -F auid!=unset -k access\\n\\n-a always,exit -F arch=b64 -S openat -F exit=-EACCES -F auid>=1000 -F auid!=unset -k access\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-4656r462601_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4656r462601_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:803\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:19" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000172", + "CCI-002884" + ], + "nist": [ + "AU-12 c", + "MA-4 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000458-GPOS-00203, SRG-OS-000461-GPOS-00205, SRG-OS-000392-GPOS-00172\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204533", + "group_title": "SRG-OS-000064-GPOS-00033", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204533r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:804" + } + }, + "fix_id": "F-4657r462604_fix", + "fixtext_fixref": "F-4657r462604_fix", + "ident": [ + { + "text": "CCE-80388-2", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86753", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72129", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204533r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:19", + "idref": "xccdf_mil.disa.stig_rule_SV-204532r603261_rule", + "version": "RHEL-07-030520", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-80387-4", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86751", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72127", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4656r462601_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:803" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the open_by_handle_at syscall.", + "id": "V-204533", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000458-GPOS-00203, SRG-OS-000461-GPOS-00205, SRG-OS-000392-GPOS-00172", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:804", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"open_by_handle_at\" syscall occur.\n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S open_by_handle_at -F exit=-EPERM -F auid>=1000 -F auid!=unset -k access\n\n-a always,exit -F arch=b32 -S open_by_handle_at -F exit=-EACCES -F auid>=1000 -F auid!=unset -k access\n\n-a always,exit -F arch=b64 -S open_by_handle_at -F exit=-EPERM -F auid>=1000 -F auid!=unset -k access\n\n-a always,exit -F arch=b64 -S open_by_handle_at -F exit=-EACCES -F auid>=1000 -F auid!=unset -k access\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204533\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204533\",\n \"cdf:title\": \"SRG-OS-000064-GPOS-00033\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204533r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204533r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-030530\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must audit all uses of the open_by_handle_at syscall.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000458-GPOS-00203, SRG-OS-000461-GPOS-00205, SRG-OS-000392-GPOS-00172</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80388-2\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86753\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72129\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002884\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"open_by_handle_at\\\" syscall occur.\\n\\nAdd or update the following rules in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F arch=b32 -S open_by_handle_at -F exit=-EPERM -F auid>=1000 -F auid!=unset -k access\\n\\n-a always,exit -F arch=b32 -S open_by_handle_at -F exit=-EACCES -F auid>=1000 -F auid!=unset -k access\\n\\n-a always,exit -F arch=b64 -S open_by_handle_at -F exit=-EPERM -F auid>=1000 -F auid!=unset -k access\\n\\n-a always,exit -F arch=b64 -S open_by_handle_at -F exit=-EACCES -F auid>=1000 -F auid!=unset -k access\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-4657r462604_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4657r462604_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:804\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:19" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000172", + "CCI-002884" + ], + "nist": [ + "AU-12 c", + "MA-4 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000458-GPOS-00203, SRG-OS-000461-GPOS-00205, SRG-OS-000392-GPOS-00172\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204534", + "group_title": "SRG-OS-000064-GPOS-00033", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204534r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:806" + } + }, + "fix_id": "F-4658r462607_fix", + "fixtext_fixref": "F-4658r462607_fix", + "ident": [ + { + "text": "CCE-80389-0", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86755", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72131", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204534r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:19", + "idref": "xccdf_mil.disa.stig_rule_SV-204533r603261_rule", + "version": "RHEL-07-030530", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-80388-2", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86753", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72129", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4657r462604_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:804" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the truncate syscall.", + "id": "V-204534", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000458-GPOS-00203, SRG-OS-000461-GPOS-00205, SRG-OS-000392-GPOS-00172", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:806", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"truncate\" syscall occur.\n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S truncate -F exit=-EPERM -F auid>=1000 -F auid!=unset -k access\n\n-a always,exit -F arch=b32 -S truncate -F exit=-EACCES -F auid>=1000 -F auid!=unset -k access\n\n-a always,exit -F arch=b64 -S truncate -F exit=-EPERM -F auid>=1000 -F auid!=unset -k access\n\n-a always,exit -F arch=b64 -S truncate -F exit=-EACCES -F auid>=1000 -F auid!=unset -k access\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204534\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204534\",\n \"cdf:title\": \"SRG-OS-000064-GPOS-00033\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204534r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204534r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-030540\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must audit all uses of the truncate syscall.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000458-GPOS-00203, SRG-OS-000461-GPOS-00205, SRG-OS-000392-GPOS-00172</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80389-0\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86755\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72131\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002884\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"truncate\\\" syscall occur.\\n\\nAdd or update the following rules in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F arch=b32 -S truncate -F exit=-EPERM -F auid>=1000 -F auid!=unset -k access\\n\\n-a always,exit -F arch=b32 -S truncate -F exit=-EACCES -F auid>=1000 -F auid!=unset -k access\\n\\n-a always,exit -F arch=b64 -S truncate -F exit=-EPERM -F auid>=1000 -F auid!=unset -k access\\n\\n-a always,exit -F arch=b64 -S truncate -F exit=-EACCES -F auid>=1000 -F auid!=unset -k access\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-4658r462607_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4658r462607_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:806\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:19" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000172", + "CCI-002884" + ], + "nist": [ + "AU-12 c", + "MA-4 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000458-GPOS-00203, SRG-OS-000461-GPOS-00205, SRG-OS-000392-GPOS-00172\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204535", + "group_title": "SRG-OS-000064-GPOS-00033", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204535r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:802" + } + }, + "fix_id": "F-4659r462610_fix", + "fixtext_fixref": "F-4659r462610_fix", + "ident": [ + { + "text": "CCE-80390-8", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86757", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72133", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204535r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:19", + "idref": "xccdf_mil.disa.stig_rule_SV-204534r603261_rule", + "version": "RHEL-07-030540", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-80389-0", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86755", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72131", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4658r462607_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:806" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the ftruncate syscall.", + "id": "V-204535", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000458-GPOS-00203, SRG-OS-000461-GPOS-00205, SRG-OS-000392-GPOS-00172", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:802", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"ftruncate\" syscall occur.\n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S ftruncate -F exit=-EPERM -F auid>=1000 -F auid!=unset -k access\n\n-a always,exit -F arch=b32 -S ftruncate -F exit=-EACCES -F auid>=1000 -F auid!=unset -k access\n\n-a always,exit -F arch=b64 -S ftruncate -F exit=-EPERM -F auid>=1000 -F auid!=unset -k access\n\n-a always,exit -F arch=b64 -S ftruncate -F exit=-EACCES -F auid>=1000 -F auid!=unset -k access\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204535\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204535\",\n \"cdf:title\": \"SRG-OS-000064-GPOS-00033\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204535r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204535r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-030550\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must audit all uses of the ftruncate syscall.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000458-GPOS-00203, SRG-OS-000461-GPOS-00205, SRG-OS-000392-GPOS-00172</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80390-8\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86757\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72133\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002884\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"ftruncate\\\" syscall occur.\\n\\nAdd or update the following rules in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F arch=b32 -S ftruncate -F exit=-EPERM -F auid>=1000 -F auid!=unset -k access\\n\\n-a always,exit -F arch=b32 -S ftruncate -F exit=-EACCES -F auid>=1000 -F auid!=unset -k access\\n\\n-a always,exit -F arch=b64 -S ftruncate -F exit=-EPERM -F auid>=1000 -F auid!=unset -k access\\n\\n-a always,exit -F arch=b64 -S ftruncate -F exit=-EACCES -F auid>=1000 -F auid!=unset -k access\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-4659r462610_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4659r462610_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:802\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:19" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000172", + "CCI-002884" + ], + "nist": [ + "AU-12 c", + "MA-4 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000392-GPOS-00172, SRG-OS-000463-GPOS-00207, SRG-OS-000465-GPOS-00209\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204536", + "group_title": "SRG-OS-000392-GPOS-00172", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204536r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:618" + } + }, + "fix_id": "F-4660r462613_fix", + "fixtext_fixref": "F-4660r462613_fix", + "ident": [ + { + "text": "CCE-80391-6", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86759", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72135", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204536r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:19", + "idref": "xccdf_mil.disa.stig_rule_SV-204535r603261_rule", + "version": "RHEL-07-030550", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-80390-8", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86757", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72133", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4659r462610_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:802" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the semanage command.", + "id": "V-204536", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000392-GPOS-00172, SRG-OS-000463-GPOS-00207, SRG-OS-000465-GPOS-00209", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:618", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"semanage\" command occur.\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F path=/usr/sbin/semanage -F auid>=1000 -F auid!=unset -k privileged-priv_change\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204536\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204536\",\n \"cdf:title\": \"SRG-OS-000392-GPOS-00172\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204536r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204536r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-030560\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must audit all uses of the semanage command.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000392-GPOS-00172, SRG-OS-000463-GPOS-00207, SRG-OS-000465-GPOS-00209</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80391-6\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86759\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72135\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002884\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"semanage\\\" command occur.\\n\\nAdd or update the following rule in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F path=/usr/sbin/semanage -F auid>=1000 -F auid!=unset -k privileged-priv_change\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-4660r462613_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4660r462613_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:618\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:19" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000172", + "CCI-002884" + ], + "nist": [ + "AU-12 c", + "MA-4 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000392-GPOS-00172, SRG-OS-000463-GPOS-00207, SRG-OS-000465-GPOS-00209\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204537", + "group_title": "SRG-OS-000392-GPOS-00172", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204537r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:621" + } + }, + "fix_id": "F-4661r462616_fix", + "fixtext_fixref": "F-4661r462616_fix", + "ident": [ + { + "text": "CCE-80392-4", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86761", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72137", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204537r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:19", + "idref": "xccdf_mil.disa.stig_rule_SV-204536r603261_rule", + "version": "RHEL-07-030560", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-80391-6", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86759", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72135", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4660r462613_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:618" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the setsebool command.", + "id": "V-204537", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000392-GPOS-00172, SRG-OS-000463-GPOS-00207, SRG-OS-000465-GPOS-00209", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:621", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"setsebool\" command occur.\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F path=/usr/sbin/setsebool -F auid>=1000 -F auid!=unset -k privileged-priv_change\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204537\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204537\",\n \"cdf:title\": \"SRG-OS-000392-GPOS-00172\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204537r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204537r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-030570\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must audit all uses of the setsebool command.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000392-GPOS-00172, SRG-OS-000463-GPOS-00207, SRG-OS-000465-GPOS-00209</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80392-4\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86761\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72137\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002884\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"setsebool\\\" command occur.\\n\\nAdd or update the following rule in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F path=/usr/sbin/setsebool -F auid>=1000 -F auid!=unset -k privileged-priv_change\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-4661r462616_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4661r462616_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:621\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:19" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000172", + "CCI-002884" + ], + "nist": [ + "AU-12 c", + "MA-4 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000392-GPOS-00172, SRG-OS-000463-GPOS-00207, SRG-OS-000465-GPOS-00209\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204538", + "group_title": "SRG-OS-000392-GPOS-00172", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204538r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:612" + } + }, + "fix_id": "F-4662r462619_fix", + "fixtext_fixref": "F-4662r462619_fix", + "ident": [ + { + "text": "CCE-80393-2", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86763", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72139", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204538r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:19", + "idref": "xccdf_mil.disa.stig_rule_SV-204537r603261_rule", + "version": "RHEL-07-030570", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-80392-4", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86761", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72137", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4661r462616_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:621" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the chcon command.", + "id": "V-204538", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000392-GPOS-00172, SRG-OS-000463-GPOS-00207, SRG-OS-000465-GPOS-00209", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:612", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"chcon\" command occur.\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F path=/usr/bin/chcon -F auid>=1000 -F auid!=unset -k privileged-priv_change\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204538\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204538\",\n \"cdf:title\": \"SRG-OS-000392-GPOS-00172\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204538r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204538r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-030580\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must audit all uses of the chcon command.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000392-GPOS-00172, SRG-OS-000463-GPOS-00207, SRG-OS-000465-GPOS-00209</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80393-2\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86763\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72139\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002884\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"chcon\\\" command occur.\\n\\nAdd or update the following rule in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F path=/usr/bin/chcon -F auid>=1000 -F auid!=unset -k privileged-priv_change\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-4662r462619_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4662r462619_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:612\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:19" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000172", + "CCI-002884" + ], + "nist": [ + "AU-12 c", + "MA-4 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000392-GPOS-00172, SRG-OS-000463-GPOS-00207, SRG-OS-000465-GPOS-00209\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204539", + "group_title": "SRG-OS-000392-GPOS-00172", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204539r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:86765" + } + }, + "fix_id": "F-4663r462622_fix", + "fixtext_fixref": "F-4663r462622_fix", + "ident": [ + { + "text": "SV-86765", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72141", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204539r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:19", + "idref": "xccdf_mil.disa.stig_rule_SV-204538r603261_rule", + "version": "RHEL-07-030580", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-80393-2", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86763", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72139", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4662r462619_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:612" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the setfiles command.", + "id": "V-204539", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000392-GPOS-00172, SRG-OS-000463-GPOS-00207, SRG-OS-000465-GPOS-00209", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:86765", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"setfiles\" command occur.\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F path=/usr/sbin/setfiles -F auid>=1000 -F auid!=unset -k privileged-priv_change\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204539\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204539\",\n \"cdf:title\": \"SRG-OS-000392-GPOS-00172\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204539r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204539r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-030590\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must audit all uses of the setfiles command.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000392-GPOS-00172, SRG-OS-000463-GPOS-00207, SRG-OS-000465-GPOS-00209</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"SV-86765\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72141\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002884\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"setfiles\\\" command occur.\\n\\nAdd or update the following rule in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F path=/usr/sbin/setfiles -F auid>=1000 -F auid!=unset -k privileged-priv_change\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-4663r462622_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4663r462622_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:86765\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:19" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000172", + "CCI-000126", + "CCI-002884" + ], + "nist": [ + "AU-12 c", + "AU-2 c", + "MA-4 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000392-GPOS-00172, SRG-OS-000470-GPOS-00214, SRG-OS-000473-GPOS-00218\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204540", + "group_title": "SRG-OS-000392-GPOS-00172", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204540r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:675" + } + }, + "fix_id": "F-4664r88813_fix", + "fixtext_fixref": "F-4664r88813_fix", + "ident": [ + { + "text": "CCE-80383-3", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86769", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72145", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000126", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204540r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:19", + "idref": "xccdf_mil.disa.stig_rule_SV-204539r603261_rule", + "version": "RHEL-07-030590", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "SV-86765", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72141", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4663r462622_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:86765" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must generate audit records for all unsuccessful account access events.", + "id": "V-204540", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nSatisfies: SRG-OS-000392-GPOS-00172, SRG-OS-000470-GPOS-00214, SRG-OS-000473-GPOS-00218", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:675", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when unsuccessful account access events occur.\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-w /var/run/faillock -p wa -k logins\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204540\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204540\",\n \"cdf:title\": \"SRG-OS-000392-GPOS-00172\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204540r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204540r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-030610\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must generate audit records for all unsuccessful account access events.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000392-GPOS-00172, SRG-OS-000470-GPOS-00214, SRG-OS-000473-GPOS-00218</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80383-3\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86769\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72145\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000126\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002884\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when unsuccessful account access events occur.\\n\\nAdd or update the following rule in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-w /var/run/faillock -p wa -k logins\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-4664r88813_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4664r88813_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:675\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:19" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000126", + "CCI-000172", + "CCI-002884" + ], + "nist": [ + "AU-2 c", + "AU-12 c", + "MA-4 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000392-GPOS-00172, SRG-OS-000470-GPOS-00214, SRG-OS-000473-GPOS-00218\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204541", + "group_title": "SRG-OS-000392-GPOS-00172", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204541r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:676" + } + }, + "fix_id": "F-4665r88816_fix", + "fixtext_fixref": "F-4665r88816_fix", + "ident": [ + { + "text": "CCE-80384-1", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86771", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72147", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000126", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204541r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:19", + "idref": "xccdf_mil.disa.stig_rule_SV-204540r603261_rule", + "version": "RHEL-07-030610", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-80383-3", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86769", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72145", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000126", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4664r88813_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:675" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must generate audit records for all successful account access events.", + "id": "V-204541", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nSatisfies: SRG-OS-000392-GPOS-00172, SRG-OS-000470-GPOS-00214, SRG-OS-000473-GPOS-00218", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:676", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful account access events occur.\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-w /var/log/lastlog -p wa -k logins\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204541\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204541\",\n \"cdf:title\": \"SRG-OS-000392-GPOS-00172\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204541r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204541r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-030620\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must generate audit records for all successful account access events.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000392-GPOS-00172, SRG-OS-000470-GPOS-00214, SRG-OS-000473-GPOS-00218</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80384-1\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86771\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72147\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000126\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002884\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful account access events occur.\\n\\nAdd or update the following rule in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-w /var/log/lastlog -p wa -k logins\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-4665r88816_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4665r88816_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:676\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:19" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000172", + "CCI-000135", + "CCI-002884" + ], + "nist": [ + "AU-12 c", + "AU-3 (1)", + "MA-4 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged password commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204542", + "group_title": "SRG-OS-000042-GPOS-00020", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204542r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:733" + } + }, + "fix_id": "F-4666r462625_fix", + "fixtext_fixref": "F-4666r462625_fix", + "ident": [ + { + "text": "CCE-80395-7", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86773", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72149", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000135", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204542r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:19", + "idref": "xccdf_mil.disa.stig_rule_SV-204541r603261_rule", + "version": "RHEL-07-030620", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-80384-1", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86771", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72147", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000126", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4665r88816_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:676" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the passwd command.", + "id": "V-204542", + "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged password commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:733", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"passwd\" command occur.\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F path=/usr/bin/passwd -F auid>=1000 -F auid!=unset -k privileged-passwd\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204542\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204542\",\n \"cdf:title\": \"SRG-OS-000042-GPOS-00020\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204542r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204542r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-030630\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must audit all uses of the passwd command.\",\n \"cdf:description\": \"<VulnDiscussion>Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged password commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80395-7\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86773\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72149\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000135\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002884\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"passwd\\\" command occur.\\n\\nAdd or update the following rule in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F path=/usr/bin/passwd -F auid>=1000 -F auid!=unset -k privileged-passwd\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-4666r462625_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4666r462625_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:733\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:19" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000135", + "CCI-000172", + "CCI-002884" + ], + "nist": [ + "AU-3 (1)", + "AU-12 c", + "MA-4 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged password commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204543", + "group_title": "SRG-OS-000042-GPOS-00020", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204543r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:760" + } + }, + "fix_id": "F-4667r462628_fix", + "fixtext_fixref": "F-4667r462628_fix", + "ident": [ + { + "text": "CCE-80396-5", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86775", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72151", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000135", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204543r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:19", + "idref": "xccdf_mil.disa.stig_rule_SV-204542r603261_rule", + "version": "RHEL-07-030630", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-80395-7", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86773", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72149", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000135", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4666r462625_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:733" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the unix_chkpwd command.", + "id": "V-204543", + "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged password commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:760", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"unix_chkpwd\" command occur.\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F path=/usr/sbin/unix_chkpwd -F auid>=1000 -F auid!=unset -k privileged-passwd\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204543\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204543\",\n \"cdf:title\": \"SRG-OS-000042-GPOS-00020\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204543r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204543r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-030640\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must audit all uses of the unix_chkpwd command.\",\n \"cdf:description\": \"<VulnDiscussion>Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged password commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80396-5\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86775\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72151\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000135\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002884\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"unix_chkpwd\\\" command occur.\\n\\nAdd or update the following rule in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F path=/usr/sbin/unix_chkpwd -F auid>=1000 -F auid!=unset -k privileged-passwd\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-4667r462628_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4667r462628_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:760\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:19" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000172", + "CCI-000135", + "CCI-002884" + ], + "nist": [ + "AU-12 c", + "AU-3 (1)", + "MA-4 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged password commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204544", + "group_title": "SRG-OS-000042-GPOS-00020", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204544r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:724" + } + }, + "fix_id": "F-4668r462631_fix", + "fixtext_fixref": "F-4668r462631_fix", + "ident": [ + { + "text": "CCE-80397-3", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86777", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72153", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000135", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204544r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:19", + "idref": "xccdf_mil.disa.stig_rule_SV-204543r603261_rule", + "version": "RHEL-07-030640", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-80396-5", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86775", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72151", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000135", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4667r462628_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:760" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the gpasswd command.", + "id": "V-204544", + "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged password commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:724", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"gpasswd\" command occur.\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F path=/usr/bin/gpasswd -F auid>=1000 -F auid!=unset -k privileged-passwd\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204544\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204544\",\n \"cdf:title\": \"SRG-OS-000042-GPOS-00020\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204544r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204544r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-030650\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must audit all uses of the gpasswd command.\",\n \"cdf:description\": \"<VulnDiscussion>Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged password commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80397-3\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86777\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72153\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000135\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002884\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"gpasswd\\\" command occur.\\n\\nAdd or update the following rule in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F path=/usr/bin/gpasswd -F auid>=1000 -F auid!=unset -k privileged-passwd\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-4668r462631_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4668r462631_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:724\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:20" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000135", + "CCI-000172", + "CCI-002884" + ], + "nist": [ + "AU-3 (1)", + "AU-12 c", + "MA-4 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged password commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204545", + "group_title": "SRG-OS-000042-GPOS-00020", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204545r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:715" + } + }, + "fix_id": "F-4669r462634_fix", + "fixtext_fixref": "F-4669r462634_fix", + "ident": [ + { + "text": "CCE-80398-1", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86779", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72155", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000135", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204545r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:20", + "idref": "xccdf_mil.disa.stig_rule_SV-204544r603261_rule", + "version": "RHEL-07-030650", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-80397-3", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86777", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72153", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000135", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4668r462631_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:724" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the chage command.", + "id": "V-204545", + "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged password commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:715", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"chage\" command occur.\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F path=/usr/bin/chage -F auid>=1000 -F auid!=unset -k privileged-passwd\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204545\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204545\",\n \"cdf:title\": \"SRG-OS-000042-GPOS-00020\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204545r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204545r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-030660\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must audit all uses of the chage command.\",\n \"cdf:description\": \"<VulnDiscussion>Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged password commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80398-1\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86779\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72155\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000135\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002884\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"chage\\\" command occur.\\n\\nAdd or update the following rule in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F path=/usr/bin/chage -F auid>=1000 -F auid!=unset -k privileged-passwd\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-4669r462634_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4669r462634_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:715\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:20" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000172", + "CCI-000135", + "CCI-002884" + ], + "nist": [ + "AU-12 c", + "AU-3 (1)", + "MA-4 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged password commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204546", + "group_title": "SRG-OS-000042-GPOS-00020", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204546r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:763" + } + }, + "fix_id": "F-4670r462637_fix", + "fixtext_fixref": "F-4670r462637_fix", + "ident": [ + { + "text": "CCE-80399-9", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86781", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72157", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000135", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204546r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:20", + "idref": "xccdf_mil.disa.stig_rule_SV-204545r603261_rule", + "version": "RHEL-07-030660", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-80398-1", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86779", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72155", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000135", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4669r462634_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:715" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the userhelper command.", + "id": "V-204546", + "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged password commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:763", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"userhelper\" command occur.\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F path=/usr/sbin/userhelper -F auid>=1000 -F auid!=unset -k privileged-passwd\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204546\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204546\",\n \"cdf:title\": \"SRG-OS-000042-GPOS-00020\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204546r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204546r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-030670\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must audit all uses of the userhelper command.\",\n \"cdf:description\": \"<VulnDiscussion>Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged password commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80399-9\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86781\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72157\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000135\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002884\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"userhelper\\\" command occur.\\n\\nAdd or update the following rule in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F path=/usr/sbin/userhelper -F auid>=1000 -F auid!=unset -k privileged-passwd\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-4670r462637_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4670r462637_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:763\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:20" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000135", + "CCI-000172", + "CCI-000130", + "CCI-002884" + ], + "nist": [ + "AU-3 (1)", + "AU-12 c", + "AU-3 a", + "MA-4 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged access commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204547", + "group_title": "SRG-OS-000037-GPOS-00015", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204547r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:748" + } + }, + "fix_id": "F-4671r462640_fix", + "fixtext_fixref": "F-4671r462640_fix", + "ident": [ + { + "text": "CCE-80400-5", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86783", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72159", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000135", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000130", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204547r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:20", + "idref": "xccdf_mil.disa.stig_rule_SV-204546r603261_rule", + "version": "RHEL-07-030670", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-80399-9", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86781", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72157", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000135", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4670r462637_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:763" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the su command.", + "id": "V-204547", + "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged access commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:748", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"su\" command occur.\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F path=/usr/bin/su -F auid>=1000 -F auid!=unset -k privileged-priv_change\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204547\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204547\",\n \"cdf:title\": \"SRG-OS-000037-GPOS-00015\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204547r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204547r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-030680\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must audit all uses of the su command.\",\n \"cdf:description\": \"<VulnDiscussion>Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged access commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80400-5\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86783\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72159\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000135\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000130\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002884\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"su\\\" command occur.\\n\\nAdd or update the following rule in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F path=/usr/bin/su -F auid>=1000 -F auid!=unset -k privileged-priv_change\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-4671r462640_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4671r462640_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:748\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:20" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000130", + "CCI-000135", + "CCI-000172", + "CCI-002884" + ], + "nist": [ + "AU-3 a", + "AU-3 (1)", + "AU-12 c", + "MA-4 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged access commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204548", + "group_title": "SRG-OS-000037-GPOS-00015", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204548r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:751" + } + }, + "fix_id": "F-4672r462643_fix", + "fixtext_fixref": "F-4672r462643_fix", + "ident": [ + { + "text": "CCE-80401-3", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86785", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72161", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000130", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000135", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204548r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:20", + "idref": "xccdf_mil.disa.stig_rule_SV-204547r603261_rule", + "version": "RHEL-07-030680", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-80400-5", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86783", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72159", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000135", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000130", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4671r462640_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:748" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the sudo command.", + "id": "V-204548", + "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged access commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:751", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"sudo\" command occur.\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F path=/usr/bin/sudo -F auid>=1000 -F auid!=unset -k privileged-priv_change\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204548\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204548\",\n \"cdf:title\": \"SRG-OS-000037-GPOS-00015\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204548r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204548r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-030690\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must audit all uses of the sudo command.\",\n \"cdf:description\": \"<VulnDiscussion>Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged access commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80401-3\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86785\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72161\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000130\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000135\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002884\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"sudo\\\" command occur.\\n\\nAdd or update the following rule in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F path=/usr/bin/sudo -F auid>=1000 -F auid!=unset -k privileged-priv_change\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-4672r462643_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4672r462643_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:751\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:20" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000172", + "CCI-000135", + "CCI-000130", + "CCI-002884" + ], + "nist": [ + "AU-12 c", + "AU-3 (1)", + "AU-3 a", + "MA-4 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged access commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nSatisfies: SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204549", + "group_title": "SRG-OS-000037-GPOS-00015", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204549r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:773" + } + }, + "fix_id": "F-4673r88840_fix", + "fixtext_fixref": "F-4673r88840_fix", + "ident": [ + { + "text": "CCE-27461-3", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86787", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72163", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000135", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000130", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204549r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:20", + "idref": "xccdf_mil.disa.stig_rule_SV-204548r603261_rule", + "version": "RHEL-07-030690", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-80401-3", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86785", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72161", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000130", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000135", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4672r462643_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:751" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the sudoers file and all files in the /etc/sudoers.d/ directory.", + "id": "V-204549", + "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged access commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\n\nSatisfies: SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:773", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to access the \"/etc/sudoers\" file and files in the \"/etc/sudoers.d/\" directory.\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-w /etc/sudoers -p wa -k privileged-actions\n\n-w /etc/sudoers.d/ -p wa -k privileged-actions\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204549\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204549\",\n \"cdf:title\": \"SRG-OS-000037-GPOS-00015\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204549r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204549r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-030700\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must audit all uses of the sudoers file and all files in the /etc/sudoers.d/ directory.\",\n \"cdf:description\": \"<VulnDiscussion>Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged access commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nSatisfies: SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-27461-3\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86787\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72163\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000135\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000130\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002884\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to access the \\\"/etc/sudoers\\\" file and files in the \\\"/etc/sudoers.d/\\\" directory.\\n\\nAdd or update the following rule in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-w /etc/sudoers -p wa -k privileged-actions\\n\\n-w /etc/sudoers.d/ -p wa -k privileged-actions\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-4673r88840_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4673r88840_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:773\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:20" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000130", + "CCI-000135", + "CCI-000172", + "CCI-002884" + ], + "nist": [ + "AU-3 a", + "AU-3 (1)", + "AU-12 c", + "MA-4 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged access commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204550", + "group_title": "SRG-OS-000037-GPOS-00015", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204550r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:727" + } + }, + "fix_id": "F-4674r462646_fix", + "fixtext_fixref": "F-4674r462646_fix", + "ident": [ + { + "text": "CCE-80403-9", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86789", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72165", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000130", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000135", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204550r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:20", + "idref": "xccdf_mil.disa.stig_rule_SV-204549r603261_rule", + "version": "RHEL-07-030700", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-27461-3", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86787", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72163", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000135", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000130", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4673r88840_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:773" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the newgrp command.", + "id": "V-204550", + "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged access commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:727", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"newgrp\" command occur.\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F path=/usr/bin/newgrp -F auid>=1000 -F auid!=unset -k privileged-priv_change\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204550\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204550\",\n \"cdf:title\": \"SRG-OS-000037-GPOS-00015\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204550r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204550r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-030710\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must audit all uses of the newgrp command.\",\n \"cdf:description\": \"<VulnDiscussion>Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged access commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80403-9\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86789\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72165\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000130\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000135\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002884\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"newgrp\\\" command occur.\\n\\nAdd or update the following rule in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F path=/usr/bin/newgrp -F auid>=1000 -F auid!=unset -k privileged-priv_change\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-4674r462646_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4674r462646_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:727\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:20" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000172", + "CCI-000135", + "CCI-000130", + "CCI-002884" + ], + "nist": [ + "AU-12 c", + "AU-3 (1)", + "AU-3 a", + "MA-4 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged access commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204551", + "group_title": "SRG-OS-000037-GPOS-00015", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204551r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:718" + } + }, + "fix_id": "F-4675r462649_fix", + "fixtext_fixref": "F-4675r462649_fix", + "ident": [ + { + "text": "CCE-80404-7", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86791", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72167", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000135", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000130", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204551r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:20", + "idref": "xccdf_mil.disa.stig_rule_SV-204550r603261_rule", + "version": "RHEL-07-030710", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-80403-9", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86789", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72165", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000130", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000135", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4674r462646_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:727" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the chsh command.", + "id": "V-204551", + "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged access commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:718", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"chsh\" command occur.\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F path=/usr/bin/chsh -F auid>=1000 -F auid!=unset -k privileged-priv_change\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204551\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204551\",\n \"cdf:title\": \"SRG-OS-000037-GPOS-00015\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204551r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204551r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-030720\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must audit all uses of the chsh command.\",\n \"cdf:description\": \"<VulnDiscussion>Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged access commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80404-7\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86791\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72167\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000135\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000130\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002884\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"chsh\\\" command occur.\\n\\nAdd or update the following rule in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F path=/usr/bin/chsh -F auid>=1000 -F auid!=unset -k privileged-priv_change\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-4675r462649_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4675r462649_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:718\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:20" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000135", + "CCI-002884" + ], + "nist": [ + "AU-3 (1)", + "MA-4 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged mount commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204552", + "group_title": "SRG-OS-000042-GPOS-00020", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204552r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:686" + } + }, + "fix_id": "F-4676r462652_fix", + "fixtext_fixref": "F-4676r462652_fix", + "ident": [ + { + "text": "CCE-27447-2", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86795", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72171", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000135", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204552r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:20", + "idref": "xccdf_mil.disa.stig_rule_SV-204551r603261_rule", + "version": "RHEL-07-030720", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-80404-7", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86791", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72167", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000135", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000130", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4675r462649_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:718" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the mount command and syscall.", + "id": "V-204552", + "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged mount commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:686", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"mount\" command and syscall occur.\n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S mount -F auid>=1000 -F auid!=unset -k privileged-mount\n-a always,exit -F arch=b64 -S mount -F auid>=1000 -F auid!=unset -k privileged-mount\n-a always,exit -F path=/usr/bin/mount -F auid>=1000 -F auid!=unset -k privileged-mount\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204552\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204552\",\n \"cdf:title\": \"SRG-OS-000042-GPOS-00020\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204552r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204552r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-030740\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must audit all uses of the mount command and syscall.\",\n \"cdf:description\": \"<VulnDiscussion>Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged mount commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-27447-2\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86795\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72171\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000135\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002884\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"mount\\\" command and syscall occur.\\n\\nAdd or update the following rules in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F arch=b32 -S mount -F auid>=1000 -F auid!=unset -k privileged-mount\\n-a always,exit -F arch=b64 -S mount -F auid>=1000 -F auid!=unset -k privileged-mount\\n-a always,exit -F path=/usr/bin/mount -F auid>=1000 -F auid!=unset -k privileged-mount\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-4676r462652_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4676r462652_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:686\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:20" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000135", + "CCI-002884" + ], + "nist": [ + "AU-3 (1)", + "MA-4 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged mount commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204553", + "group_title": "SRG-OS-000042-GPOS-00020", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204553r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:757" + } + }, + "fix_id": "F-4677r462655_fix", + "fixtext_fixref": "F-4677r462655_fix", + "ident": [ + { + "text": "CCE-80405-4", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86797", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72173", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000135", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204553r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:20", + "idref": "xccdf_mil.disa.stig_rule_SV-204552r603261_rule", + "version": "RHEL-07-030740", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-27447-2", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86795", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72171", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000135", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4676r462652_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:686" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the umount command.", + "id": "V-204553", + "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged mount commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:757", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"umount\" command occur.\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F path=/usr/bin/umount -F auid>=1000 -F auid!=unset -k privileged-mount\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204553\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204553\",\n \"cdf:title\": \"SRG-OS-000042-GPOS-00020\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204553r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204553r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-030750\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must audit all uses of the umount command.\",\n \"cdf:description\": \"<VulnDiscussion>Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged mount commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80405-4\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86797\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72173\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000135\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002884\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"umount\\\" command occur.\\n\\nAdd or update the following rule in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F path=/usr/bin/umount -F auid>=1000 -F auid!=unset -k privileged-mount\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-4677r462655_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4677r462655_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:757\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:20" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000135", + "CCI-002884" + ], + "nist": [ + "AU-3 (1)", + "MA-4 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged postfix commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204554", + "group_title": "SRG-OS-000042-GPOS-00020", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204554r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:736" + } + }, + "fix_id": "F-4678r462658_fix", + "fixtext_fixref": "F-4678r462658_fix", + "ident": [ + { + "text": "CCE-80406-2", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86799", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72175", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000135", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204554r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:20", + "idref": "xccdf_mil.disa.stig_rule_SV-204553r603261_rule", + "version": "RHEL-07-030750", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-80405-4", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86797", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72173", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000135", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4677r462655_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:757" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the postdrop command.", + "id": "V-204554", + "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged postfix commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:736", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"postdrop\" command occur.\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F path=/usr/sbin/postdrop -F auid>=1000 -F auid!=unset -k privileged-postfix\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204554\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204554\",\n \"cdf:title\": \"SRG-OS-000042-GPOS-00020\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204554r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204554r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-030760\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must audit all uses of the postdrop command.\",\n \"cdf:description\": \"<VulnDiscussion>Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged postfix commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80406-2\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86799\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72175\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000135\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002884\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"postdrop\\\" command occur.\\n\\nAdd or update the following rule in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F path=/usr/sbin/postdrop -F auid>=1000 -F auid!=unset -k privileged-postfix\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-4678r462658_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4678r462658_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:736\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:20" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000135", + "CCI-002884" + ], + "nist": [ + "AU-3 (1)", + "MA-4 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged postfix commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204555", + "group_title": "SRG-OS-000042-GPOS-00020", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204555r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:739" + } + }, + "fix_id": "F-4679r462661_fix", + "fixtext_fixref": "F-4679r462661_fix", + "ident": [ + { + "text": "CCE-80407-0", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86801", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72177", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000135", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204555r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:20", + "idref": "xccdf_mil.disa.stig_rule_SV-204554r603261_rule", + "version": "RHEL-07-030760", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-80406-2", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86799", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72175", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000135", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4678r462658_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:736" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the postqueue command.", + "id": "V-204555", + "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged postfix commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:739", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"postqueue\" command occur.\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F path=/usr/sbin/postqueue -F auid>=1000 -F auid!=unset -k privileged-postfix\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204555\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204555\",\n \"cdf:title\": \"SRG-OS-000042-GPOS-00020\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204555r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204555r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-030770\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must audit all uses of the postqueue command.\",\n \"cdf:description\": \"<VulnDiscussion>Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged postfix commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80407-0\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86801\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72177\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000135\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002884\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"postqueue\\\" command occur.\\n\\nAdd or update the following rule in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F path=/usr/sbin/postqueue -F auid>=1000 -F auid!=unset -k privileged-postfix\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-4679r462661_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4679r462661_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:739\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:20" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000135", + "CCI-000172", + "CCI-002884" + ], + "nist": [ + "AU-3 (1)", + "AU-12 c", + "MA-4 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged ssh commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204556", + "group_title": "SRG-OS-000042-GPOS-00020", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204556r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:745" + } + }, + "fix_id": "F-4680r462664_fix", + "fixtext_fixref": "F-4680r462664_fix", + "ident": [ + { + "text": "CCE-80408-8", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86803", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72179", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000135", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204556r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:20", + "idref": "xccdf_mil.disa.stig_rule_SV-204555r603261_rule", + "version": "RHEL-07-030770", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-80407-0", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86801", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72177", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000135", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4679r462661_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:739" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the ssh-keysign command.", + "id": "V-204556", + "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged ssh commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:745", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"ssh-keysign\" command occur.\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F path=/usr/libexec/openssh/ssh-keysign -F auid>=1000 -F auid!=unset -k privileged-ssh\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204556\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204556\",\n \"cdf:title\": \"SRG-OS-000042-GPOS-00020\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204556r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204556r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-030780\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must audit all uses of the ssh-keysign command.\",\n \"cdf:description\": \"<VulnDiscussion>Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged ssh commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80408-8\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86803\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72179\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000135\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002884\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"ssh-keysign\\\" command occur.\\n\\nAdd or update the following rule in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F path=/usr/libexec/openssh/ssh-keysign -F auid>=1000 -F auid!=unset -k privileged-ssh\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-4680r462664_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4680r462664_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:745\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:20" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000172", + "CCI-000135", + "CCI-002884" + ], + "nist": [ + "AU-12 c", + "AU-3 (1)", + "MA-4 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204557", + "group_title": "SRG-OS-000042-GPOS-00020", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204557r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:721" + } + }, + "fix_id": "F-4681r462667_fix", + "fixtext_fixref": "F-4681r462667_fix", + "ident": [ + { + "text": "CCE-80410-4", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86807", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72183", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000135", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204557r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:20", + "idref": "xccdf_mil.disa.stig_rule_SV-204556r603261_rule", + "version": "RHEL-07-030780", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-80408-8", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86803", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72179", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000135", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4680r462664_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:745" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the crontab command.", + "id": "V-204557", + "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:721", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"crontab\" command occur.\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F path=/usr/bin/crontab -F auid>=1000 -F auid!=unset -k privileged-cron\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204557\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204557\",\n \"cdf:title\": \"SRG-OS-000042-GPOS-00020\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204557r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204557r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-030800\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must audit all uses of the crontab command.\",\n \"cdf:description\": \"<VulnDiscussion>Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000042-GPOS-00020, SRG-OS-000392-GPOS-00172, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80410-4\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86807\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72183\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000135\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002884\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"crontab\\\" command occur.\\n\\nAdd or update the following rule in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F path=/usr/bin/crontab -F auid>=1000 -F auid!=unset -k privileged-cron\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-4681r462667_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4681r462667_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:721\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:20" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000172" + ], + "nist": [ + "AU-12 c" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204558", + "group_title": "SRG-OS-000471-GPOS-00215", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204558r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:730" + } + }, + "fix_id": "F-4682r462670_fix", + "fixtext_fixref": "F-4682r462670_fix", + "ident": [ + { + "text": "CCE-80411-2", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86809", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72185", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204558r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:20", + "idref": "xccdf_mil.disa.stig_rule_SV-204557r603261_rule", + "version": "RHEL-07-030800", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-80410-4", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86807", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72183", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000135", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4681r462667_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:721" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the pam_timestamp_check command.", + "id": "V-204558", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:730", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"pam_timestamp_check\" command occur.\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F path=/usr/sbin/pam_timestamp_check -F auid>=1000 -F auid!=unset -k privileged-pam\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204558\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204558\",\n \"cdf:title\": \"SRG-OS-000471-GPOS-00215\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204558r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204558r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-030810\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must audit all uses of the pam_timestamp_check command.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80411-2\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86809\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72185\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"pam_timestamp_check\\\" command occur.\\n\\nAdd or update the following rule in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F path=/usr/sbin/pam_timestamp_check -F auid>=1000 -F auid!=unset -k privileged-pam\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-4682r462670_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4682r462670_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:730\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:20" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000172" + ], + "nist": [ + "AU-12 c" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000471-GPOS-00216, SRG-OS-000477-GPOS-00222\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204559", + "group_title": "SRG-OS-000471-GPOS-00216", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204559r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:93705" + } + }, + "fix_id": "F-4683r88870_fix", + "fixtext_fixref": "F-4683r88870_fix", + "ident": [ + { + "text": "SV-93705", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-78999", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204559r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:20", + "idref": "xccdf_mil.disa.stig_rule_SV-204558r603261_rule", + "version": "RHEL-07-030810", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-80411-2", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86809", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72185", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4682r462670_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:730" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the create_module syscall.", + "id": "V-204559", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nSatisfies: SRG-OS-000471-GPOS-00216, SRG-OS-000477-GPOS-00222", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:93705", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"create_module\" syscall occur.\n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S create_module -k module-change\n\n-a always,exit -F arch=b64 -S create_module -k module-change\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204559\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204559\",\n \"cdf:title\": \"SRG-OS-000471-GPOS-00216\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204559r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204559r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-030819\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must audit all uses of the create_module syscall.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000471-GPOS-00216, SRG-OS-000477-GPOS-00222</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"SV-93705\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-78999\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"create_module\\\" syscall occur.\\n\\nAdd or update the following rules in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F arch=b32 -S create_module -k module-change\\n\\n-a always,exit -F arch=b64 -S create_module -k module-change\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-4683r88870_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4683r88870_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:93705\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:20" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000172" + ], + "nist": [ + "AU-12 c" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000471-GPOS-00216, SRG-OS-000477-GPOS-00222\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204560", + "group_title": "SRG-OS-000471-GPOS-00216", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204560r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:657" + } + }, + "fix_id": "F-4684r88873_fix", + "fixtext_fixref": "F-4684r88873_fix", + "ident": [ + { + "text": "CCE-80414-6", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86811", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72187", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204560r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:20", + "idref": "xccdf_mil.disa.stig_rule_SV-204559r603261_rule", + "version": "RHEL-07-030819", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "SV-93705", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-78999", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4683r88870_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:93705" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the init_module syscall.", + "id": "V-204560", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nSatisfies: SRG-OS-000471-GPOS-00216, SRG-OS-000477-GPOS-00222", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:657", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"init_module\" syscall occur.\n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S init_module -k module-change\n\n-a always,exit -F arch=b64 -S init_module -k module-change\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204560\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204560\",\n \"cdf:title\": \"SRG-OS-000471-GPOS-00216\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204560r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204560r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-030820\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must audit all uses of the init_module syscall.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000471-GPOS-00216, SRG-OS-000477-GPOS-00222</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80414-6\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86811\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72187\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"init_module\\\" syscall occur.\\n\\nAdd or update the following rules in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F arch=b32 -S init_module -k module-change\\n\\n-a always,exit -F arch=b64 -S init_module -k module-change\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-4684r88873_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4684r88873_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:657\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:20" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000172" + ], + "nist": [ + "AU-12 c" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000471-GPOS-00216, SRG-OS-000477-GPOS-00222\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204561", + "group_title": "SRG-OS-000471-GPOS-00216", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204561r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:93707" + } + }, + "fix_id": "F-4685r88876_fix", + "fixtext_fixref": "F-4685r88876_fix", + "ident": [ + { + "text": "CCE-80547-3", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-93707", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-79001", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204561r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:20", + "idref": "xccdf_mil.disa.stig_rule_SV-204560r603261_rule", + "version": "RHEL-07-030820", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-80414-6", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86811", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72187", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4684r88873_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:657" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the finit_module syscall.", + "id": "V-204561", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nSatisfies: SRG-OS-000471-GPOS-00216, SRG-OS-000477-GPOS-00222", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:93707", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"finit_module\" syscall occur.\n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S finit_module -k module-change\n\n-a always,exit -F arch=b64 -S finit_module -k module-change\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204561\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204561\",\n \"cdf:title\": \"SRG-OS-000471-GPOS-00216\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204561r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204561r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-030821\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must audit all uses of the finit_module syscall.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000471-GPOS-00216, SRG-OS-000477-GPOS-00222</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80547-3\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-93707\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-79001\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"finit_module\\\" syscall occur.\\n\\nAdd or update the following rules in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F arch=b32 -S finit_module -k module-change\\n\\n-a always,exit -F arch=b64 -S finit_module -k module-change\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-4685r88876_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4685r88876_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:93707\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:21" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000172" + ], + "nist": [ + "AU-12 c" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000471-GPOS-00216, SRG-OS-000477-GPOS-00222\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204562", + "group_title": "SRG-OS-000471-GPOS-00216", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204562r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:658" + } + }, + "fix_id": "F-4686r88879_fix", + "fixtext_fixref": "F-4686r88879_fix", + "ident": [ + { + "text": "CCE-80415-3", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86813", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72189", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204562r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:21", + "idref": "xccdf_mil.disa.stig_rule_SV-204561r603261_rule", + "version": "RHEL-07-030821", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-80547-3", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-93707", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-79001", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4685r88876_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:93707" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the delete_module syscall.", + "id": "V-204562", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nSatisfies: SRG-OS-000471-GPOS-00216, SRG-OS-000477-GPOS-00222", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:658", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"delete_module\" syscall occur.\n\nAdd or update the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S delete_module -k module-change\n\n-a always,exit -F arch=b64 -S delete_module -k module-change\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204562\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204562\",\n \"cdf:title\": \"SRG-OS-000471-GPOS-00216\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204562r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204562r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-030830\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must audit all uses of the delete_module syscall.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000471-GPOS-00216, SRG-OS-000477-GPOS-00222</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80415-3\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86813\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72189\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"delete_module\\\" syscall occur.\\n\\nAdd or update the following rules in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F arch=b32 -S delete_module -k module-change\\n\\n-a always,exit -F arch=b64 -S delete_module -k module-change\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-4686r88879_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4686r88879_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:658\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:21" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000172" + ], + "nist": [ + "AU-12 c" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000471-GPOS-00216, SRG-OS-000477-GPOS-00222\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204563", + "group_title": "SRG-OS-000471-GPOS-00216", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204563r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:86815" + } + }, + "fix_id": "F-4687r462673_fix", + "fixtext_fixref": "F-4687r462673_fix", + "ident": [ + { + "text": "SV-86815", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72191", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204563r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:21", + "idref": "xccdf_mil.disa.stig_rule_SV-204562r603261_rule", + "version": "RHEL-07-030830", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-80415-3", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86813", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72189", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4686r88879_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:658" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the kmod command.", + "id": "V-204563", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000471-GPOS-00216, SRG-OS-000477-GPOS-00222", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:86815", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"kmod\" command occur.\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-w /usr/bin/kmod -p x -F auid!=unset -k module-change\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204563\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204563\",\n \"cdf:title\": \"SRG-OS-000471-GPOS-00216\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204563r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204563r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-030840\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must audit all uses of the kmod command.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000471-GPOS-00216, SRG-OS-000477-GPOS-00222</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"SV-86815\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72191\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"kmod\\\" command occur.\\n\\nAdd or update the following rule in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-w /usr/bin/kmod -p x -F auid!=unset -k module-change\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-4687r462673_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4687r462673_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:86815\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:21" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000018", + "CCI-000172", + "CCI-001403", + "CCI-002130" + ], + "nist": [ + "AC-2 (4)", + "AU-12 c", + "AC-2 (4)", + "AC-2 (4)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000004-GPOS-00004, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000476-GPOS-00221\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204564", + "group_title": "SRG-OS-000004-GPOS-00004", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204564r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:875" + } + }, + "fix_id": "F-4688r88885_fix", + "fixtext_fixref": "F-4688r88885_fix", + "ident": [ + { + "text": "CCE-80435-1", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86821", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72197", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000018", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001403", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002130", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204564r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:21", + "idref": "xccdf_mil.disa.stig_rule_SV-204563r603261_rule", + "version": "RHEL-07-030840", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "SV-86815", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72191", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4687r462673_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:86815" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/passwd.", + "id": "V-204564", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nSatisfies: SRG-OS-000004-GPOS-00004, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000476-GPOS-00221", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:875", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records for all account creations, modifications, disabling, and termination events that affect \"/etc/passwd\".\n\nAdd or update the following rule \"/etc/audit/rules.d/audit.rules\":\n\n-w /etc/passwd -p wa -k identity\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204564\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204564\",\n \"cdf:title\": \"SRG-OS-000004-GPOS-00004\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204564r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204564r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-030870\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/passwd.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000004-GPOS-00004, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000476-GPOS-00221</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80435-1\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86821\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72197\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000018\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-001403\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002130\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to generate audit records for all account creations, modifications, disabling, and termination events that affect \\\"/etc/passwd\\\".\\n\\nAdd or update the following rule \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-w /etc/passwd -p wa -k identity\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-4688r88885_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4688r88885_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:875\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:21" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001403", + "CCI-000018", + "CCI-000172", + "CCI-002130" + ], + "nist": [ + "AC-2 (4)", + "AC-2 (4)", + "AU-12 c", + "AC-2 (4)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204565", + "group_title": "SRG-OS-000004-GPOS-00004", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204565r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:866" + } + }, + "fix_id": "F-4689r88888_fix", + "fixtext_fixref": "F-4689r88888_fix", + "ident": [ + { + "text": "CCE-80433-6", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-87817", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-73165", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001403", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000018", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002130", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204565r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:21", + "idref": "xccdf_mil.disa.stig_rule_SV-204564r603261_rule", + "version": "RHEL-07-030870", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-80435-1", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86821", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72197", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000018", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001403", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002130", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4688r88885_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:875" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/group.", + "id": "V-204565", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:866", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records for all account creations, modifications, disabling, and termination events that affect \"/etc/group\".\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-w /etc/group -p wa -k identity\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204565\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204565\",\n \"cdf:title\": \"SRG-OS-000004-GPOS-00004\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204565r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204565r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-030871\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/group.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80433-6\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-87817\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-73165\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-001403\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000018\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002130\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to generate audit records for all account creations, modifications, disabling, and termination events that affect \\\"/etc/group\\\".\\n\\nAdd or update the following rule in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-w /etc/group -p wa -k identity\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-4689r88888_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4689r88888_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:866\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:21" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000018", + "CCI-000172", + "CCI-001403", + "CCI-002130" + ], + "nist": [ + "AC-2 (4)", + "AU-12 c", + "AC-2 (4)", + "AC-2 (4)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204566", + "group_title": "SRG-OS-000004-GPOS-00004", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204566r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:869" + } + }, + "fix_id": "F-4690r88891_fix", + "fixtext_fixref": "F-4690r88891_fix", + "ident": [ + { + "text": "CCE-80432-8", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-87819", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-73167", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000018", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001403", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002130", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204566r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:21", + "idref": "xccdf_mil.disa.stig_rule_SV-204565r603261_rule", + "version": "RHEL-07-030871", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-80433-6", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-87817", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-73165", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001403", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000018", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002130", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4689r88888_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:866" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/gshadow.", + "id": "V-204566", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:869", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records for all account creations, modifications, disabling, and termination events that affect \"/etc/gshadow\".\n\nAdd or update the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-w /etc/gshadow -p wa -k identity\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204566\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204566\",\n \"cdf:title\": \"SRG-OS-000004-GPOS-00004\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204566r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204566r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-030872\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/gshadow.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80432-8\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-87819\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-73167\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000018\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-001403\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002130\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to generate audit records for all account creations, modifications, disabling, and termination events that affect \\\"/etc/gshadow\\\".\\n\\nAdd or update the following rule in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-w /etc/gshadow -p wa -k identity\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-4690r88891_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4690r88891_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:869\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:21" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001403", + "CCI-000172", + "CCI-000018", + "CCI-002130" + ], + "nist": [ + "AC-2 (4)", + "AU-12 c", + "AC-2 (4)", + "AC-2 (4)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204567", + "group_title": "SRG-OS-000004-GPOS-00004", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204567r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:878" + } + }, + "fix_id": "F-4691r88894_fix", + "fixtext_fixref": "F-4691r88894_fix", + "ident": [ + { + "text": "CCE-80431-0", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-87823", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-73171", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001403", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000018", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002130", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204567r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:21", + "idref": "xccdf_mil.disa.stig_rule_SV-204566r603261_rule", + "version": "RHEL-07-030872", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-80432-8", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-87819", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-73167", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000018", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001403", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002130", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4690r88891_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:869" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/shadow.", + "id": "V-204567", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:878", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/shadow.\n\nAdd or update the following file system rule in \"/etc/audit/rules.d/audit.rules\":\n\n-w /etc/shadow -p wa -k identity\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204567\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204567\",\n \"cdf:title\": \"SRG-OS-000004-GPOS-00004\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204567r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204567r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-030873\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/shadow.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80431-0\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-87823\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-73171\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-001403\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000018\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002130\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/shadow.\\n\\nAdd or update the following file system rule in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-w /etc/shadow -p wa -k identity\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-4691r88894_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4691r88894_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:878\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:21" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000018", + "CCI-000172", + "CCI-001403", + "CCI-002130" + ], + "nist": [ + "AC-2 (4)", + "AU-12 c", + "AC-2 (4)", + "AC-2 (4)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204568", + "group_title": "SRG-OS-000004-GPOS-00004", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204568r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:872" + } + }, + "fix_id": "F-4692r88897_fix", + "fixtext_fixref": "F-4692r88897_fix", + "ident": [ + { + "text": "CCE-80430-2", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-87825", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-73173", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000018", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001403", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002130", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204568r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:21", + "idref": "xccdf_mil.disa.stig_rule_SV-204567r603261_rule", + "version": "RHEL-07-030873", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-80431-0", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-87823", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-73171", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001403", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000018", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002130", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4691r88894_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:878" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/opasswd.", + "id": "V-204568", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:872", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/opasswd.\n\nAdd or update the following file system rule in \"/etc/audit/rules.d/audit.rules\":\n\n-w /etc/security/opasswd -p wa -k identity\n\nThe audit daemon must be restarted for the changes to take effect:\n# systemctl restart auditd", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204568\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204568\",\n \"cdf:title\": \"SRG-OS-000004-GPOS-00004\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204568r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204568r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-030874\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/opasswd.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80430-2\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-87825\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-73173\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000018\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-001403\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002130\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/opasswd.\\n\\nAdd or update the following file system rule in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-w /etc/security/opasswd -p wa -k identity\\n\\nThe audit daemon must be restarted for the changes to take effect:\\n# systemctl restart auditd\",\n \"fixref\": \"F-4692r88897_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4692r88897_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:872\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:21" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000172", + "CCI-002884" + ], + "nist": [ + "AU-12 c", + "MA-4 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"If the system is not configured to audit certain activities and write them to an audit log, it is more difficult to detect and track system compromises and damages incurred during a system compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000466-GPOS-00210, SRG-OS-000467-GPOS-00211, SRG-OS-000468-GPOS-00212, SRG-OS-000392-GPOS-00172\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204569", + "group_title": "SRG-OS-000466-GPOS-00210", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204569r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:628" + } + }, + "fix_id": "F-4693r462676_fix", + "fixtext_fixref": "F-4693r462676_fix", + "ident": [ + { + "text": "CCE-27206-2", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86823", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72199", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204569r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:21", + "idref": "xccdf_mil.disa.stig_rule_SV-204568r603261_rule", + "version": "RHEL-07-030874", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-80430-2", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-87825", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-73173", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000018", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001403", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002130", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4692r88897_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:872" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the rename syscall.", + "id": "V-204569", + "desc": "If the system is not configured to audit certain activities and write them to an audit log, it is more difficult to detect and track system compromises and damages incurred during a system compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000466-GPOS-00210, SRG-OS-000467-GPOS-00211, SRG-OS-000468-GPOS-00212, SRG-OS-000392-GPOS-00172", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:628", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"rename\" syscall occur.\n\nAdd the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S rename -F auid>=1000 -F auid!=unset -k delete\n\n-a always,exit -F arch=b64 -S rename -F auid>=1000 -F auid!=unset -k delete\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204569\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204569\",\n \"cdf:title\": \"SRG-OS-000466-GPOS-00210\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204569r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204569r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-030880\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must audit all uses of the rename syscall.\",\n \"cdf:description\": \"<VulnDiscussion>If the system is not configured to audit certain activities and write them to an audit log, it is more difficult to detect and track system compromises and damages incurred during a system compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000466-GPOS-00210, SRG-OS-000467-GPOS-00211, SRG-OS-000468-GPOS-00212, SRG-OS-000392-GPOS-00172</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-27206-2\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86823\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72199\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002884\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"rename\\\" syscall occur.\\n\\nAdd the following rules in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F arch=b32 -S rename -F auid>=1000 -F auid!=unset -k delete\\n\\n-a always,exit -F arch=b64 -S rename -F auid>=1000 -F auid!=unset -k delete\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-4693r462676_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4693r462676_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:628\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:21" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000172", + "CCI-002884" + ], + "nist": [ + "AU-12 c", + "MA-4 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"If the system is not configured to audit certain activities and write them to an audit log, it is more difficult to detect and track system compromises and damages incurred during a system compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000466-GPOS-00210, SRG-OS-000467-GPOS-00211, SRG-OS-000468-GPOS-00212, SRG-OS-000392-GPOS-00172\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204570", + "group_title": "SRG-OS-000466-GPOS-00210", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204570r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:629" + } + }, + "fix_id": "F-4694r462679_fix", + "fixtext_fixref": "F-4694r462679_fix", + "ident": [ + { + "text": "CCE-80413-8", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86825", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72201", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204570r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:21", + "idref": "xccdf_mil.disa.stig_rule_SV-204569r603261_rule", + "version": "RHEL-07-030880", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-27206-2", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86823", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72199", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4693r462676_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:628" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the renameat syscall.", + "id": "V-204570", + "desc": "If the system is not configured to audit certain activities and write them to an audit log, it is more difficult to detect and track system compromises and damages incurred during a system compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000466-GPOS-00210, SRG-OS-000467-GPOS-00211, SRG-OS-000468-GPOS-00212, SRG-OS-000392-GPOS-00172", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:629", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"renameat\" syscall occur.\n\nAdd the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S renameat -F auid>=1000 -F auid!=unset -k delete\n\n-a always,exit -F arch=b64 -S renameat -F auid>=1000 -F auid!=unset -k delete\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204570\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204570\",\n \"cdf:title\": \"SRG-OS-000466-GPOS-00210\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204570r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204570r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-030890\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must audit all uses of the renameat syscall.\",\n \"cdf:description\": \"<VulnDiscussion>If the system is not configured to audit certain activities and write them to an audit log, it is more difficult to detect and track system compromises and damages incurred during a system compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000466-GPOS-00210, SRG-OS-000467-GPOS-00211, SRG-OS-000468-GPOS-00212, SRG-OS-000392-GPOS-00172</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80413-8\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86825\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72201\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002884\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"renameat\\\" syscall occur.\\n\\nAdd the following rules in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F arch=b32 -S renameat -F auid>=1000 -F auid!=unset -k delete\\n\\n-a always,exit -F arch=b64 -S renameat -F auid>=1000 -F auid!=unset -k delete\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-4694r462679_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4694r462679_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:629\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:21" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000172", + "CCI-002884" + ], + "nist": [ + "AU-12 c", + "MA-4 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"If the system is not configured to audit certain activities and write them to an audit log, it is more difficult to detect and track system compromises and damages incurred during a system compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000466-GPOS-00210, SRG-OS-000467-GPOS-00211, SRG-OS-000468-GPOS-00212, SRG-OS-000392-GPOS-00172\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204571", + "group_title": "SRG-OS-000466-GPOS-00210", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204571r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:625" + } + }, + "fix_id": "F-4695r462682_fix", + "fixtext_fixref": "F-4695r462682_fix", + "ident": [ + { + "text": "CCE-80412-0", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86827", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72203", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204571r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:21", + "idref": "xccdf_mil.disa.stig_rule_SV-204570r603261_rule", + "version": "RHEL-07-030890", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-80413-8", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86825", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72201", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4694r462679_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:629" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the rmdir syscall.", + "id": "V-204571", + "desc": "If the system is not configured to audit certain activities and write them to an audit log, it is more difficult to detect and track system compromises and damages incurred during a system compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000466-GPOS-00210, SRG-OS-000467-GPOS-00211, SRG-OS-000468-GPOS-00212, SRG-OS-000392-GPOS-00172", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:625", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"rmdir\" syscall occur.\n\nAdd the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S rmdir -F auid>=1000 -F auid!=unset -k delete\n\n-a always,exit -F arch=b64 -S rmdir -F auid>=1000 -F auid!=unset -k delete\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204571\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204571\",\n \"cdf:title\": \"SRG-OS-000466-GPOS-00210\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204571r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204571r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-030900\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must audit all uses of the rmdir syscall.\",\n \"cdf:description\": \"<VulnDiscussion>If the system is not configured to audit certain activities and write them to an audit log, it is more difficult to detect and track system compromises and damages incurred during a system compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000466-GPOS-00210, SRG-OS-000467-GPOS-00211, SRG-OS-000468-GPOS-00212, SRG-OS-000392-GPOS-00172</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80412-0\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86827\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72203\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002884\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"rmdir\\\" syscall occur.\\n\\nAdd the following rules in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F arch=b32 -S rmdir -F auid>=1000 -F auid!=unset -k delete\\n\\n-a always,exit -F arch=b64 -S rmdir -F auid>=1000 -F auid!=unset -k delete\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-4695r462682_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4695r462682_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:625\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:21" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000172", + "CCI-002884" + ], + "nist": [ + "AU-12 c", + "MA-4 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"If the system is not configured to audit certain activities and write them to an audit log, it is more difficult to detect and track system compromises and damages incurred during a system compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000466-GPOS-00210, SRG-OS-000467-GPOS-00211, SRG-OS-000468-GPOS-00212, SRG-OS-000392-GPOS-00172\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204572", + "group_title": "SRG-OS-000466-GPOS-00210", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204572r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:626" + } + }, + "fix_id": "F-4696r462685_fix", + "fixtext_fixref": "F-4696r462685_fix", + "ident": [ + { + "text": "CCE-27206-2", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86829", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72205", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204572r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:21", + "idref": "xccdf_mil.disa.stig_rule_SV-204571r603261_rule", + "version": "RHEL-07-030900", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-80412-0", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86827", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72203", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4695r462682_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:625" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the unlink syscall.", + "id": "V-204572", + "desc": "If the system is not configured to audit certain activities and write them to an audit log, it is more difficult to detect and track system compromises and damages incurred during a system compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000466-GPOS-00210, SRG-OS-000467-GPOS-00211, SRG-OS-000468-GPOS-00212, SRG-OS-000392-GPOS-00172", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:626", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"unlink\" syscall occur.\n\nAdd the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S unlink -F auid>=1000 -F auid!=unset -k delete\n\n-a always,exit -F arch=b64 -S unlink -F auid>=1000 -F auid!=unset -k delete\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204572\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204572\",\n \"cdf:title\": \"SRG-OS-000466-GPOS-00210\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204572r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204572r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-030910\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must audit all uses of the unlink syscall.\",\n \"cdf:description\": \"<VulnDiscussion>If the system is not configured to audit certain activities and write them to an audit log, it is more difficult to detect and track system compromises and damages incurred during a system compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000466-GPOS-00210, SRG-OS-000467-GPOS-00211, SRG-OS-000468-GPOS-00212, SRG-OS-000392-GPOS-00172</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-27206-2\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86829\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72205\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002884\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"unlink\\\" syscall occur.\\n\\nAdd the following rules in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F arch=b32 -S unlink -F auid>=1000 -F auid!=unset -k delete\\n\\n-a always,exit -F arch=b64 -S unlink -F auid>=1000 -F auid!=unset -k delete\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-4696r462685_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4696r462685_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:626\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:21" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000172", + "CCI-002884" + ], + "nist": [ + "AU-12 c", + "MA-4 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"If the system is not configured to audit certain activities and write them to an audit log, it is more difficult to detect and track system compromises and damages incurred during a system compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000466-GPOS-00210, SRG-OS-000467-GPOS-00211, SRG-OS-000468-GPOS-00212, SRG-OS-000392-GPOS-00172\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204573", + "group_title": "SRG-OS-000466-GPOS-00210", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204573r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:627" + } + }, + "fix_id": "F-4697r462688_fix", + "fixtext_fixref": "F-4697r462688_fix", + "ident": [ + { + "text": "CCE-27206-2", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86831", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72207", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204573r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:21", + "idref": "xccdf_mil.disa.stig_rule_SV-204572r603261_rule", + "version": "RHEL-07-030910", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-27206-2", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86829", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72205", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4696r462685_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:626" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must audit all uses of the unlinkat syscall.", + "id": "V-204573", + "desc": "If the system is not configured to audit certain activities and write them to an audit log, it is more difficult to detect and track system compromises and damages incurred during a system compromise.\n\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000466-GPOS-00210, SRG-OS-000467-GPOS-00211, SRG-OS-000468-GPOS-00212, SRG-OS-000392-GPOS-00172", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:627", + "label": "check" + }, + { + "data": "Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \"unlinkat\" syscall occur.\n\nAdd the following rules in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S unlinkat -F auid>=1000 -F auid!=unset -k delete\n\n-a always,exit -F arch=b64 -S unlinkat -F auid>=1000 -F auid!=unset -k delete\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204573\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204573\",\n \"cdf:title\": \"SRG-OS-000466-GPOS-00210\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204573r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204573r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-030920\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must audit all uses of the unlinkat syscall.\",\n \"cdf:description\": \"<VulnDiscussion>If the system is not configured to audit certain activities and write them to an audit log, it is more difficult to detect and track system compromises and damages incurred during a system compromise.\\n\\nWhen a user logs on, the auid is set to the uid of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to -1. The auid representation is an unsigned 32-bit integer, which equals 4294967295. The audit system interprets -1, 4294967295, and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000466-GPOS-00210, SRG-OS-000467-GPOS-00211, SRG-OS-000468-GPOS-00212, SRG-OS-000392-GPOS-00172</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-27206-2\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86831\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72207\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000172\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002884\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to generate audit records when successful/unsuccessful attempts to use the \\\"unlinkat\\\" syscall occur.\\n\\nAdd the following rules in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F arch=b32 -S unlinkat -F auid>=1000 -F auid!=unset -k delete\\n\\n-a always,exit -F arch=b64 -S unlinkat -F auid>=1000 -F auid!=unset -k delete\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-4697r462688_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4697r462688_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:627\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:21" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000054" + ], + "nist": [ + "AC-10" + ], + "severity": "low", + "description": "{\"VulnDiscussion\":\"Operating system management includes the ability to control the number of users and user sessions that utilize an operating system. Limiting the number of allowed users and sessions per user is helpful in reducing the risks related to DoS attacks.\\n\\nThis requirement addresses concurrent sessions for information system accounts and does not address concurrent sessions by single users via multiple system accounts. The maximum number of concurrent sessions should be defined based on mission needs and the operational environment for each system.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204576", + "group_title": "SRG-OS-000027-GPOS-00008", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204576r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-export": { + "value-id": "xccdf_mil.disa.stig_value_var_accounts_max_concurrent_login_sessions", + "export-name": "oval:mil.disa.stig.rhel7:var:3792" + }, + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:449" + } + }, + "fix_id": "F-4700r88921_fix", + "fixtext_fixref": "F-4700r88921_fix", + "ident": [ + { + "text": "CCE-27081-9", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72217", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86841", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000054", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204576r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:21", + "idref": "xccdf_mil.disa.stig_rule_SV-204573r603261_rule", + "version": "RHEL-07-030920", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-27206-2", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86831", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72207", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000172", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002884", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4697r462688_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:627" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must limit the number of concurrent sessions to 10 for all accounts and/or account types.", + "id": "V-204576", + "desc": "Operating system management includes the ability to control the number of users and user sessions that utilize an operating system. Limiting the number of allowed users and sessions per user is helpful in reducing the risks related to DoS attacks.\n\nThis requirement addresses concurrent sessions for information system accounts and does not address concurrent sessions by single users via multiple system accounts. The maximum number of concurrent sessions should be defined based on mission needs and the operational environment for each system.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:449", + "label": "check" + }, + { + "data": "Configure the operating system to limit the number of concurrent sessions to \"10\" for all accounts and/or account types.\n\nAdd the following line to the top of the /etc/security/limits.conf or in a \".conf\" file defined in /etc/security/limits.d/ :\n\n* hard maxlogins 10", + "label": "fix" + } + ], + "impact": 0.3, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204576\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204576\",\n \"cdf:title\": \"SRG-OS-000027-GPOS-00008\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204576r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204576r603261_rule\",\n \"severity\": \"low\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-040000\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must limit the number of concurrent sessions to 10 for all accounts and/or account types.\",\n \"cdf:description\": \"<VulnDiscussion>Operating system management includes the ability to control the number of users and user sessions that utilize an operating system. Limiting the number of allowed users and sessions per user is helpful in reducing the risks related to DoS attacks.\\n\\nThis requirement addresses concurrent sessions for information system accounts and does not address concurrent sessions by single users via multiple system accounts. The maximum number of concurrent sessions should be defined based on mission needs and the operational environment for each system.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-27081-9\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-72217\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86841\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000054\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to limit the number of concurrent sessions to \\\"10\\\" for all accounts and/or account types.\\n\\nAdd the following line to the top of the /etc/security/limits.conf or in a \\\".conf\\\" file defined in /etc/security/limits.d/ :\\n\\n* hard maxlogins 10\",\n \"fixref\": \"F-4700r88921_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4700r88921_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-export\": {\n \"value-id\": \"xccdf_mil.disa.stig_value_var_accounts_max_concurrent_login_sessions\",\n \"export-name\": \"oval:mil.disa.stig.rhel7:var:3792\"\n },\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:449\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:21" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366", + "CCI-000803", + "CCI-000068" + ], + "nist": [ + "CM-6 b", + "IA-7", + "AC-17 (2)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Unapproved mechanisms that are used for authentication to the cryptographic module are not verified and therefore cannot be relied upon to provide confidentiality or integrity, and DoD data may be compromised.\\n\\nOperating systems utilizing encryption are required to use FIPS-compliant mechanisms for authenticating to cryptographic modules.\\n\\nFIPS 140-2 is the current standard for validating that mechanisms used to access cryptographic modules utilize authentication that meets DoD requirements. This allows for Security Levels 1, 2, 3, or 4 for use on a general purpose computing system.\\n\\nBy specifying a cipher list with the order of ciphers being in a \\\"strongest to weakest\\\" orientation, the system will automatically attempt to use the strongest cipher for securing SSH connections.\\n\\nSatisfies: SRG-OS-000033-GPOS-00014, SRG-OS-000120-GPOS-00061, SRG-OS-000125-GPOS-00065, SRG-OS-000250-GPOS-00093, SRG-OS-000393-GPOS-00173\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204578", + "group_title": "SRG-OS-000033-GPOS-00014", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204578r603843_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:1399" + } + }, + "fix_id": "F-4702r603842_fix", + "fixtext_fixref": "F-4702r603842_fix", + "ident": [ + { + "text": "CCE-27295-5", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72221", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86845", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000803", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000068", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204578r603843_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:21", + "idref": "xccdf_mil.disa.stig_rule_SV-204576r603261_rule", + "version": "RHEL-07-040000", + "severity": "low", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-27081-9", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72217", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86841", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000054", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4700r88921_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-export": { + "value-id": "xccdf_mil.disa.stig_value_var_accounts_max_concurrent_login_sessions", + "export-name": "oval:mil.disa.stig.rhel7:var:3792" + }, + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:449" + } + } + }, + "value": { + "type": "number", + "Id": "xccdf_mil.disa.stig_value_var_accounts_max_concurrent_login_sessions", + "id": "xccdf_mil.disa.stig_value_var_accounts_max_concurrent_login_sessions", + "cdf:title": "Maximum concurrent login sessions", + "cdf:description": "Maximum number of concurrent sessions by a user", + "cdf:value": [ + 10, + { + "text": 1, + "selector": "1" + }, + { + "text": 3, + "selector": "3" + }, + { + "text": 5, + "selector": "5" + }, + { + "text": 10, + "selector": "10" + }, + { + "text": 15, + "selector": "15" + }, + { + "text": 20, + "selector": "20" + } + ] + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux 7 operating system must implement DoD-approved encryption to protect the confidentiality of SSH connections.", + "id": "V-204578", + "desc": "Unapproved mechanisms that are used for authentication to the cryptographic module are not verified and therefore cannot be relied upon to provide confidentiality or integrity, and DoD data may be compromised.\n\nOperating systems utilizing encryption are required to use FIPS-compliant mechanisms for authenticating to cryptographic modules.\n\nFIPS 140-2 is the current standard for validating that mechanisms used to access cryptographic modules utilize authentication that meets DoD requirements. This allows for Security Levels 1, 2, 3, or 4 for use on a general purpose computing system.\n\nBy specifying a cipher list with the order of ciphers being in a \"strongest to weakest\" orientation, the system will automatically attempt to use the strongest cipher for securing SSH connections.\n\nSatisfies: SRG-OS-000033-GPOS-00014, SRG-OS-000120-GPOS-00061, SRG-OS-000125-GPOS-00065, SRG-OS-000250-GPOS-00093, SRG-OS-000393-GPOS-00173", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:1399", + "label": "check" + }, + { + "data": "Configure SSH to use FIPS 140-2 approved cryptographic algorithms.\n\nAdd the following line (or modify the line to have the required value) to the \"/etc/ssh/sshd_config\" file (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor).\n\nCiphers aes256-ctr,aes192-ctr,aes128-ctr\n\nThe SSH service must be restarted for changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204578\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204578\",\n \"cdf:title\": \"SRG-OS-000033-GPOS-00014\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204578r603843_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204578r603843_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-040110\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux 7 operating system must implement DoD-approved encryption to protect the confidentiality of SSH connections.\",\n \"cdf:description\": \"<VulnDiscussion>Unapproved mechanisms that are used for authentication to the cryptographic module are not verified and therefore cannot be relied upon to provide confidentiality or integrity, and DoD data may be compromised.\\n\\nOperating systems utilizing encryption are required to use FIPS-compliant mechanisms for authenticating to cryptographic modules.\\n\\nFIPS 140-2 is the current standard for validating that mechanisms used to access cryptographic modules utilize authentication that meets DoD requirements. This allows for Security Levels 1, 2, 3, or 4 for use on a general purpose computing system.\\n\\nBy specifying a cipher list with the order of ciphers being in a \\\"strongest to weakest\\\" orientation, the system will automatically attempt to use the strongest cipher for securing SSH connections.\\n\\nSatisfies: SRG-OS-000033-GPOS-00014, SRG-OS-000120-GPOS-00061, SRG-OS-000125-GPOS-00065, SRG-OS-000250-GPOS-00093, SRG-OS-000393-GPOS-00173</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-27295-5\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-72221\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86845\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000803\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000068\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure SSH to use FIPS 140-2 approved cryptographic algorithms.\\n\\nAdd the following line (or modify the line to have the required value) to the \\\"/etc/ssh/sshd_config\\\" file (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor).\\n\\nCiphers aes256-ctr,aes192-ctr,aes128-ctr\\n\\nThe SSH service must be restarted for changes to take effect.\",\n \"fixref\": \"F-4702r603842_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4702r603842_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:1399\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-04-29T14:18:22" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Address space layout randomization (ASLR) makes it more difficult for an attacker to predict the location of attack code he or she has introduced into a process's address space during an attempt at exploitation. Additionally, ASLR also makes it more difficult for an attacker to know the location of existing code in order to repurpose it using return-oriented programming (ROP) techniques.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204584", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204584r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:92521" + } + }, + "fix_id": "F-4708r88945_fix", + "fixtext_fixref": "F-4708r88945_fix", + "ident": [ + { + "text": "SV-92521", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-77825", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204584r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:22", + "idref": "xccdf_mil.disa.stig_rule_SV-204578r603843_rule", + "version": "RHEL-07-040110", + "severity": "medium", + "weight": "10.0", + "cdf:result": "fail", + "cdf:ident": [ + { + "text": "CCE-27295-5", + "system": "http://cce.mitre.org" + }, + { + "text": "V-72221", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86845", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000803", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000068", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4702r603842_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:1399" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must implement virtual address space randomization.", + "id": "V-204584", + "desc": "Address space layout randomization (ASLR) makes it more difficult for an attacker to predict the location of attack code he or she has introduced into a process's address space during an attempt at exploitation. Additionally, ASLR also makes it more difficult for an attacker to know the location of existing code in order to repurpose it using return-oriented programming (ROP) techniques.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:92521", + "label": "check" + }, + { + "data": "Configure the operating system implement virtual address space randomization.\n\nSet the system to the required kernel parameter by adding the following line to \"/etc/sysctl.conf\" or a config file in the /etc/sysctl.d/ directory (or modify the line to have the required value):\n\nkernel.randomize_va_space = 2\n\nIssue the following command to make the changes take effect:\n\n# sysctl --system", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204584\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204584\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204584r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204584r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-040201\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must implement virtual address space randomization.\",\n \"cdf:description\": \"<VulnDiscussion>Address space layout randomization (ASLR) makes it more difficult for an attacker to predict the location of attack code he or she has introduced into a process's address space during an attempt at exploitation. Additionally, ASLR also makes it more difficult for an attacker to know the location of existing code in order to repurpose it using return-oriented programming (ROP) techniques.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"SV-92521\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-77825\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system implement virtual address space randomization.\\n\\nSet the system to the required kernel parameter by adding the following line to \\\"/etc/sysctl.conf\\\" or a config file in the /etc/sysctl.d/ directory (or modify the line to have the required value):\\n\\nkernel.randomize_va_space = 2\\n\\nIssue the following command to make the changes take effect:\\n\\n# sysctl --system\",\n \"fixref\": \"F-4708r88945_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4708r88945_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:92521\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:22" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-002422", + "CCI-002418", + "CCI-002420", + "CCI-002421" + ], + "nist": [ + "SC-8 (2)", + "SC-8", + "SC-8 (2)", + "SC-8 (1)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without protection of the transmitted information, confidentiality and integrity may be compromised because unprotected communications can be intercepted and either read or altered.\\n\\nThis requirement applies to both internal and external networks and all types of information system components from which information can be transmitted (e.g., servers, mobile devices, notebook computers, printers, copiers, scanners, and facsimile machines). Communication paths outside the physical protection of a controlled boundary are exposed to the possibility of interception and modification.\\n\\nProtecting the confidentiality and integrity of organizational information can be accomplished by physical means (e.g., employing physical distribution systems) or by logical means (e.g., employing cryptographic techniques). If physical means of protection are employed, logical means (cryptography) do not have to be employed, and vice versa.\\n\\nSatisfies: SRG-OS-000423-GPOS-00187, SRG-OS-000424-GPOS-00188, SRG-OS-000425-GPOS-00189, SRG-OS-000426-GPOS-00190\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204585", + "group_title": "SRG-OS-000423-GPOS-00187", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204585r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:4248" + } + }, + "fix_id": "F-4709r88948_fix", + "fixtext_fixref": "F-4709r88948_fix", + "ident": [ + { + "text": "CCE-80215-7", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86857", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72233", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-002422", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002418", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002420", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002421", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204585r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:22", + "idref": "xccdf_mil.disa.stig_rule_SV-204584r603261_rule", + "version": "RHEL-07-040201", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "SV-92521", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-77825", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4708r88945_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:92521" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that all networked systems have SSH installed.", + "id": "V-204585", + "desc": "Without protection of the transmitted information, confidentiality and integrity may be compromised because unprotected communications can be intercepted and either read or altered.\n\nThis requirement applies to both internal and external networks and all types of information system components from which information can be transmitted (e.g., servers, mobile devices, notebook computers, printers, copiers, scanners, and facsimile machines). Communication paths outside the physical protection of a controlled boundary are exposed to the possibility of interception and modification.\n\nProtecting the confidentiality and integrity of organizational information can be accomplished by physical means (e.g., employing physical distribution systems) or by logical means (e.g., employing cryptographic techniques). If physical means of protection are employed, logical means (cryptography) do not have to be employed, and vice versa.\n\nSatisfies: SRG-OS-000423-GPOS-00187, SRG-OS-000424-GPOS-00188, SRG-OS-000425-GPOS-00189, SRG-OS-000426-GPOS-00190", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:4248", + "label": "check" + }, + { + "data": "Install SSH packages onto the host with the following commands:\n\n# yum install openssh-server.x86_64", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204585\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204585\",\n \"cdf:title\": \"SRG-OS-000423-GPOS-00187\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204585r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204585r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-040300\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must be configured so that all networked systems have SSH installed.\",\n \"cdf:description\": \"<VulnDiscussion>Without protection of the transmitted information, confidentiality and integrity may be compromised because unprotected communications can be intercepted and either read or altered.\\n\\nThis requirement applies to both internal and external networks and all types of information system components from which information can be transmitted (e.g., servers, mobile devices, notebook computers, printers, copiers, scanners, and facsimile machines). Communication paths outside the physical protection of a controlled boundary are exposed to the possibility of interception and modification.\\n\\nProtecting the confidentiality and integrity of organizational information can be accomplished by physical means (e.g., employing physical distribution systems) or by logical means (e.g., employing cryptographic techniques). If physical means of protection are employed, logical means (cryptography) do not have to be employed, and vice versa.\\n\\nSatisfies: SRG-OS-000423-GPOS-00187, SRG-OS-000424-GPOS-00188, SRG-OS-000425-GPOS-00189, SRG-OS-000426-GPOS-00190</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80215-7\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86857\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72233\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-002422\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002418\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002420\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002421\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Install SSH packages onto the host with the following commands:\\n\\n# yum install openssh-server.x86_64\",\n \"fixref\": \"F-4709r88948_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4709r88948_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:4248\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:22" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001133", + "CCI-002361" + ], + "nist": [ + "SC-10", + "AC-12" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Terminating an idle SSH session within a short time period reduces the window of opportunity for unauthorized personnel to take control of a management session enabled on the console or console port that has been left unattended. In addition, quickly terminating an idle SSH session will also free up resources committed by the managed network element.\\n\\nTerminating network connections associated with communications sessions includes, for example, de-allocating associated TCP/IP address/port pairs at the operating system level and de-allocating networking assignments at the application level if multiple application sessions are using a single operating system-level network connection. This does not mean that the operating system terminates all sessions or network access; it only ends the inactive session and releases the resources associated with that session.\\n\\nSatisfies: SRG-OS-000163-GPOS-00072, SRG-OS-000279-GPOS-00109\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204587", + "group_title": "SRG-OS-000163-GPOS-00072", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204587r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-export": { + "value-id": "xccdf_mil.disa.stig_value_sshd_idle_timeout_value", + "export-name": "oval:mil.disa.stig.rhel7:var:3866" + }, + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:1391" + } + }, + "fix_id": "F-4711r88954_fix", + "fixtext_fixref": "F-4711r88954_fix", + "ident": [ + { + "text": "CCE-27433-2", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86861", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72237", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001133", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002361", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204587r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:22", + "idref": "xccdf_mil.disa.stig_rule_SV-204585r603261_rule", + "version": "RHEL-07-040300", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-80215-7", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86857", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72233", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-002422", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002418", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002420", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002421", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4709r88948_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:4248" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that all network connections associated with SSH traffic are terminated at the end of the session or after 10 minutes of inactivity, except to fulfill documented and validated mission requirements.", + "id": "V-204587", + "desc": "Terminating an idle SSH session within a short time period reduces the window of opportunity for unauthorized personnel to take control of a management session enabled on the console or console port that has been left unattended. In addition, quickly terminating an idle SSH session will also free up resources committed by the managed network element.\n\nTerminating network connections associated with communications sessions includes, for example, de-allocating associated TCP/IP address/port pairs at the operating system level and de-allocating networking assignments at the application level if multiple application sessions are using a single operating system-level network connection. This does not mean that the operating system terminates all sessions or network access; it only ends the inactive session and releases the resources associated with that session.\n\nSatisfies: SRG-OS-000163-GPOS-00072, SRG-OS-000279-GPOS-00109", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:1391", + "label": "check" + }, + { + "data": "Configure the operating system to automatically terminate a user session after inactivity time-outs have expired or at shutdown.\n\nAdd the following line (or modify the line to have the required value) to the \"/etc/ssh/sshd_config\" file (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor):\n\nClientAliveInterval 600\n\nThe SSH service must be restarted for changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204587\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204587\",\n \"cdf:title\": \"SRG-OS-000163-GPOS-00072\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204587r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204587r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-040320\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must be configured so that all network connections associated with SSH traffic are terminated at the end of the session or after 10 minutes of inactivity, except to fulfill documented and validated mission requirements.\",\n \"cdf:description\": \"<VulnDiscussion>Terminating an idle SSH session within a short time period reduces the window of opportunity for unauthorized personnel to take control of a management session enabled on the console or console port that has been left unattended. In addition, quickly terminating an idle SSH session will also free up resources committed by the managed network element.\\n\\nTerminating network connections associated with communications sessions includes, for example, de-allocating associated TCP/IP address/port pairs at the operating system level and de-allocating networking assignments at the application level if multiple application sessions are using a single operating system-level network connection. This does not mean that the operating system terminates all sessions or network access; it only ends the inactive session and releases the resources associated with that session.\\n\\nSatisfies: SRG-OS-000163-GPOS-00072, SRG-OS-000279-GPOS-00109</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-27433-2\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86861\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72237\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-001133\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002361\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to automatically terminate a user session after inactivity time-outs have expired or at shutdown.\\n\\nAdd the following line (or modify the line to have the required value) to the \\\"/etc/ssh/sshd_config\\\" file (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor):\\n\\nClientAliveInterval 600\\n\\nThe SSH service must be restarted for changes to take effect.\",\n \"fixref\": \"F-4711r88954_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4711r88954_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-export\": {\n \"value-id\": \"xccdf_mil.disa.stig_value_sshd_idle_timeout_value\",\n \"export-name\": \"oval:mil.disa.stig.rhel7:var:3866\"\n },\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:1391\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:23" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Configuring this setting for the SSH daemon provides additional assurance that remote logon via SSH will require a password, even in the event of misconfiguration elsewhere.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204588", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204588r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:1379" + } + }, + "fix_id": "F-4712r88957_fix", + "fixtext_fixref": "F-4712r88957_fix", + "ident": [ + { + "text": "CCE-80373-4", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86863", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72239", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204588r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:23", + "idref": "xccdf_mil.disa.stig_rule_SV-204587r603261_rule", + "version": "RHEL-07-040320", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-27433-2", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86861", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72237", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001133", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002361", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4711r88954_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-export": { + "value-id": "xccdf_mil.disa.stig_value_sshd_idle_timeout_value", + "export-name": "oval:mil.disa.stig.rhel7:var:3866" + }, + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:1391" + } + } + }, + "value": { + "type": "number", + "Id": "xccdf_mil.disa.stig_value_sshd_idle_timeout_value", + "id": "xccdf_mil.disa.stig_value_sshd_idle_timeout_value", + "cdf:title": "SSH session Idle time", + "cdf:description": "Specify duration of allowed idle time.", + "cdf:value": [ + 600, + { + "text": 300, + "selector": "5_minutes" + }, + { + "text": 600, + "selector": "10_minutes" + }, + { + "text": 900, + "selector": "15_minutes" + }, + { + "text": 3600, + "selector": "60_minutes" + }, + { + "text": 7200, + "selector": "120_minutes" + } + ] + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that the SSH daemon does not allow authentication using RSA rhosts authentication.", + "id": "V-204588", + "desc": "Configuring this setting for the SSH daemon provides additional assurance that remote logon via SSH will require a password, even in the event of misconfiguration elsewhere.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:1379", + "label": "check" + }, + { + "data": "Configure the SSH daemon to not allow authentication using RSA rhosts authentication.\n\nAdd the following line in \"/etc/ssh/sshd_config\", or uncomment the line and set the value to \"no\":\n\nRhostsRSAAuthentication no\n\nThe SSH service must be restarted for changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204588\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204588\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204588r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204588r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-040330\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must be configured so that the SSH daemon does not allow authentication using RSA rhosts authentication.\",\n \"cdf:description\": \"<VulnDiscussion>Configuring this setting for the SSH daemon provides additional assurance that remote logon via SSH will require a password, even in the event of misconfiguration elsewhere.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80373-4\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86863\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72239\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the SSH daemon to not allow authentication using RSA rhosts authentication.\\n\\nAdd the following line in \\\"/etc/ssh/sshd_config\\\", or uncomment the line and set the value to \\\"no\\\":\\n\\nRhostsRSAAuthentication no\\n\\nThe SSH service must be restarted for changes to take effect.\",\n \"fixref\": \"F-4712r88957_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4712r88957_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:1379\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:23" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001133", + "CCI-002361" + ], + "nist": [ + "SC-10", + "AC-12" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Terminating an idle SSH session within a short time period reduces the window of opportunity for unauthorized personnel to take control of a management session enabled on the console or console port that has been left unattended. In addition, quickly terminating an idle SSH session will also free up resources committed by the managed network element.\\n\\nTerminating network connections associated with communications sessions includes, for example, de-allocating associated TCP/IP address/port pairs at the operating system level and de-allocating networking assignments at the application level if multiple application sessions are using a single operating system-level network connection. This does not mean that the operating system terminates all sessions or network access; it only ends the inactive session and releases the resources associated with that session.\\n\\nSatisfies: SRG-OS-000163-GPOS-00072, SRG-OS-000279-GPOS-00109\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204589", + "group_title": "SRG-OS-000163-GPOS-00072", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204589r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:1393" + } + }, + "fix_id": "F-4713r88960_fix", + "fixtext_fixref": "F-4713r88960_fix", + "ident": [ + { + "text": "CCE-27082-7", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86865", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72241", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001133", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002361", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204589r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:23", + "idref": "xccdf_mil.disa.stig_rule_SV-204588r603261_rule", + "version": "RHEL-07-040330", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-80373-4", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86863", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72239", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4712r88957_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:1379" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that all network connections associated with SSH traffic terminate after a period of inactivity.", + "id": "V-204589", + "desc": "Terminating an idle SSH session within a short time period reduces the window of opportunity for unauthorized personnel to take control of a management session enabled on the console or console port that has been left unattended. In addition, quickly terminating an idle SSH session will also free up resources committed by the managed network element.\n\nTerminating network connections associated with communications sessions includes, for example, de-allocating associated TCP/IP address/port pairs at the operating system level and de-allocating networking assignments at the application level if multiple application sessions are using a single operating system-level network connection. This does not mean that the operating system terminates all sessions or network access; it only ends the inactive session and releases the resources associated with that session.\n\nSatisfies: SRG-OS-000163-GPOS-00072, SRG-OS-000279-GPOS-00109", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:1393", + "label": "check" + }, + { + "data": "Configure the operating system to terminate automatically a user session after inactivity time-outs have expired or at shutdown.\n\nAdd the following line (or modify the line to have the required value) to the \"/etc/ssh/sshd_config\" file (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor):\n\nClientAliveCountMax 0\n\nThe SSH service must be restarted for changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204589\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204589\",\n \"cdf:title\": \"SRG-OS-000163-GPOS-00072\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204589r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204589r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-040340\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must be configured so that all network connections associated with SSH traffic terminate after a period of inactivity.\",\n \"cdf:description\": \"<VulnDiscussion>Terminating an idle SSH session within a short time period reduces the window of opportunity for unauthorized personnel to take control of a management session enabled on the console or console port that has been left unattended. In addition, quickly terminating an idle SSH session will also free up resources committed by the managed network element.\\n\\nTerminating network connections associated with communications sessions includes, for example, de-allocating associated TCP/IP address/port pairs at the operating system level and de-allocating networking assignments at the application level if multiple application sessions are using a single operating system-level network connection. This does not mean that the operating system terminates all sessions or network access; it only ends the inactive session and releases the resources associated with that session.\\n\\nSatisfies: SRG-OS-000163-GPOS-00072, SRG-OS-000279-GPOS-00109</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-27082-7\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86865\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72241\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-001133\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-002361\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to terminate automatically a user session after inactivity time-outs have expired or at shutdown.\\n\\nAdd the following line (or modify the line to have the required value) to the \\\"/etc/ssh/sshd_config\\\" file (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor):\\n\\nClientAliveCountMax 0\\n\\nThe SSH service must be restarted for changes to take effect.\",\n \"fixref\": \"F-4713r88960_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4713r88960_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:1393\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:23" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Configuring this setting for the SSH daemon provides additional assurance that remote logon via SSH will require a password, even in the event of misconfiguration elsewhere.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204590", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204590r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:1377" + } + }, + "fix_id": "F-4714r88963_fix", + "fixtext_fixref": "F-4714r88963_fix", + "ident": [ + { + "text": "CCE-27377-1", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86867", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72243", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204590r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:23", + "idref": "xccdf_mil.disa.stig_rule_SV-204589r603261_rule", + "version": "RHEL-07-040340", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-27082-7", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86865", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72241", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001133", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-002361", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4713r88960_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:1393" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that the SSH daemon does not allow authentication using rhosts authentication.", + "id": "V-204590", + "desc": "Configuring this setting for the SSH daemon provides additional assurance that remote logon via SSH will require a password, even in the event of misconfiguration elsewhere.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:1377", + "label": "check" + }, + { + "data": "Configure the SSH daemon to not allow authentication using known hosts authentication.\n\nAdd the following line in \"/etc/ssh/sshd_config\", or uncomment the line and set the value to \"yes\":\n\nIgnoreRhosts yes", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204590\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204590\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204590r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204590r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-040350\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must be configured so that the SSH daemon does not allow authentication using rhosts authentication.\",\n \"cdf:description\": \"<VulnDiscussion>Configuring this setting for the SSH daemon provides additional assurance that remote logon via SSH will require a password, even in the event of misconfiguration elsewhere.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-27377-1\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86867\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72243\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the SSH daemon to not allow authentication using known hosts authentication.\\n\\nAdd the following line in \\\"/etc/ssh/sshd_config\\\", or uncomment the line and set the value to \\\"yes\\\":\\n\\nIgnoreRhosts yes\",\n \"fixref\": \"F-4714r88963_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4714r88963_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:1377\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:23" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Providing users with feedback on when account accesses via SSH last occurred facilitates user recognition and reporting of unauthorized account use.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204591", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204591r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:166" + } + }, + "fix_id": "F-4715r88966_fix", + "fixtext_fixref": "F-4715r88966_fix", + "ident": [ + { + "text": "CCE-80225-6", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86869", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72245", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204591r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:23", + "idref": "xccdf_mil.disa.stig_rule_SV-204590r603261_rule", + "version": "RHEL-07-040350", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-27377-1", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86867", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72243", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4714r88963_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:1377" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must display the date and time of the last successful account logon upon an SSH logon.", + "id": "V-204591", + "desc": "Providing users with feedback on when account accesses via SSH last occurred facilitates user recognition and reporting of unauthorized account use.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:166", + "label": "check" + }, + { + "data": "Configure SSH to provide users with feedback on when account accesses last occurred by setting the required configuration options in \"/etc/pam.d/sshd\" or in the \"sshd_config\" file used by the system (\"/etc/ssh/sshd_config\" will be used in the example) (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor).\n\nModify the \"PrintLastLog\" line in \"/etc/ssh/sshd_config\" to match the following:\n\nPrintLastLog yes\n\nThe SSH service must be restarted for changes to \"sshd_config\" to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204591\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204591\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204591r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204591r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-040360\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must display the date and time of the last successful account logon upon an SSH logon.\",\n \"cdf:description\": \"<VulnDiscussion>Providing users with feedback on when account accesses via SSH last occurred facilitates user recognition and reporting of unauthorized account use.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80225-6\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86869\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72245\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure SSH to provide users with feedback on when account accesses last occurred by setting the required configuration options in \\\"/etc/pam.d/sshd\\\" or in the \\\"sshd_config\\\" file used by the system (\\\"/etc/ssh/sshd_config\\\" will be used in the example) (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor).\\n\\nModify the \\\"PrintLastLog\\\" line in \\\"/etc/ssh/sshd_config\\\" to match the following:\\n\\nPrintLastLog yes\\n\\nThe SSH service must be restarted for changes to \\\"sshd_config\\\" to take effect.\",\n \"fixref\": \"F-4715r88966_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4715r88966_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:166\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:23" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Even though the communications channel may be encrypted, an additional layer of security is gained by extending the policy of not logging on directly as root. In addition, logging on with a user-specific account provides individual accountability of actions performed on the system.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204592", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204592r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:1381" + } + }, + "fix_id": "F-4716r88969_fix", + "fixtext_fixref": "F-4716r88969_fix", + "ident": [ + { + "text": "CCE-27445-6", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86871", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72247", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204592r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:23", + "idref": "xccdf_mil.disa.stig_rule_SV-204591r603261_rule", + "version": "RHEL-07-040360", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-80225-6", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86869", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72245", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4715r88966_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:166" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must not permit direct logons to the root account using remote access via SSH.", + "id": "V-204592", + "desc": "Even though the communications channel may be encrypted, an additional layer of security is gained by extending the policy of not logging on directly as root. In addition, logging on with a user-specific account provides individual accountability of actions performed on the system.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:1381", + "label": "check" + }, + { + "data": "Configure SSH to stop users from logging on remotely as the root user.\n\nEdit the appropriate \"/etc/ssh/sshd_config\" file to uncomment or add the line for the \"PermitRootLogin\" keyword and set its value to \"no\" (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor):\n\nPermitRootLogin no\n\nThe SSH service must be restarted for changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204592\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204592\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204592r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204592r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-040370\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must not permit direct logons to the root account using remote access via SSH.\",\n \"cdf:description\": \"<VulnDiscussion>Even though the communications channel may be encrypted, an additional layer of security is gained by extending the policy of not logging on directly as root. In addition, logging on with a user-specific account provides individual accountability of actions performed on the system.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-27445-6\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86871\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72247\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure SSH to stop users from logging on remotely as the root user.\\n\\nEdit the appropriate \\\"/etc/ssh/sshd_config\\\" file to uncomment or add the line for the \\\"PermitRootLogin\\\" keyword and set its value to \\\"no\\\" (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor):\\n\\nPermitRootLogin no\\n\\nThe SSH service must be restarted for changes to take effect.\",\n \"fixref\": \"F-4716r88969_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4716r88969_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:1381\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:23" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Configuring this setting for the SSH daemon provides additional assurance that remote logon via SSH will require a password, even in the event of misconfiguration elsewhere.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204593", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204593r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:1383" + } + }, + "fix_id": "F-4717r88972_fix", + "fixtext_fixref": "F-4717r88972_fix", + "ident": [ + { + "text": "CCE-80372-6", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86873", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72249", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204593r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:23", + "idref": "xccdf_mil.disa.stig_rule_SV-204592r603261_rule", + "version": "RHEL-07-040370", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-27445-6", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86871", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72247", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4716r88969_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:1381" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that the SSH daemon does not allow authentication using known hosts authentication.", + "id": "V-204593", + "desc": "Configuring this setting for the SSH daemon provides additional assurance that remote logon via SSH will require a password, even in the event of misconfiguration elsewhere.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:1383", + "label": "check" + }, + { + "data": "Configure the SSH daemon to not allow authentication using known hosts authentication.\n\nAdd the following line in \"/etc/ssh/sshd_config\", or uncomment the line and set the value to \"yes\":\n\nIgnoreUserKnownHosts yes\n\nThe SSH service must be restarted for changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204593\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204593\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204593r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204593r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-040380\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must be configured so that the SSH daemon does not allow authentication using known hosts authentication.\",\n \"cdf:description\": \"<VulnDiscussion>Configuring this setting for the SSH daemon provides additional assurance that remote logon via SSH will require a password, even in the event of misconfiguration elsewhere.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80372-6\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86873\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72249\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the SSH daemon to not allow authentication using known hosts authentication.\\n\\nAdd the following line in \\\"/etc/ssh/sshd_config\\\", or uncomment the line and set the value to \\\"yes\\\":\\n\\nIgnoreUserKnownHosts yes\\n\\nThe SSH service must be restarted for changes to take effect.\",\n \"fixref\": \"F-4717r88972_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4717r88972_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:1383\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:23" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366", + "CCI-000197" + ], + "nist": [ + "CM-6 b", + "IA-5 (1) (c)" + ], + "severity": "high", + "description": "{\"VulnDiscussion\":\"SSHv1 is an insecure implementation of the SSH protocol and has many well-known vulnerability exploits. Exploits of the SSH daemon could provide immediate root access to the system.\\n\\nSatisfies: SRG-OS-000074-GPOS-00042, SRG-OS-000480-GPOS-00227\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204594", + "group_title": "SRG-OS-000074-GPOS-00042", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204594r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:1373" + } + }, + "fix_id": "F-4718r88975_fix", + "fixtext_fixref": "F-4718r88975_fix", + "ident": [ + { + "text": "CCE-27320-1", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86875", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72251", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000197", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204594r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:23", + "idref": "xccdf_mil.disa.stig_rule_SV-204593r603261_rule", + "version": "RHEL-07-040380", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-80372-6", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86873", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72249", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4717r88972_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:1383" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that the SSH daemon is configured to only use the SSHv2 protocol.", + "id": "V-204594", + "desc": "SSHv1 is an insecure implementation of the SSH protocol and has many well-known vulnerability exploits. Exploits of the SSH daemon could provide immediate root access to the system.\n\nSatisfies: SRG-OS-000074-GPOS-00042, SRG-OS-000480-GPOS-00227", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:1373", + "label": "check" + }, + { + "data": "Remove all Protocol lines that reference version \"1\" in \"/etc/ssh/sshd_config\" (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor). The \"Protocol\" line must be as follows:\n\nProtocol 2\n\nThe SSH service must be restarted for changes to take effect.", + "label": "fix" + } + ], + "impact": 0.7, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204594\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204594\",\n \"cdf:title\": \"SRG-OS-000074-GPOS-00042\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204594r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204594r603261_rule\",\n \"severity\": \"high\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-040390\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must be configured so that the SSH daemon is configured to only use the SSHv2 protocol.\",\n \"cdf:description\": \"<VulnDiscussion>SSHv1 is an insecure implementation of the SSH protocol and has many well-known vulnerability exploits. Exploits of the SSH daemon could provide immediate root access to the system.\\n\\nSatisfies: SRG-OS-000074-GPOS-00042, SRG-OS-000480-GPOS-00227</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-27320-1\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86875\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72251\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000197\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Remove all Protocol lines that reference version \\\"1\\\" in \\\"/etc/ssh/sshd_config\\\" (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor). The \\\"Protocol\\\" line must be as follows:\\n\\nProtocol 2\\n\\nThe SSH service must be restarted for changes to take effect.\",\n \"fixref\": \"F-4718r88975_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4718r88975_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:1373\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:23" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001453" + ], + "nist": [ + "AC-17 (2)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"DoD information systems are required to use FIPS 140-2 approved cryptographic hash functions. The only SSHv2 hash algorithm meeting this requirement is SHA.\\n\\nBy specifying a hash algorithm list with the order of hashes being in a \\\"strongest to weakest\\\" orientation, the system will automatically attempt to use the strongest hash for securing SSH connections.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204595", + "group_title": "SRG-OS-000250-GPOS-00093", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204595r603846_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:168" + } + }, + "fix_id": "F-4719r603845_fix", + "fixtext_fixref": "F-4719r603845_fix", + "ident": [ + { + "text": "CCE-27455-5", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86877", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72253", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001453", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204595r603846_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:23", + "idref": "xccdf_mil.disa.stig_rule_SV-204594r603261_rule", + "version": "RHEL-07-040390", + "severity": "high", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-27320-1", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86875", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72251", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000197", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4718r88975_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:1373" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that the SSH daemon is configured to only use Message Authentication Codes (MACs) employing FIPS 140-2 approved cryptographic hash algorithms.", + "id": "V-204595", + "desc": "DoD information systems are required to use FIPS 140-2 approved cryptographic hash functions. The only SSHv2 hash algorithm meeting this requirement is SHA.\n\nBy specifying a hash algorithm list with the order of hashes being in a \"strongest to weakest\" orientation, the system will automatically attempt to use the strongest hash for securing SSH connections.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:168", + "label": "check" + }, + { + "data": "Edit the \"/etc/ssh/sshd_config\" file to uncomment or add the line for the \"MACs\" keyword and set its value to \"hmac-sha2-512\" and/or \"hmac-sha2-256\" (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor):\n\nMACs hmac-sha2-512,hmac-sha2-256\n\nThe SSH service must be restarted for changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204595\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204595\",\n \"cdf:title\": \"SRG-OS-000250-GPOS-00093\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204595r603846_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204595r603846_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-040400\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must be configured so that the SSH daemon is configured to only use Message Authentication Codes (MACs) employing FIPS 140-2 approved cryptographic hash algorithms.\",\n \"cdf:description\": \"<VulnDiscussion>DoD information systems are required to use FIPS 140-2 approved cryptographic hash functions. The only SSHv2 hash algorithm meeting this requirement is SHA.\\n\\nBy specifying a hash algorithm list with the order of hashes being in a \\\"strongest to weakest\\\" orientation, the system will automatically attempt to use the strongest hash for securing SSH connections.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-27455-5\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86877\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72253\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-001453\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Edit the \\\"/etc/ssh/sshd_config\\\" file to uncomment or add the line for the \\\"MACs\\\" keyword and set its value to \\\"hmac-sha2-512\\\" and/or \\\"hmac-sha2-256\\\" (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor):\\n\\nMACs hmac-sha2-512,hmac-sha2-256\\n\\nThe SSH service must be restarted for changes to take effect.\",\n \"fixref\": \"F-4719r603845_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4719r603845_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:168\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-04-29T14:18:23" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"If a public host key file is modified by an unauthorized user, the SSH service may be compromised.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204596", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204596r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:120" + } + }, + "fix_id": "F-4720r88981_fix", + "fixtext_fixref": "F-4720r88981_fix", + "ident": [ + { + "text": "CCE-27311-0", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86879", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72255", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204596r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:23", + "idref": "xccdf_mil.disa.stig_rule_SV-204595r603846_rule", + "version": "RHEL-07-040400", + "severity": "medium", + "weight": "10.0", + "cdf:result": "fail", + "cdf:ident": [ + { + "text": "CCE-27455-5", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86877", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72253", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001453", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4719r603845_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:168" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that the SSH public host key files have mode 0644 or less permissive.", + "id": "V-204596", + "desc": "If a public host key file is modified by an unauthorized user, the SSH service may be compromised.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:120", + "label": "check" + }, + { + "data": "Note: SSH public key files may be found in other directories on the system depending on the installation.\n\nChange the mode of public host key files under \"/etc/ssh\" to \"0644\" with the following command:\n\n# chmod 0644 /etc/ssh/*.key.pub", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204596\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204596\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204596r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204596r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-040410\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must be configured so that the SSH public host key files have mode 0644 or less permissive.\",\n \"cdf:description\": \"<VulnDiscussion>If a public host key file is modified by an unauthorized user, the SSH service may be compromised.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-27311-0\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86879\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72255\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Note: SSH public key files may be found in other directories on the system depending on the installation.\\n\\nChange the mode of public host key files under \\\"/etc/ssh\\\" to \\\"0644\\\" with the following command:\\n\\n# chmod 0644 /etc/ssh/*.key.pub\",\n \"fixref\": \"F-4720r88981_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4720r88981_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:120\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:23" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"If an unauthorized user obtains the private SSH host key file, the host could be impersonated.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204597", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204597r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:118" + } + }, + "fix_id": "F-4721r88984_fix", + "fixtext_fixref": "F-4721r88984_fix", + "ident": [ + { + "text": "CCE-27485-2", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86881", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72257", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204597r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:23", + "idref": "xccdf_mil.disa.stig_rule_SV-204596r603261_rule", + "version": "RHEL-07-040410", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-27311-0", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86879", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72255", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4720r88981_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:120" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that the SSH private host key files have mode 0640 or less permissive.", + "id": "V-204597", + "desc": "If an unauthorized user obtains the private SSH host key file, the host could be impersonated.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:118", + "label": "check" + }, + { + "data": "Configure the mode of SSH private host key files under \"/etc/ssh\" to \"0640\" with the following command:\n\n# chmod 0640 /path/to/file/ssh_host*key", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204597\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204597\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204597r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204597r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-040420\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must be configured so that the SSH private host key files have mode 0640 or less permissive.\",\n \"cdf:description\": \"<VulnDiscussion>If an unauthorized user obtains the private SSH host key file, the host could be impersonated.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-27485-2\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86881\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72257\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the mode of SSH private host key files under \\\"/etc/ssh\\\" to \\\"0640\\\" with the following command:\\n\\n# chmod 0640 /path/to/file/ssh_host*key\",\n \"fixref\": \"F-4721r88984_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4721r88984_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:118\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:23" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000318", + "CCI-001812", + "CCI-001813", + "CCI-000368", + "CCI-001814" + ], + "nist": [ + "CM-3 f", + "CM-11 (2)", + "CM-5 (1) (a)", + "CM-6 c", + "CM-5 (1)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"GSSAPI authentication is used to provide additional authentication mechanisms to applications. Allowing GSSAPI authentication through SSH exposes the system's GSSAPI to remote hosts, increasing the attack surface of the system. GSSAPI authentication must be disabled unless needed.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204598", + "group_title": "SRG-OS-000364-GPOS-00151", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204598r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:160" + } + }, + "fix_id": "F-4722r88987_fix", + "fixtext_fixref": "F-4722r88987_fix", + "ident": [ + { + "text": "SV-86883", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72259", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000318", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001812", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001813", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000368", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001814", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204598r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:23", + "idref": "xccdf_mil.disa.stig_rule_SV-204597r603261_rule", + "version": "RHEL-07-040420", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-27485-2", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86881", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72257", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4721r88984_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:118" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that the SSH daemon does not permit Generic Security Service Application Program Interface (GSSAPI) authentication unless needed.", + "id": "V-204598", + "desc": "GSSAPI authentication is used to provide additional authentication mechanisms to applications. Allowing GSSAPI authentication through SSH exposes the system's GSSAPI to remote hosts, increasing the attack surface of the system. GSSAPI authentication must be disabled unless needed.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:160", + "label": "check" + }, + { + "data": "Uncomment the \"GSSAPIAuthentication\" keyword in \"/etc/ssh/sshd_config\" (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor) and set the value to \"no\":\n\nGSSAPIAuthentication no\n\nThe SSH service must be restarted for changes to take effect.\n\nIf GSSAPI authentication is required, it must be documented, to include the location of the configuration file, with the ISSO.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204598\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204598\",\n \"cdf:title\": \"SRG-OS-000364-GPOS-00151\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204598r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204598r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-040430\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must be configured so that the SSH daemon does not permit Generic Security Service Application Program Interface (GSSAPI) authentication unless needed.\",\n \"cdf:description\": \"<VulnDiscussion>GSSAPI authentication is used to provide additional authentication mechanisms to applications. Allowing GSSAPI authentication through SSH exposes the system's GSSAPI to remote hosts, increasing the attack surface of the system. GSSAPI authentication must be disabled unless needed.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"SV-86883\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72259\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000318\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-001812\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-001813\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000368\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-001814\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Uncomment the \\\"GSSAPIAuthentication\\\" keyword in \\\"/etc/ssh/sshd_config\\\" (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor) and set the value to \\\"no\\\":\\n\\nGSSAPIAuthentication no\\n\\nThe SSH service must be restarted for changes to take effect.\\n\\nIf GSSAPI authentication is required, it must be documented, to include the location of the configuration file, with the ISSO.\",\n \"fixref\": \"F-4722r88987_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4722r88987_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:160\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:23" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000368", + "CCI-001813", + "CCI-001812", + "CCI-001814", + "CCI-000318" + ], + "nist": [ + "CM-6 c", + "CM-5 (1) (a)", + "CM-11 (2)", + "CM-5 (1)", + "CM-3 f" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Kerberos authentication for SSH is often implemented using Generic Security Service Application Program Interface (GSSAPI). If Kerberos is enabled through SSH, the SSH daemon provides a means of access to the system's Kerberos implementation. Vulnerabilities in the system's Kerberos implementation may then be subject to exploitation. To reduce the attack surface of the system, the Kerberos authentication mechanism within SSH must be disabled for systems not using this capability.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204599", + "group_title": "SRG-OS-000364-GPOS-00151", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204599r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:162" + } + }, + "fix_id": "F-4723r88990_fix", + "fixtext_fixref": "F-4723r88990_fix", + "ident": [ + { + "text": "CCE-80221-5", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86885", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72261", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000368", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001813", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001812", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001814", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000318", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204599r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:23", + "idref": "xccdf_mil.disa.stig_rule_SV-204598r603261_rule", + "version": "RHEL-07-040430", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "SV-86883", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72259", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000318", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001812", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001813", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000368", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001814", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4722r88987_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:160" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that the SSH daemon does not permit Kerberos authentication unless needed.", + "id": "V-204599", + "desc": "Kerberos authentication for SSH is often implemented using Generic Security Service Application Program Interface (GSSAPI). If Kerberos is enabled through SSH, the SSH daemon provides a means of access to the system's Kerberos implementation. Vulnerabilities in the system's Kerberos implementation may then be subject to exploitation. To reduce the attack surface of the system, the Kerberos authentication mechanism within SSH must be disabled for systems not using this capability.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:162", + "label": "check" + }, + { + "data": "Uncomment the \"KerberosAuthentication\" keyword in \"/etc/ssh/sshd_config\" (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor) and set the value to \"no\":\n\nKerberosAuthentication no\n\nThe SSH service must be restarted for changes to take effect.\n\nIf Kerberos authentication is required, it must be documented, to include the location of the configuration file, with the ISSO.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204599\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204599\",\n \"cdf:title\": \"SRG-OS-000364-GPOS-00151\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204599r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204599r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-040440\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must be configured so that the SSH daemon does not permit Kerberos authentication unless needed.\",\n \"cdf:description\": \"<VulnDiscussion>Kerberos authentication for SSH is often implemented using Generic Security Service Application Program Interface (GSSAPI). If Kerberos is enabled through SSH, the SSH daemon provides a means of access to the system's Kerberos implementation. Vulnerabilities in the system's Kerberos implementation may then be subject to exploitation. To reduce the attack surface of the system, the Kerberos authentication mechanism within SSH must be disabled for systems not using this capability.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80221-5\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86885\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72261\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000368\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-001813\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-001812\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-001814\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000318\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Uncomment the \\\"KerberosAuthentication\\\" keyword in \\\"/etc/ssh/sshd_config\\\" (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor) and set the value to \\\"no\\\":\\n\\nKerberosAuthentication no\\n\\nThe SSH service must be restarted for changes to take effect.\\n\\nIf Kerberos authentication is required, it must be documented, to include the location of the configuration file, with the ISSO.\",\n \"fixref\": \"F-4723r88990_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4723r88990_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:162\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:23" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"If other users have access to modify user-specific SSH configuration files, they may be able to log on to the system as another user.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204600", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204600r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:164" + } + }, + "fix_id": "F-4724r88993_fix", + "fixtext_fixref": "F-4724r88993_fix", + "ident": [ + { + "text": "CCE-80222-3", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86887", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72263", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204600r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:23", + "idref": "xccdf_mil.disa.stig_rule_SV-204599r603261_rule", + "version": "RHEL-07-040440", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-80221-5", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86885", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72261", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000368", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001813", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001812", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001814", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000318", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4723r88990_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:162" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that the SSH daemon performs strict mode checking of home directory configuration files.", + "id": "V-204600", + "desc": "If other users have access to modify user-specific SSH configuration files, they may be able to log on to the system as another user.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:164", + "label": "check" + }, + { + "data": "Uncomment the \"StrictModes\" keyword in \"/etc/ssh/sshd_config\" (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor) and set the value to \"yes\":\n\nStrictModes yes\n\nThe SSH service must be restarted for changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204600\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204600\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204600r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204600r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-040450\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must be configured so that the SSH daemon performs strict mode checking of home directory configuration files.\",\n \"cdf:description\": \"<VulnDiscussion>If other users have access to modify user-specific SSH configuration files, they may be able to log on to the system as another user.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80222-3\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86887\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72263\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Uncomment the \\\"StrictModes\\\" keyword in \\\"/etc/ssh/sshd_config\\\" (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor) and set the value to \\\"yes\\\":\\n\\nStrictModes yes\\n\\nThe SSH service must be restarted for changes to take effect.\",\n \"fixref\": \"F-4724r88993_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4724r88993_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:164\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:23" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"SSH daemon privilege separation causes the SSH process to drop root privileges when not needed, which would decrease the impact of software vulnerabilities in the unprivileged section.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204601", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204601r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:171" + } + }, + "fix_id": "F-4725r88996_fix", + "fixtext_fixref": "F-4725r88996_fix", + "ident": [ + { + "text": "CCE-80223-1", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86889", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72265", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204601r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:23", + "idref": "xccdf_mil.disa.stig_rule_SV-204600r603261_rule", + "version": "RHEL-07-040450", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-80222-3", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86887", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72263", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4724r88993_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:164" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that the SSH daemon uses privilege separation.", + "id": "V-204601", + "desc": "SSH daemon privilege separation causes the SSH process to drop root privileges when not needed, which would decrease the impact of software vulnerabilities in the unprivileged section.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:171", + "label": "check" + }, + { + "data": "Uncomment the \"UsePrivilegeSeparation\" keyword in \"/etc/ssh/sshd_config\" (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor) and set the value to \"sandbox\" or \"yes\":\n\nUsePrivilegeSeparation sandbox\n\nThe SSH service must be restarted for changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204601\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204601\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204601r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204601r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-040460\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must be configured so that the SSH daemon uses privilege separation.\",\n \"cdf:description\": \"<VulnDiscussion>SSH daemon privilege separation causes the SSH process to drop root privileges when not needed, which would decrease the impact of software vulnerabilities in the unprivileged section.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80223-1\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86889\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72265\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Uncomment the \\\"UsePrivilegeSeparation\\\" keyword in \\\"/etc/ssh/sshd_config\\\" (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor) and set the value to \\\"sandbox\\\" or \\\"yes\\\":\\n\\nUsePrivilegeSeparation sandbox\\n\\nThe SSH service must be restarted for changes to take effect.\",\n \"fixref\": \"F-4725r88996_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4725r88996_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:171\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:23" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"If compression is allowed in an SSH connection prior to authentication, vulnerabilities in the compression software could result in compromise of the system from an unauthenticated connection, potentially with root privileges.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204602", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204602r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:158" + } + }, + "fix_id": "F-4726r88999_fix", + "fixtext_fixref": "F-4726r88999_fix", + "ident": [ + { + "text": "SV-86891", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72267", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204602r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:23", + "idref": "xccdf_mil.disa.stig_rule_SV-204601r603261_rule", + "version": "RHEL-07-040460", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-80223-1", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86889", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72265", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4725r88996_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:171" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that the SSH daemon does not allow compression or only allows compression after successful authentication.", + "id": "V-204602", + "desc": "If compression is allowed in an SSH connection prior to authentication, vulnerabilities in the compression software could result in compromise of the system from an unauthenticated connection, potentially with root privileges.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:158", + "label": "check" + }, + { + "data": "Uncomment the \"Compression\" keyword in \"/etc/ssh/sshd_config\" (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor) on the system and set the value to \"delayed\" or \"no\":\n\nCompression no\n\nThe SSH service must be restarted for changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204602\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204602\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204602r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204602r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-040470\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must be configured so that the SSH daemon does not allow compression or only allows compression after successful authentication.\",\n \"cdf:description\": \"<VulnDiscussion>If compression is allowed in an SSH connection prior to authentication, vulnerabilities in the compression software could result in compromise of the system from an unauthenticated connection, potentially with root privileges.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"SV-86891\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72267\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Uncomment the \\\"Compression\\\" keyword in \\\"/etc/ssh/sshd_config\\\" (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor) on the system and set the value to \\\"delayed\\\" or \\\"no\\\":\\n\\nCompression no\\n\\nThe SSH service must be restarted for changes to take effect.\",\n \"fixref\": \"F-4726r88999_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4726r88999_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:158\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:23" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "low", + "description": "{\"VulnDiscussion\":\"Providing users with feedback on when account accesses last occurred facilitates user recognition and reporting of unauthorized account use.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204605", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204605r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:1020" + } + }, + "fix_id": "F-4729r89008_fix", + "fixtext_fixref": "F-4729r89008_fix", + "ident": [ + { + "text": "SV-86899", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72275", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204605r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:23", + "idref": "xccdf_mil.disa.stig_rule_SV-204602r603261_rule", + "version": "RHEL-07-040470", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "SV-86891", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72267", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4726r88999_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:158" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must display the date and time of the last successful account logon upon logon.", + "id": "V-204605", + "desc": "Providing users with feedback on when account accesses last occurred facilitates user recognition and reporting of unauthorized account use.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:1020", + "label": "check" + }, + { + "data": "Configure the operating system to provide users with feedback on when account accesses last occurred by setting the required configuration options in \"/etc/pam.d/postlogin\".\n\nAdd the following line to the top of \"/etc/pam.d/postlogin\":\n\nsession required pam_lastlog.so showfailed", + "label": "fix" + } + ], + "impact": 0.3, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204605\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204605\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204605r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204605r603261_rule\",\n \"severity\": \"low\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-040530\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must display the date and time of the last successful account logon upon logon.\",\n \"cdf:description\": \"<VulnDiscussion>Providing users with feedback on when account accesses last occurred facilitates user recognition and reporting of unauthorized account use.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"SV-86899\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72275\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to provide users with feedback on when account accesses last occurred by setting the required configuration options in \\\"/etc/pam.d/postlogin\\\".\\n\\nAdd the following line to the top of \\\"/etc/pam.d/postlogin\\\":\\n\\nsession required pam_lastlog.so showfailed\",\n \"fixref\": \"F-4729r89008_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4729r89008_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:1020\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:23" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "high", + "description": "{\"VulnDiscussion\":\"The .shosts files are used to configure host-based authentication for individual users or the system via SSH. Host-based authentication is not sufficient for preventing unauthorized access to the system, as it does not require interactive identification and authentication of a connection request, or for the use of two-factor authentication.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204606", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204606r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:86901" + } + }, + "fix_id": "F-4730r89011_fix", + "fixtext_fixref": "F-4730r89011_fix", + "ident": [ + { + "text": "SV-86901", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72277", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204606r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:23", + "idref": "xccdf_mil.disa.stig_rule_SV-204605r603261_rule", + "version": "RHEL-07-040530", + "severity": "low", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "SV-86899", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72275", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4729r89008_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:1020" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must not contain .shosts files.", + "id": "V-204606", + "desc": "The .shosts files are used to configure host-based authentication for individual users or the system via SSH. Host-based authentication is not sufficient for preventing unauthorized access to the system, as it does not require interactive identification and authentication of a connection request, or for the use of two-factor authentication.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:86901", + "label": "check" + }, + { + "data": "Remove any found \".shosts\" files from the system.\n\n# rm /[path]/[to]/[file]/.shosts", + "label": "fix" + } + ], + "impact": 0.7, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204606\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204606\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204606r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204606r603261_rule\",\n \"severity\": \"high\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-040540\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must not contain .shosts files.\",\n \"cdf:description\": \"<VulnDiscussion>The .shosts files are used to configure host-based authentication for individual users or the system via SSH. Host-based authentication is not sufficient for preventing unauthorized access to the system, as it does not require interactive identification and authentication of a connection request, or for the use of two-factor authentication.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"SV-86901\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72277\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Remove any found \\\".shosts\\\" files from the system.\\n\\n# rm /[path]/[to]/[file]/.shosts\",\n \"fixref\": \"F-4730r89011_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4730r89011_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:86901\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:23" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "high", + "description": "{\"VulnDiscussion\":\"The shosts.equiv files are used to configure host-based authentication for the system via SSH. Host-based authentication is not sufficient for preventing unauthorized access to the system, as it does not require interactive identification and authentication of a connection request, or for the use of two-factor authentication.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204607", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204607r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:86903" + } + }, + "fix_id": "F-4731r89014_fix", + "fixtext_fixref": "F-4731r89014_fix", + "ident": [ + { + "text": "SV-86903", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72279", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204607r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:23", + "idref": "xccdf_mil.disa.stig_rule_SV-204606r603261_rule", + "version": "RHEL-07-040540", + "severity": "high", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "SV-86901", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72277", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4730r89011_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:86901" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must not contain shosts.equiv files.", + "id": "V-204607", + "desc": "The shosts.equiv files are used to configure host-based authentication for the system via SSH. Host-based authentication is not sufficient for preventing unauthorized access to the system, as it does not require interactive identification and authentication of a connection request, or for the use of two-factor authentication.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:86903", + "label": "check" + }, + { + "data": "Remove any found \"shosts.equiv\" files from the system.\n\n# rm /[path]/[to]/[file]/shosts.equiv", + "label": "fix" + } + ], + "impact": 0.7, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204607\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204607\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204607r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204607r603261_rule\",\n \"severity\": \"high\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-040550\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must not contain shosts.equiv files.\",\n \"cdf:description\": \"<VulnDiscussion>The shosts.equiv files are used to configure host-based authentication for the system via SSH. Host-based authentication is not sufficient for preventing unauthorized access to the system, as it does not require interactive identification and authentication of a connection request, or for the use of two-factor authentication.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"SV-86903\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72279\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Remove any found \\\"shosts.equiv\\\" files from the system.\\n\\n# rm /[path]/[to]/[file]/shosts.equiv\",\n \"fixref\": \"F-4731r89014_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4731r89014_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:86903\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:23" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Source-routed packets allow the source of the packet to suggest that routers forward the packet along a different path than configured on the router, which can be used to bypass network security measures. This requirement applies only to the forwarding of source-routed traffic, such as when IPv4 forwarding is enabled and the system is functioning as a router.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204609", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204609r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-export": { + "value-id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_all_accept_source_route_value", + "export-name": "oval:mil.disa.stig.rhel7:var:3771" + }, + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:251" + } + }, + "fix_id": "F-4733r89020_fix", + "fixtext_fixref": "F-4733r89020_fix", + "ident": [ + { + "text": "CCE-27434-0", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86907", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72283", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204609r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:23", + "idref": "xccdf_mil.disa.stig_rule_SV-204607r603261_rule", + "version": "RHEL-07-040550", + "severity": "high", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "SV-86903", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72279", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4731r89014_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:86903" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must not forward Internet Protocol version 4 (IPv4) source-routed packets.", + "id": "V-204609", + "desc": "Source-routed packets allow the source of the packet to suggest that routers forward the packet along a different path than configured on the router, which can be used to bypass network security measures. This requirement applies only to the forwarding of source-routed traffic, such as when IPv4 forwarding is enabled and the system is functioning as a router.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:251", + "label": "check" + }, + { + "data": "Set the system to the required kernel parameter by adding the following line to \"/etc/sysctl.conf\" or a configuration file in the /etc/sysctl.d/ directory (or modify the line to have the required value):\n\nnet.ipv4.conf.all.accept_source_route = 0\n\nIssue the following command to make the changes take effect:\n\n# sysctl -system", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204609\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204609\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204609r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204609r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-040610\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must not forward Internet Protocol version 4 (IPv4) source-routed packets.\",\n \"cdf:description\": \"<VulnDiscussion>Source-routed packets allow the source of the packet to suggest that routers forward the packet along a different path than configured on the router, which can be used to bypass network security measures. This requirement applies only to the forwarding of source-routed traffic, such as when IPv4 forwarding is enabled and the system is functioning as a router.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-27434-0\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86907\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72283\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Set the system to the required kernel parameter by adding the following line to \\\"/etc/sysctl.conf\\\" or a configuration file in the /etc/sysctl.d/ directory (or modify the line to have the required value):\\n\\nnet.ipv4.conf.all.accept_source_route = 0\\n\\nIssue the following command to make the changes take effect:\\n\\n# sysctl -system\",\n \"fixref\": \"F-4733r89020_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4733r89020_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-export\": {\n \"value-id\": \"xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_all_accept_source_route_value\",\n \"export-name\": \"oval:mil.disa.stig.rhel7:var:3771\"\n },\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:251\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:23" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Source-routed packets allow the source of the packet to suggest that routers forward the packet along a different path than configured on the router, which can be used to bypass network security measures. This requirement applies only to the forwarding of source-routed traffic, such as when IPv4 forwarding is enabled and the system is functioning as a router.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204612", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204612r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-export": { + "value-id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_default_accept_source_route_value", + "export-name": "oval:mil.disa.stig.rhel7:var:3776" + }, + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:269" + } + }, + "fix_id": "F-4736r89029_fix", + "fixtext_fixref": "F-4736r89029_fix", + "ident": [ + { + "text": "CCE-80162-1", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86909", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72285", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204612r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:23", + "idref": "xccdf_mil.disa.stig_rule_SV-204609r603261_rule", + "version": "RHEL-07-040610", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-27434-0", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86907", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72283", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4733r89020_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-export": { + "value-id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_all_accept_source_route_value", + "export-name": "oval:mil.disa.stig.rhel7:var:3771" + }, + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:251" + } + } + }, + "value": { + "type": "number", + "Id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_all_accept_source_route_value", + "id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_all_accept_source_route_value", + "cdf:title": "net.ipv4.conf.all.accept_source_route", + "cdf:description": "Trackers could be using source-routed packets to\ngenerate traffic that seems to be intra-net, but actually was\ncreated outside and has been redirected.", + "cdf:value": [ + 0, + { + "text": 1, + "selector": "enabled" + }, + { + "text": 0, + "selector": "disabled" + } + ] + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must not forward Internet Protocol version 4 (IPv4) source-routed packets by default.", + "id": "V-204612", + "desc": "Source-routed packets allow the source of the packet to suggest that routers forward the packet along a different path than configured on the router, which can be used to bypass network security measures. This requirement applies only to the forwarding of source-routed traffic, such as when IPv4 forwarding is enabled and the system is functioning as a router.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:269", + "label": "check" + }, + { + "data": "Set the system to the required kernel parameter by adding the following line to \"/etc/sysctl.conf\" or a configuration file in the /etc/sysctl.d/ directory (or modify the line to have the required value):\n\nnet.ipv4.conf.default.accept_source_route = 0\n\nIssue the following command to make the changes take effect:\n\n# sysctl --system", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204612\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204612\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204612r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204612r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-040620\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must not forward Internet Protocol version 4 (IPv4) source-routed packets by default.\",\n \"cdf:description\": \"<VulnDiscussion>Source-routed packets allow the source of the packet to suggest that routers forward the packet along a different path than configured on the router, which can be used to bypass network security measures. This requirement applies only to the forwarding of source-routed traffic, such as when IPv4 forwarding is enabled and the system is functioning as a router.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80162-1\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86909\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72285\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Set the system to the required kernel parameter by adding the following line to \\\"/etc/sysctl.conf\\\" or a configuration file in the /etc/sysctl.d/ directory (or modify the line to have the required value):\\n\\nnet.ipv4.conf.default.accept_source_route = 0\\n\\nIssue the following command to make the changes take effect:\\n\\n# sysctl --system\",\n \"fixref\": \"F-4736r89029_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4736r89029_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-export\": {\n \"value-id\": \"xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_default_accept_source_route_value\",\n \"export-name\": \"oval:mil.disa.stig.rhel7:var:3776\"\n },\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:269\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:24" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Responding to broadcast (ICMP) echoes facilitates network mapping and provides a vector for amplification attacks.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204613", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204613r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-export": { + "value-id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_icmp_echo_ignore_broadcasts_value", + "export-name": "oval:mil.disa.stig.rhel7:var:3780" + }, + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:284" + } + }, + "fix_id": "F-4737r89032_fix", + "fixtext_fixref": "F-4737r89032_fix", + "ident": [ + { + "text": "CCE-80165-4", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86911", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72287", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204613r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:24", + "idref": "xccdf_mil.disa.stig_rule_SV-204612r603261_rule", + "version": "RHEL-07-040620", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-80162-1", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86909", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72285", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4736r89029_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-export": { + "value-id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_default_accept_source_route_value", + "export-name": "oval:mil.disa.stig.rhel7:var:3776" + }, + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:269" + } + } + }, + "value": { + "type": "number", + "Id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_default_accept_source_route_value", + "id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_default_accept_source_route_value", + "cdf:title": "net.ipv4.conf.default.accept_source_route", + "cdf:description": "Disable IP source routing?", + "cdf:value": [ + 0, + { + "text": 1, + "selector": "enabled" + }, + { + "text": 0, + "selector": "disabled" + } + ] + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must not respond to Internet Protocol version 4 (IPv4) Internet Control Message Protocol (ICMP) echoes sent to a broadcast address.", + "id": "V-204613", + "desc": "Responding to broadcast (ICMP) echoes facilitates network mapping and provides a vector for amplification attacks.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:284", + "label": "check" + }, + { + "data": "Set the system to the required kernel parameter by adding the following line to \"/etc/sysctl.conf\" or a configuration file in the /etc/sysctl.d/ directory (or modify the line to have the required value):\n\nnet.ipv4.icmp_echo_ignore_broadcasts = 1\n\nIssue the following command to make the changes take effect:\n\n# sysctl --system", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204613\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204613\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204613r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204613r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-040630\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must not respond to Internet Protocol version 4 (IPv4) Internet Control Message Protocol (ICMP) echoes sent to a broadcast address.\",\n \"cdf:description\": \"<VulnDiscussion>Responding to broadcast (ICMP) echoes facilitates network mapping and provides a vector for amplification attacks.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80165-4\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86911\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72287\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Set the system to the required kernel parameter by adding the following line to \\\"/etc/sysctl.conf\\\" or a configuration file in the /etc/sysctl.d/ directory (or modify the line to have the required value):\\n\\nnet.ipv4.icmp_echo_ignore_broadcasts = 1\\n\\nIssue the following command to make the changes take effect:\\n\\n# sysctl --system\",\n \"fixref\": \"F-4737r89032_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4737r89032_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-export\": {\n \"value-id\": \"xccdf_mil.disa.stig_value_sysctl_net_ipv4_icmp_echo_ignore_broadcasts_value\",\n \"export-name\": \"oval:mil.disa.stig.rhel7:var:3780\"\n },\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:284\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:24" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages modify the host's route table and are unauthenticated. An illicit ICMP redirect message could result in a man-in-the-middle attack.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204614", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204614r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-export": { + "value-id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_default_accept_redirects_value", + "export-name": "oval:mil.disa.stig.rhel7:var:3775" + }, + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:266" + } + }, + "fix_id": "F-4738r89035_fix", + "fixtext_fixref": "F-4738r89035_fix", + "ident": [ + { + "text": "CCE-80163-9", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86913", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72289", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204614r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:24", + "idref": "xccdf_mil.disa.stig_rule_SV-204613r603261_rule", + "version": "RHEL-07-040630", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-80165-4", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86911", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72287", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4737r89032_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-export": { + "value-id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_icmp_echo_ignore_broadcasts_value", + "export-name": "oval:mil.disa.stig.rhel7:var:3780" + }, + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:284" + } + } + }, + "value": { + "type": "number", + "Id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_icmp_echo_ignore_broadcasts_value", + "id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_icmp_echo_ignore_broadcasts_value", + "cdf:title": "net.ipv4.icmp_echo_ignore_broadcasts", + "cdf:description": "Ignore all ICMP ECHO and TIMESTAMP requests sent to it via broadcast/multicast", + "cdf:value": [ + 1, + { + "text": 1, + "selector": "enabled" + }, + { + "text": 0, + "selector": "disabled" + } + ] + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must prevent Internet Protocol version 4 (IPv4) Internet Control Message Protocol (ICMP) redirect messages from being accepted.", + "id": "V-204614", + "desc": "ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages modify the host's route table and are unauthenticated. An illicit ICMP redirect message could result in a man-in-the-middle attack.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:266", + "label": "check" + }, + { + "data": "Set the system to not accept IPv4 ICMP redirect messages by adding the following line to \"/etc/sysctl.conf\" or a configuration file in the /etc/sysctl.d/ directory (or modify the line to have the required value):\n\nnet.ipv4.conf.default.accept_redirects = 0\n\nIssue the following command to make the changes take effect:\n\n# sysctl --system", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204614\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204614\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204614r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204614r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-040640\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must prevent Internet Protocol version 4 (IPv4) Internet Control Message Protocol (ICMP) redirect messages from being accepted.\",\n \"cdf:description\": \"<VulnDiscussion>ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages modify the host's route table and are unauthenticated. An illicit ICMP redirect message could result in a man-in-the-middle attack.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80163-9\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86913\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72289\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Set the system to not accept IPv4 ICMP redirect messages by adding the following line to \\\"/etc/sysctl.conf\\\" or a configuration file in the /etc/sysctl.d/ directory (or modify the line to have the required value):\\n\\nnet.ipv4.conf.default.accept_redirects = 0\\n\\nIssue the following command to make the changes take effect:\\n\\n# sysctl --system\",\n \"fixref\": \"F-4738r89035_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4738r89035_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-export\": {\n \"value-id\": \"xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_default_accept_redirects_value\",\n \"export-name\": \"oval:mil.disa.stig.rhel7:var:3775\"\n },\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:266\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:24" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages modify the host's route table and are unauthenticated. An illicit ICMP redirect message could result in a man-in-the-middle attack.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204615", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204615r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-export": { + "value-id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_all_accept_redirects_value", + "export-name": "oval:mil.disa.stig.rhel7:var:3770" + }, + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:248" + } + }, + "fix_id": "F-4739r89038_fix", + "fixtext_fixref": "F-4739r89038_fix", + "ident": [ + { + "text": "CCE-80158-9", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-87827", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-73175", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204615r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:24", + "idref": "xccdf_mil.disa.stig_rule_SV-204614r603261_rule", + "version": "RHEL-07-040640", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-80163-9", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86913", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72289", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4738r89035_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-export": { + "value-id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_default_accept_redirects_value", + "export-name": "oval:mil.disa.stig.rhel7:var:3775" + }, + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:266" + } + } + }, + "value": { + "type": "number", + "Id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_default_accept_redirects_value", + "id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_default_accept_redirects_value", + "cdf:title": "net.ipv4.conf.default.accept_redirects", + "cdf:description": "Disable ICMP Redirect Acceptance?", + "cdf:value": [ + 0, + { + "text": 1, + "selector": "enabled" + }, + { + "text": 0, + "selector": "disabled" + } + ] + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must ignore Internet Protocol version 4 (IPv4) Internet Control Message Protocol (ICMP) redirect messages.", + "id": "V-204615", + "desc": "ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages modify the host's route table and are unauthenticated. An illicit ICMP redirect message could result in a man-in-the-middle attack.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:248", + "label": "check" + }, + { + "data": "Set the system to ignore IPv4 ICMP redirect messages by adding the following line to \"/etc/sysctl.conf\" or a configuration file in the /etc/sysctl.d/ directory (or modify the line to have the required value):\n\nnet.ipv4.conf.all.accept_redirects = 0\n\nIssue the following command to make the changes take effect:\n\n# sysctl --system", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204615\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204615\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204615r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204615r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-040641\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must ignore Internet Protocol version 4 (IPv4) Internet Control Message Protocol (ICMP) redirect messages.\",\n \"cdf:description\": \"<VulnDiscussion>ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages modify the host's route table and are unauthenticated. An illicit ICMP redirect message could result in a man-in-the-middle attack.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80158-9\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-87827\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-73175\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Set the system to ignore IPv4 ICMP redirect messages by adding the following line to \\\"/etc/sysctl.conf\\\" or a configuration file in the /etc/sysctl.d/ directory (or modify the line to have the required value):\\n\\nnet.ipv4.conf.all.accept_redirects = 0\\n\\nIssue the following command to make the changes take effect:\\n\\n# sysctl --system\",\n \"fixref\": \"F-4739r89038_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4739r89038_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-export\": {\n \"value-id\": \"xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_all_accept_redirects_value\",\n \"export-name\": \"oval:mil.disa.stig.rhel7:var:3770\"\n },\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:248\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:24" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages contain information from the system's route table, possibly revealing portions of the network topology.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204616", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204616r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:281" + } + }, + "fix_id": "F-4740r89041_fix", + "fixtext_fixref": "F-4740r89041_fix", + "ident": [ + { + "text": "CCE-80156-3", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86915", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72291", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204616r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:24", + "idref": "xccdf_mil.disa.stig_rule_SV-204615r603261_rule", + "version": "RHEL-07-040641", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-80158-9", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-87827", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-73175", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4739r89038_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-export": { + "value-id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_all_accept_redirects_value", + "export-name": "oval:mil.disa.stig.rhel7:var:3770" + }, + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:248" + } + } + }, + "value": { + "type": "number", + "Id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_all_accept_redirects_value", + "id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_all_accept_redirects_value", + "cdf:title": "net.ipv4.conf.all.accept_redirects", + "cdf:description": "Disable ICMP Redirect Acceptance", + "cdf:value": [ + 0, + { + "text": 1, + "selector": "enabled" + }, + { + "text": 0, + "selector": "disabled" + } + ] + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must not allow interfaces to perform Internet Protocol version 4 (IPv4) Internet Control Message Protocol (ICMP) redirects by default.", + "id": "V-204616", + "desc": "ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages contain information from the system's route table, possibly revealing portions of the network topology.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:281", + "label": "check" + }, + { + "data": "Configure the system to not allow interfaces to perform IPv4 ICMP redirects by default.\n\nSet the system to the required kernel parameter by adding the following line to \"/etc/sysctl.conf\" or a configuration file in the /etc/sysctl.d/ directory (or modify the line to have the required value):\n\nnet.ipv4.conf.default.send_redirects = 0\n\nIssue the following command to make the changes take effect:\n\n# sysctl --system", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204616\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204616\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204616r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204616r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-040650\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must not allow interfaces to perform Internet Protocol version 4 (IPv4) Internet Control Message Protocol (ICMP) redirects by default.\",\n \"cdf:description\": \"<VulnDiscussion>ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages contain information from the system's route table, possibly revealing portions of the network topology.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80156-3\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86915\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72291\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the system to not allow interfaces to perform IPv4 ICMP redirects by default.\\n\\nSet the system to the required kernel parameter by adding the following line to \\\"/etc/sysctl.conf\\\" or a configuration file in the /etc/sysctl.d/ directory (or modify the line to have the required value):\\n\\nnet.ipv4.conf.default.send_redirects = 0\\n\\nIssue the following command to make the changes take effect:\\n\\n# sysctl --system\",\n \"fixref\": \"F-4740r89041_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4740r89041_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:281\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:24" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages contain information from the system's route table, possibly revealing portions of the network topology.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204617", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204617r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:263" + } + }, + "fix_id": "F-4741r89044_fix", + "fixtext_fixref": "F-4741r89044_fix", + "ident": [ + { + "text": "CCE-80156-3", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86917", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72293", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204617r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:24", + "idref": "xccdf_mil.disa.stig_rule_SV-204616r603261_rule", + "version": "RHEL-07-040650", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-80156-3", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86915", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72291", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4740r89041_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:281" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must not send Internet Protocol version 4 (IPv4) Internet Control Message Protocol (ICMP) redirects.", + "id": "V-204617", + "desc": "ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages contain information from the system's route table, possibly revealing portions of the network topology.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:263", + "label": "check" + }, + { + "data": "Configure the system to not allow interfaces to perform IPv4 ICMP redirects.\n\nSet the system to the required kernel parameter by adding the following line to \"/etc/sysctl.conf\" or a configuration file in the /etc/sysctl.d/ directory (or modify the line to have the required value):\n\nnet.ipv4.conf.all.send_redirects = 0\n\nIssue the following command to make the changes take effect:\n\n# sysctl --system", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204617\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204617\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204617r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204617r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-040660\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must not send Internet Protocol version 4 (IPv4) Internet Control Message Protocol (ICMP) redirects.\",\n \"cdf:description\": \"<VulnDiscussion>ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages contain information from the system's route table, possibly revealing portions of the network topology.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80156-3\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86917\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72293\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the system to not allow interfaces to perform IPv4 ICMP redirects.\\n\\nSet the system to the required kernel parameter by adding the following line to \\\"/etc/sysctl.conf\\\" or a configuration file in the /etc/sysctl.d/ directory (or modify the line to have the required value):\\n\\nnet.ipv4.conf.all.send_redirects = 0\\n\\nIssue the following command to make the changes take effect:\\n\\n# sysctl --system\",\n \"fixref\": \"F-4741r89044_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4741r89044_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:263\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:24" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "high", + "description": "{\"VulnDiscussion\":\"The FTP service provides an unencrypted remote access that does not provide for the confidentiality and integrity of user passwords or the remote session. If a privileged user were to log on using this service, the privileged user password could be compromised. SSH or other encrypted file transfer methods must be used in place of this service.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204620", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204620r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:1301" + } + }, + "fix_id": "F-4744r89053_fix", + "fixtext_fixref": "F-4744r89053_fix", + "ident": [ + { + "text": "SV-86923", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72299", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204620r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:24", + "idref": "xccdf_mil.disa.stig_rule_SV-204617r603261_rule", + "version": "RHEL-07-040660", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-80156-3", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86917", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72293", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4741r89044_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:263" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must not have a File Transfer Protocol (FTP) server package installed unless needed.", + "id": "V-204620", + "desc": "The FTP service provides an unencrypted remote access that does not provide for the confidentiality and integrity of user passwords or the remote session. If a privileged user were to log on using this service, the privileged user password could be compromised. SSH or other encrypted file transfer methods must be used in place of this service.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:1301", + "label": "check" + }, + { + "data": "Document the \"vsftpd\" package with the ISSO as an operational requirement or remove it from the system with the following command:\n\n# yum remove vsftpd", + "label": "fix" + } + ], + "impact": 0.7, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204620\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204620\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204620r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204620r603261_rule\",\n \"severity\": \"high\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-040690\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must not have a File Transfer Protocol (FTP) server package installed unless needed.\",\n \"cdf:description\": \"<VulnDiscussion>The FTP service provides an unencrypted remote access that does not provide for the confidentiality and integrity of user passwords or the remote session. If a privileged user were to log on using this service, the privileged user password could be compromised. SSH or other encrypted file transfer methods must be used in place of this service.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"SV-86923\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72299\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Document the \\\"vsftpd\\\" package with the ISSO as an operational requirement or remove it from the system with the following command:\\n\\n# yum remove vsftpd\",\n \"fixref\": \"F-4744r89053_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4744r89053_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:1301\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:24" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000368", + "CCI-001813", + "CCI-001814", + "CCI-001812", + "CCI-000318" + ], + "nist": [ + "CM-6 c", + "CM-5 (1) (a)", + "CM-5 (1)", + "CM-11 (2)", + "CM-3 f" + ], + "severity": "high", + "description": "{\"VulnDiscussion\":\"If TFTP is required for operational support (such as the transmission of router configurations) its use must be documented with the Information System Security Officer (ISSO), restricted to only authorized personnel, and have access control rules established.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204621", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204621r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:1296" + } + }, + "fix_id": "F-4745r89056_fix", + "fixtext_fixref": "F-4745r89056_fix", + "ident": [ + { + "text": "CCE-80213-2", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86925", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72301", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000368", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001813", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001814", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001812", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000318", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204621r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:24", + "idref": "xccdf_mil.disa.stig_rule_SV-204620r603261_rule", + "version": "RHEL-07-040690", + "severity": "high", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "SV-86923", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72299", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4744r89053_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:1301" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must not have the Trivial File Transfer Protocol (TFTP) server package installed if not required for operational support.", + "id": "V-204621", + "desc": "If TFTP is required for operational support (such as the transmission of router configurations) its use must be documented with the Information System Security Officer (ISSO), restricted to only authorized personnel, and have access control rules established.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:1296", + "label": "check" + }, + { + "data": "Remove the TFTP package from the system with the following command:\n\n# yum remove tftp-server", + "label": "fix" + } + ], + "impact": 0.7, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204621\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204621\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204621r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204621r603261_rule\",\n \"severity\": \"high\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-040700\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must not have the Trivial File Transfer Protocol (TFTP) server package installed if not required for operational support.\",\n \"cdf:description\": \"<VulnDiscussion>If TFTP is required for operational support (such as the transmission of router configurations) its use must be documented with the Information System Security Officer (ISSO), restricted to only authorized personnel, and have access control rules established.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80213-2\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86925\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72301\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000368\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-001813\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-001814\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-001812\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-000318\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Remove the TFTP package from the system with the following command:\\n\\n# yum remove tftp-server\",\n \"fixref\": \"F-4745r89056_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4745r89056_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:1296\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:25" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"The security risk of using X11 forwarding is that the client's X11 display server may be exposed to attack when the SSH client requests forwarding. A system administrator may have a stance in which they want to protect clients that may expose themselves to attack by unwittingly requesting X11 forwarding, which can warrant a ''no'' setting.\\nX11 forwarding should be enabled with caution. Users with the ability to bypass file permissions on the remote host (for the user's X11 authorization database) can access the local X11 display through the forwarded connection. An attacker may then be able to perform activities such as keystroke monitoring if the ForwardX11Trusted option is also enabled.\\nIf X11 services are not required for the system's intended function, they should be disabled or restricted as appropriate to the system's needs.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204622", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204622r603849_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:1389" + } + }, + "fix_id": "F-4746r603848_fix", + "fixtext_fixref": "F-4746r603848_fix", + "ident": [ + { + "text": "CCE-80226-4", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86927", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72303", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204622r603849_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:25", + "idref": "xccdf_mil.disa.stig_rule_SV-204621r603261_rule", + "version": "RHEL-07-040700", + "severity": "high", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-80213-2", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86925", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72301", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000368", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001813", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001814", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001812", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-000318", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4745r89056_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:1296" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that remote X connections are disabled except to fulfill documented and validated mission requirements.", + "id": "V-204622", + "desc": "The security risk of using X11 forwarding is that the client's X11 display server may be exposed to attack when the SSH client requests forwarding. A system administrator may have a stance in which they want to protect clients that may expose themselves to attack by unwittingly requesting X11 forwarding, which can warrant a ''no'' setting.\nX11 forwarding should be enabled with caution. Users with the ability to bypass file permissions on the remote host (for the user's X11 authorization database) can access the local X11 display through the forwarded connection. An attacker may then be able to perform activities such as keystroke monitoring if the ForwardX11Trusted option is also enabled.\nIf X11 services are not required for the system's intended function, they should be disabled or restricted as appropriate to the system's needs.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:1389", + "label": "check" + }, + { + "data": "Edit the \"/etc/ssh/sshd_config\" file to uncomment or add the line for the \"X11Forwarding\" keyword and set its value to \"no\" (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor):\n\nX11Forwarding no\n\nThe SSH service must be restarted for changes to take effect:\n\n# systemctl restart sshd", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204622\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204622\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204622r603849_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204622r603849_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-040710\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must be configured so that remote X connections are disabled except to fulfill documented and validated mission requirements.\",\n \"cdf:description\": \"<VulnDiscussion>The security risk of using X11 forwarding is that the client's X11 display server may be exposed to attack when the SSH client requests forwarding. A system administrator may have a stance in which they want to protect clients that may expose themselves to attack by unwittingly requesting X11 forwarding, which can warrant a ''no'' setting.\\nX11 forwarding should be enabled with caution. Users with the ability to bypass file permissions on the remote host (for the user's X11 authorization database) can access the local X11 display through the forwarded connection. An attacker may then be able to perform activities such as keystroke monitoring if the ForwardX11Trusted option is also enabled.\\nIf X11 services are not required for the system's intended function, they should be disabled or restricted as appropriate to the system's needs.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80226-4\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86927\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72303\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Edit the \\\"/etc/ssh/sshd_config\\\" file to uncomment or add the line for the \\\"X11Forwarding\\\" keyword and set its value to \\\"no\\\" (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor):\\n\\nX11Forwarding no\\n\\nThe SSH service must be restarted for changes to take effect:\\n\\n# systemctl restart sshd\",\n \"fixref\": \"F-4746r603848_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4746r603848_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:1389\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-04-29T14:18:26" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Internet services that are not required for system or application processes must not be active to decrease the attack surface of the system. Graphical display managers have a long history of security vulnerabilities and must not be used unless approved and documented.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204624", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204624r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:1305" + } + }, + "fix_id": "F-36316r602658_fix", + "fixtext_fixref": "F-36316r602658_fix", + "ident": [ + { + "text": "CCE-27218-7", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86931", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72307", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204624r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:26", + "idref": "xccdf_mil.disa.stig_rule_SV-204622r603849_rule", + "version": "RHEL-07-040710", + "severity": "medium", + "weight": "10.0", + "cdf:result": "fail", + "cdf:ident": [ + { + "text": "CCE-80226-4", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86927", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72303", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4746r603848_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:1389" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must not have a graphical display manager installed unless approved.", + "id": "V-204624", + "desc": "Internet services that are not required for system or application processes must not be active to decrease the attack surface of the system. Graphical display managers have a long history of security vulnerabilities and must not be used unless approved and documented.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:1305", + "label": "check" + }, + { + "data": "Document the requirement for a graphical user interface with the ISSO or remove the related packages with the following commands:\n\n# rpm -e xorg-x11-server-common\n\n# systemctl set-default multi-user.target", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204624\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204624\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204624r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204624r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-040730\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must not have a graphical display manager installed unless approved.\",\n \"cdf:description\": \"<VulnDiscussion>Internet services that are not required for system or application processes must not be active to decrease the attack surface of the system. Graphical display managers have a long history of security vulnerabilities and must not be used unless approved and documented.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-27218-7\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86931\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72307\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Document the requirement for a graphical user interface with the ISSO or remove the related packages with the following commands:\\n\\n# rpm -e xorg-x11-server-common\\n\\n# systemctl set-default multi-user.target\",\n \"fixref\": \"F-36316r602658_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-36316r602658_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:1305\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-04-29T14:18:26" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Routing protocol daemons are typically used on routers to exchange network topology information with other routers. If this software is used when not required, system network information may be unnecessarily transmitted across the network.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204625", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204625r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:290" + } + }, + "fix_id": "F-4749r89068_fix", + "fixtext_fixref": "F-4749r89068_fix", + "ident": [ + { + "text": "CCE-80157-1", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86933", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72309", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204625r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:26", + "idref": "xccdf_mil.disa.stig_rule_SV-204624r603261_rule", + "version": "RHEL-07-040730", + "severity": "medium", + "weight": "10.0", + "cdf:result": "fail", + "cdf:ident": [ + { + "text": "CCE-27218-7", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86931", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72307", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-36316r602658_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:1305" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must not be performing packet forwarding unless the system is a router.", + "id": "V-204625", + "desc": "Routing protocol daemons are typically used on routers to exchange network topology information with other routers. If this software is used when not required, system network information may be unnecessarily transmitted across the network.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:290", + "label": "check" + }, + { + "data": "Set the system to the required kernel parameter by adding the following line to \"/etc/sysctl.conf\" or a configuration file in the /etc/sysctl.d/ directory (or modify the line to have the required value):\n\nnet.ipv4.ip_forward = 0\n\nIssue the following command to make the changes take effect:\n\n# sysctl --system", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204625\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204625\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204625r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204625r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-040740\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must not be performing packet forwarding unless the system is a router.\",\n \"cdf:description\": \"<VulnDiscussion>Routing protocol daemons are typically used on routers to exchange network topology information with other routers. If this software is used when not required, system network information may be unnecessarily transmitted across the network.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80157-1\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86933\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72309\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Set the system to the required kernel parameter by adding the following line to \\\"/etc/sysctl.conf\\\" or a configuration file in the /etc/sysctl.d/ directory (or modify the line to have the required value):\\n\\nnet.ipv4.ip_forward = 0\\n\\nIssue the following command to make the changes take effect:\\n\\n# sysctl --system\",\n \"fixref\": \"F-4749r89068_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4749r89068_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:290\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-04-29T14:18:28" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "high", + "description": "{\"VulnDiscussion\":\"Whether active or not, default Simple Network Management Protocol (SNMP) community strings must be changed to maintain security. If the service is running with the default authenticators, anyone can gather data about the system and the network and use the information to potentially compromise the integrity of the system or network(s). It is highly recommended that SNMP version 3 user authentication and message encryption be used in place of the version 2 community strings.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204627", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204627r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:1369" + } + }, + "fix_id": "F-4751r89074_fix", + "fixtext_fixref": "F-4751r89074_fix", + "ident": [ + { + "text": "CCE-27386-2", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86937", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72313", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204627r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:28", + "idref": "xccdf_mil.disa.stig_rule_SV-204625r603261_rule", + "version": "RHEL-07-040740", + "severity": "medium", + "weight": "10.0", + "cdf:result": "fail", + "cdf:ident": [ + { + "text": "CCE-80157-1", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86933", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72309", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4749r89068_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:290" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "SNMP community strings on the Red Hat Enterprise Linux operating system must be changed from the default.", + "id": "V-204627", + "desc": "Whether active or not, default Simple Network Management Protocol (SNMP) community strings must be changed to maintain security. If the service is running with the default authenticators, anyone can gather data about the system and the network and use the information to potentially compromise the integrity of the system or network(s). It is highly recommended that SNMP version 3 user authentication and message encryption be used in place of the version 2 community strings.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:1369", + "label": "check" + }, + { + "data": "If the \"/etc/snmp/snmpd.conf\" file exists, modify any lines that contain a community string value of \"public\" or \"private\" to another string value.", + "label": "fix" + } + ], + "impact": 0.7, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204627\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204627\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204627r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204627r603261_rule\",\n \"severity\": \"high\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-040800\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"SNMP community strings on the Red Hat Enterprise Linux operating system must be changed from the default.\",\n \"cdf:description\": \"<VulnDiscussion>Whether active or not, default Simple Network Management Protocol (SNMP) community strings must be changed to maintain security. If the service is running with the default authenticators, anyone can gather data about the system and the network and use the information to potentially compromise the integrity of the system or network(s). It is highly recommended that SNMP version 3 user authentication and message encryption be used in place of the version 2 community strings.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-27386-2\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86937\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72313\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"If the \\\"/etc/snmp/snmpd.conf\\\" file exists, modify any lines that contain a community string value of \\\"public\\\" or \\\"private\\\" to another string value.\",\n \"fixref\": \"F-4751r89074_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4751r89074_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:1369\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:28" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Source-routed packets allow the source of the packet to suggest that routers forward the packet along a different path than configured on the router, which can be used to bypass network security measures. This requirement applies only to the forwarding of source-routed traffic, such as when IPv6 forwarding is enabled and the system is functioning as a router.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204630", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204630r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-export": { + "value-id": "xccdf_mil.disa.stig_value_sysctl_net_ipv6_conf_all_accept_source_route_value", + "export-name": "oval:mil.disa.stig.rhel7:var:3785" + }, + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:303" + } + }, + "fix_id": "F-4754r89083_fix", + "fixtext_fixref": "F-4754r89083_fix", + "ident": [ + { + "text": "CCE-80179-5", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86943", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72319", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204630r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:28", + "idref": "xccdf_mil.disa.stig_rule_SV-204627r603261_rule", + "version": "RHEL-07-040800", + "severity": "high", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-27386-2", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86937", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72313", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4751r89074_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:1369" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must not forward IPv6 source-routed packets.", + "id": "V-204630", + "desc": "Source-routed packets allow the source of the packet to suggest that routers forward the packet along a different path than configured on the router, which can be used to bypass network security measures. This requirement applies only to the forwarding of source-routed traffic, such as when IPv6 forwarding is enabled and the system is functioning as a router.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:303", + "label": "check" + }, + { + "data": "Set the system to the required kernel parameter, if IPv6 is enabled, by adding the following line to \"/etc/sysctl.conf\" or a configuration file in the /etc/sysctl.d/ directory (or modify the line to have the required value):\n\nnet.ipv6.conf.all.accept_source_route = 0\n\nIssue the following command to make the changes take effect:\n\n# sysctl --system", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204630\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204630\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204630r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204630r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-040830\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must not forward IPv6 source-routed packets.\",\n \"cdf:description\": \"<VulnDiscussion>Source-routed packets allow the source of the packet to suggest that routers forward the packet along a different path than configured on the router, which can be used to bypass network security measures. This requirement applies only to the forwarding of source-routed traffic, such as when IPv6 forwarding is enabled and the system is functioning as a router.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80179-5\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-86943\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72319\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Set the system to the required kernel parameter, if IPv6 is enabled, by adding the following line to \\\"/etc/sysctl.conf\\\" or a configuration file in the /etc/sysctl.d/ directory (or modify the line to have the required value):\\n\\nnet.ipv6.conf.all.accept_source_route = 0\\n\\nIssue the following command to make the changes take effect:\\n\\n# sysctl --system\",\n \"fixref\": \"F-4754r89083_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4754r89083_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-export\": {\n \"value-id\": \"xccdf_mil.disa.stig_value_sysctl_net_ipv6_conf_all_accept_source_route_value\",\n \"export-name\": \"oval:mil.disa.stig.rhel7:var:3785\"\n },\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:303\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:29" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001953", + "CCI-001954", + "CCI-001948" + ], + "nist": [ + "IA-2 (12)", + "IA-2 (12)", + "IA-2 (11)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Using an authentication device, such as a CAC or token that is separate from the information system, ensures that even if the information system is compromised, that compromise will not affect credentials stored on the authentication device.\\n\\nMultifactor solutions that require devices separate from information systems gaining access include, for example, hardware tokens providing time-based or challenge-response authenticators and smart cards such as the U.S. Government Personal Identity Verification card and the DoD Common Access Card.\\n\\nA privileged account is defined as an information system account with authorizations of a privileged user.\\n\\nRemote access is access to DoD nonpublic information systems by an authorized user (or an information system) communicating through an external, non-organization-controlled network. Remote access methods include, for example, dial-up, broadband, and wireless.\\n\\nThis requirement only applies to components where this is specific to the function of the device or has the concept of an organizational user (e.g., VPN, proxy capability). This does not apply to authentication for the purpose of configuring the device itself (management).\\n\\nSatisfies: SRG-OS-000375-GPOS-00160, SRG-OS-000375-GPOS-00161, SRG-OS-000375-GPOS-00162\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204631", + "group_title": "SRG-OS-000375-GPOS-00160", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204631r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:87041" + } + }, + "fix_id": "F-4755r462473_fix", + "fixtext_fixref": "F-4755r462473_fix", + "ident": [ + { + "text": "SV-87041", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72417", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001953", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001954", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001948", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204631r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:29", + "idref": "xccdf_mil.disa.stig_rule_SV-204630r603261_rule", + "version": "RHEL-07-040830", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-80179-5", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-86943", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72319", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4754r89083_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-export": { + "value-id": "xccdf_mil.disa.stig_value_sysctl_net_ipv6_conf_all_accept_source_route_value", + "export-name": "oval:mil.disa.stig.rhel7:var:3785" + }, + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:303" + } + } + }, + "value": { + "type": "number", + "Id": "xccdf_mil.disa.stig_value_sysctl_net_ipv6_conf_all_accept_source_route_value", + "id": "xccdf_mil.disa.stig_value_sysctl_net_ipv6_conf_all_accept_source_route_value", + "cdf:title": "net.ipv6.conf.all.accept_source_route", + "cdf:description": "Trackers could be using source-routed packets to\ngenerate traffic that seems to be intra-net, but actually was\ncreated outside and has been redirected.", + "cdf:value": [ + 0, + { + "text": 1, + "selector": "enabled" + }, + { + "text": 0, + "selector": "disabled" + } + ] + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must have the required packages for multifactor authentication installed.", + "id": "V-204631", + "desc": "Using an authentication device, such as a CAC or token that is separate from the information system, ensures that even if the information system is compromised, that compromise will not affect credentials stored on the authentication device.\n\nMultifactor solutions that require devices separate from information systems gaining access include, for example, hardware tokens providing time-based or challenge-response authenticators and smart cards such as the U.S. Government Personal Identity Verification card and the DoD Common Access Card.\n\nA privileged account is defined as an information system account with authorizations of a privileged user.\n\nRemote access is access to DoD nonpublic information systems by an authorized user (or an information system) communicating through an external, non-organization-controlled network. Remote access methods include, for example, dial-up, broadband, and wireless.\n\nThis requirement only applies to components where this is specific to the function of the device or has the concept of an organizational user (e.g., VPN, proxy capability). This does not apply to authentication for the purpose of configuring the device itself (management).\n\nSatisfies: SRG-OS-000375-GPOS-00160, SRG-OS-000375-GPOS-00161, SRG-OS-000375-GPOS-00162", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:87041", + "label": "check" + }, + { + "data": "Configure the operating system to implement multifactor authentication by installing the required packages.\n\nInstall the pam_pkcs11 package with the following command:\n\n# yum install pam_pkcs11", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204631\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204631\",\n \"cdf:title\": \"SRG-OS-000375-GPOS-00160\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204631r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204631r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-041001\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must have the required packages for multifactor authentication installed.\",\n \"cdf:description\": \"<VulnDiscussion>Using an authentication device, such as a CAC or token that is separate from the information system, ensures that even if the information system is compromised, that compromise will not affect credentials stored on the authentication device.\\n\\nMultifactor solutions that require devices separate from information systems gaining access include, for example, hardware tokens providing time-based or challenge-response authenticators and smart cards such as the U.S. Government Personal Identity Verification card and the DoD Common Access Card.\\n\\nA privileged account is defined as an information system account with authorizations of a privileged user.\\n\\nRemote access is access to DoD nonpublic information systems by an authorized user (or an information system) communicating through an external, non-organization-controlled network. Remote access methods include, for example, dial-up, broadband, and wireless.\\n\\nThis requirement only applies to components where this is specific to the function of the device or has the concept of an organizational user (e.g., VPN, proxy capability). This does not apply to authentication for the purpose of configuring the device itself (management).\\n\\nSatisfies: SRG-OS-000375-GPOS-00160, SRG-OS-000375-GPOS-00161, SRG-OS-000375-GPOS-00162</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"SV-87041\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72417\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-001953\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-001954\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-001948\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to implement multifactor authentication by installing the required packages.\\n\\nInstall the pam_pkcs11 package with the following command:\\n\\n# yum install pam_pkcs11\",\n \"fixref\": \"F-4755r462473_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4755r462473_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:87041\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:29" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001948", + "CCI-001954", + "CCI-001953" + ], + "nist": [ + "IA-2 (11)", + "IA-2 (12)", + "IA-2 (12)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Using an authentication device, such as a CAC or token that is separate from the information system, ensures that even if the information system is compromised, that compromise will not affect credentials stored on the authentication device.\\n\\nMultifactor solutions that require devices separate from information systems gaining access include, for example, hardware tokens providing time-based or challenge-response authenticators and smart cards such as the U.S. Government Personal Identity Verification card and the DoD Common Access Card.\\n\\nA privileged account is defined as an information system account with authorizations of a privileged user.\\n\\nRemote access is access to DoD nonpublic information systems by an authorized user (or an information system) communicating through an external, non-organization-controlled network. Remote access methods include, for example, dial-up, broadband, and wireless.\\n\\nThis requirement only applies to components where this is specific to the function of the device or has the concept of an organizational user (e.g., VPN, proxy capability). This does not apply to authentication for the purpose of configuring the device itself (management).\\n\\nSatisfies: SRG-OS-000375-GPOS-00160, SRG-OS-000375-GPOS-00161, SRG-OS-000375-GPOS-00162\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204632", + "group_title": "SRG-OS-000375-GPOS-00160", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204632r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:1405" + } + }, + "fix_id": "F-4756r89089_fix", + "fixtext_fixref": "F-4756r89089_fix", + "ident": [ + { + "text": "CCE-80437-7", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-87051", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72427", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001948", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001954", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001953", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204632r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:29", + "idref": "xccdf_mil.disa.stig_rule_SV-204631r603261_rule", + "version": "RHEL-07-041001", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "SV-87041", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72417", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001953", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001954", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001948", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4755r462473_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:87041" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must implement multifactor authentication for access to privileged accounts via pluggable authentication modules (PAM).", + "id": "V-204632", + "desc": "Using an authentication device, such as a CAC or token that is separate from the information system, ensures that even if the information system is compromised, that compromise will not affect credentials stored on the authentication device.\n\nMultifactor solutions that require devices separate from information systems gaining access include, for example, hardware tokens providing time-based or challenge-response authenticators and smart cards such as the U.S. Government Personal Identity Verification card and the DoD Common Access Card.\n\nA privileged account is defined as an information system account with authorizations of a privileged user.\n\nRemote access is access to DoD nonpublic information systems by an authorized user (or an information system) communicating through an external, non-organization-controlled network. Remote access methods include, for example, dial-up, broadband, and wireless.\n\nThis requirement only applies to components where this is specific to the function of the device or has the concept of an organizational user (e.g., VPN, proxy capability). This does not apply to authentication for the purpose of configuring the device itself (management).\n\nSatisfies: SRG-OS-000375-GPOS-00160, SRG-OS-000375-GPOS-00161, SRG-OS-000375-GPOS-00162", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:1405", + "label": "check" + }, + { + "data": "Configure the operating system to implement multifactor authentication for remote access to privileged accounts via pluggable authentication modules (PAM).\n\nModify all of the services lines in \"/etc/sssd/sssd.conf\" or in configuration files found under \"/etc/sssd/conf.d\" to include pam.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204632\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204632\",\n \"cdf:title\": \"SRG-OS-000375-GPOS-00160\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204632r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204632r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-041002\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must implement multifactor authentication for access to privileged accounts via pluggable authentication modules (PAM).\",\n \"cdf:description\": \"<VulnDiscussion>Using an authentication device, such as a CAC or token that is separate from the information system, ensures that even if the information system is compromised, that compromise will not affect credentials stored on the authentication device.\\n\\nMultifactor solutions that require devices separate from information systems gaining access include, for example, hardware tokens providing time-based or challenge-response authenticators and smart cards such as the U.S. Government Personal Identity Verification card and the DoD Common Access Card.\\n\\nA privileged account is defined as an information system account with authorizations of a privileged user.\\n\\nRemote access is access to DoD nonpublic information systems by an authorized user (or an information system) communicating through an external, non-organization-controlled network. Remote access methods include, for example, dial-up, broadband, and wireless.\\n\\nThis requirement only applies to components where this is specific to the function of the device or has the concept of an organizational user (e.g., VPN, proxy capability). This does not apply to authentication for the purpose of configuring the device itself (management).\\n\\nSatisfies: SRG-OS-000375-GPOS-00160, SRG-OS-000375-GPOS-00161, SRG-OS-000375-GPOS-00162</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-80437-7\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"SV-87051\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72427\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-001948\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-001954\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-001953\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to implement multifactor authentication for remote access to privileged accounts via pluggable authentication modules (PAM).\\n\\nModify all of the services lines in \\\"/etc/sssd/sssd.conf\\\" or in configuration files found under \\\"/etc/sssd/conf.d\\\" to include pam.\",\n \"fixref\": \"F-4756r89089_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4756r89089_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:1405\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:30" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001954", + "CCI-001953", + "CCI-001948" + ], + "nist": [ + "IA-2 (12)", + "IA-2 (12)", + "IA-2 (11)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Using an authentication device, such as a CAC or token that is separate from the information system, ensures that even if the information system is compromised, that compromise will not affect credentials stored on the authentication device.\\n\\nMultifactor solutions that require devices separate from information systems gaining access include, for example, hardware tokens providing time-based or challenge-response authenticators and smart cards such as the U.S. Government Personal Identity Verification card and the DoD Common Access Card.\\n\\nA privileged account is defined as an information system account with authorizations of a privileged user.\\n\\nRemote access is access to DoD nonpublic information systems by an authorized user (or an information system) communicating through an external, non-organization-controlled network. Remote access methods include, for example, dial-up, broadband, and wireless.\\n\\nThis requirement only applies to components where this is specific to the function of the device or has the concept of an organizational user (e.g., VPN, proxy capability). This does not apply to authentication for the purpose of configuring the device itself (management).\\n\\nSatisfies: SRG-OS-000375-GPOS-00160, SRG-OS-000375-GPOS-00161, SRG-OS-000375-GPOS-00162\"}", + "group_id": "xccdf_mil.disa.stig_group_V-204633", + "group_title": "SRG-OS-000375-GPOS-00160", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-204633r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:87057" + } + }, + "fix_id": "F-4757r89092_fix", + "fixtext_fixref": "F-4757r89092_fix", + "ident": [ + { + "text": "SV-87057", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72433", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001954", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001953", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001948", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-204633r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:30", + "idref": "xccdf_mil.disa.stig_rule_SV-204632r603261_rule", + "version": "RHEL-07-041002", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "CCE-80437-7", + "system": "http://cce.mitre.org" + }, + { + "text": "SV-87051", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72427", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001948", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001954", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001953", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4756r89089_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:1405" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must implement certificate status checking for PKI authentication.", + "id": "V-204633", + "desc": "Using an authentication device, such as a CAC or token that is separate from the information system, ensures that even if the information system is compromised, that compromise will not affect credentials stored on the authentication device.\n\nMultifactor solutions that require devices separate from information systems gaining access include, for example, hardware tokens providing time-based or challenge-response authenticators and smart cards such as the U.S. Government Personal Identity Verification card and the DoD Common Access Card.\n\nA privileged account is defined as an information system account with authorizations of a privileged user.\n\nRemote access is access to DoD nonpublic information systems by an authorized user (or an information system) communicating through an external, non-organization-controlled network. Remote access methods include, for example, dial-up, broadband, and wireless.\n\nThis requirement only applies to components where this is specific to the function of the device or has the concept of an organizational user (e.g., VPN, proxy capability). This does not apply to authentication for the purpose of configuring the device itself (management).\n\nSatisfies: SRG-OS-000375-GPOS-00160, SRG-OS-000375-GPOS-00161, SRG-OS-000375-GPOS-00162", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:87057", + "label": "check" + }, + { + "data": "Configure the operating system to do certificate status checking for PKI authentication.\n\nModify all of the \"cert_policy\" lines in \"/etc/pam_pkcs11/pam_pkcs11.conf\" to include \"ocsp_on\".", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-204633\",\n \"id\": \"xccdf_mil.disa.stig_group_V-204633\",\n \"cdf:title\": \"SRG-OS-000375-GPOS-00160\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-204633r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-204633r603261_rule\",\n \"severity\": \"medium\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-041003\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must implement certificate status checking for PKI authentication.\",\n \"cdf:description\": \"<VulnDiscussion>Using an authentication device, such as a CAC or token that is separate from the information system, ensures that even if the information system is compromised, that compromise will not affect credentials stored on the authentication device.\\n\\nMultifactor solutions that require devices separate from information systems gaining access include, for example, hardware tokens providing time-based or challenge-response authenticators and smart cards such as the U.S. Government Personal Identity Verification card and the DoD Common Access Card.\\n\\nA privileged account is defined as an information system account with authorizations of a privileged user.\\n\\nRemote access is access to DoD nonpublic information systems by an authorized user (or an information system) communicating through an external, non-organization-controlled network. Remote access methods include, for example, dial-up, broadband, and wireless.\\n\\nThis requirement only applies to components where this is specific to the function of the device or has the concept of an organizational user (e.g., VPN, proxy capability). This does not apply to authentication for the purpose of configuring the device itself (management).\\n\\nSatisfies: SRG-OS-000375-GPOS-00160, SRG-OS-000375-GPOS-00161, SRG-OS-000375-GPOS-00162</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"SV-87057\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"V-72433\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-001954\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-001953\",\n \"system\": \"http://cyber.mil/cci\"\n },\n {\n \"text\": \"CCI-001948\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to do certificate status checking for PKI authentication.\\n\\nModify all of the \\\"cert_policy\\\" lines in \\\"/etc/pam_pkcs11/pam_pkcs11.conf\\\" to include \\\"ocsp_on\\\".\",\n \"fixref\": \"F-4757r89092_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-4757r89092_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:87057\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:30" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001749" + ], + "nist": [ + "CM-5 (3)" + ], + "severity": "high", + "description": "{\"VulnDiscussion\":\"Without cryptographic integrity protections, system command and files can be altered by unauthorized users without detection.\\n\\nCryptographic mechanisms used for protecting the integrity of information include, for example, signed hash functions using asymmetric cryptography enabling distribution of the public key to verify the hash information while maintaining the confidentiality of the key used to generate the hash.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-214799", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-214799r603261_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:1340" + } + }, + "fix_id": "F-15997r192363_fix", + "fixtext_fixref": "F-15997r192363_fix", + "ident": [ + { + "text": "CCE-27157-7", + "system": "http://cce.mitre.org" + }, + { + "text": "V-71855", + "system": "http://cyber.mil/legacy" + }, + { + "text": "SV-86479", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001749", + "system": "http://cyber.mil/cci" + } + ], + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2899, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-214799r603261_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "time": "2021-04-29T14:18:30", + "idref": "xccdf_mil.disa.stig_rule_SV-204633r603261_rule", + "version": "RHEL-07-041003", + "severity": "medium", + "weight": "10.0", + "cdf:result": "pass", + "cdf:ident": [ + { + "text": "SV-87057", + "system": "http://cyber.mil/legacy" + }, + { + "text": "V-72433", + "system": "http://cyber.mil/legacy" + }, + { + "text": "CCI-001954", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001953", + "system": "http://cyber.mil/cci" + }, + { + "text": "CCI-001948", + "system": "http://cyber.mil/cci" + } + ], + "cdf:fix": { + "id": "F-4757r89092_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "href": "#scap_mil.disa.stig_comp_U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml", + "name": "oval:mil.disa.stig.rhel7:def:87057" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Red Hat Enterprise Linux operating system must be configured so that the cryptographic hash of system files and commands matches vendor values.", + "id": "V-214799", + "desc": "Without cryptographic integrity protections, system command and files can be altered by unauthorized users without detection.\n\nCryptographic mechanisms used for protecting the integrity of information include, for example, signed hash functions using asymmetric cryptography enabling distribution of the public key to verify the hash information while maintaining the confidentiality of the key used to generate the hash.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel7:def:1340", + "label": "check" + }, + { + "data": "Run the following command to determine which package owns the file:\n\n# rpm -qf \n\nThe package can be reinstalled from a yum repository using the command:\n\n# sudo yum reinstall \n\nAlternatively, the package can be reinstalled from trusted media using the command:\n\n# sudo rpm -Uvh ", + "label": "fix" + } + ], + "impact": 0.7, + "code": "{\n \"Id\": \"xccdf_mil.disa.stig_group_V-214799\",\n \"id\": \"xccdf_mil.disa.stig_group_V-214799\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-214799r603261_rule\",\n \"id\": \"xccdf_mil.disa.stig_rule_SV-214799r603261_rule\",\n \"severity\": \"high\",\n \"weight\": \"10.0\",\n \"cdf:version\": {\n \"text\": \"RHEL-07-010020\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Red Hat Enterprise Linux operating system must be configured so that the cryptographic hash of system files and commands matches vendor values.\",\n \"cdf:description\": \"<VulnDiscussion>Without cryptographic integrity protections, system command and files can be altered by unauthorized users without detection.\\n\\nCryptographic mechanisms used for protecting the integrity of information include, for example, signed hash functions using asymmetric cryptography enabling distribution of the public key to verify the hash information while maintaining the confidentiality of the key used to generate the hash.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2899,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": [\n {\n \"text\": \"CCE-27157-7\",\n \"system\": \"http://cce.mitre.org\"\n },\n {\n \"text\": \"V-71855\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"SV-86479\",\n \"system\": \"http://cyber.mil/legacy\"\n },\n {\n \"text\": \"CCI-001749\",\n \"system\": \"http://cyber.mil/cci\"\n }\n ],\n \"cdf:fixtext\": {\n \"text\": \"Run the following command to determine which package owns the file:\\n\\n# rpm -qf <filename>\\n\\nThe package can be reinstalled from a yum repository using the command:\\n\\n# sudo yum reinstall <packagename>\\n\\nAlternatively, the package can be reinstalled from trusted media using the command:\\n\\n# sudo rpm -Uvh <packagename>\",\n \"fixref\": \"F-15997r192363_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-15997r192363_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"href\": \"U_RHEL_7_V3R2_STIG_SCAP_1-2_Benchmark-oval.xml\",\n \"name\": \"oval:mil.disa.stig.rhel7:def:1340\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-04-29T14:18:30" + } + ] + } + ], + "sha256": "a46589e65700d1d1f043aaf446d47d02fa5484724a3e538011bcbcc7feb82b79" + } + ], + "passthrough": { + "auxiliary_data": [ + { + "name": "XCCDF", + "data": { + "cdf:Benchmark": { + "resolved": "1", + "xsi:schemaLocation": "http://checklists.nist.gov/xccdf/1.2 http://scap.nist.gov/schema/xccdf/1.2/xccdf_1.2.xsd http://cpe.mitre.org/dictionary/2.0 http://scap.nist.gov/schema/cpe/2.3/cpe-dictionary_2.3.xsd http://cpe.mitre.org/language/2.0 http://scap.nist.gov/schema/cpe/2.3/cpe-language_2.3.xsd", + "xmlns:cdf": "http://checklists.nist.gov/xccdf/1.2", + "xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "cdf:status": { + "text": "accepted", + "date": "2020-12-08" + }, + "cdf:rear-matter": "", + "cdf:plain-text": [ + { + "text": "Release: 3.2 Benchmark Date: 22 Jan 2021", + "id": "release-info" + }, + { + "text": "3.2.1.41666", + "id": "generator" + }, + { + "text": "1.10.0", + "id": "conventionsVersion" + } + ], + "cdf:metadata": { + "dc:creator": "DISA", + "dc:publisher": "DISA", + "dc:contributor": "DISA", + "dc:source": "STIG.DOD.MIL" + }, + "cdf:Profile": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "cdf:title": "I - Mission Critical Classified", + "cdf:description": "<ProfileDescription></ProfileDescription>", + "cdf:select": [ + { + "idref": "xccdf_mil.disa.stig_group_V-204393", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204396", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204397", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204398", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204399", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204402", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204403", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204404", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204405", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204406", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204407", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204408", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204409", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204410", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204411", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204412", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204413", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204414", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204415", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204416", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204417", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204418", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204419", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204420", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204421", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204422", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204423", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204424", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204425", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204426", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204429", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204430", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204431", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204432", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204433", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204434", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204435", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204436", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204437", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204438", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204439", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204440", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204442", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204443", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204445", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204447", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204448", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204449", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204450", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204451", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204452", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204457", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204458", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204461", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204462", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204466", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204467", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204482", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204483", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204487", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204490", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204491", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204493", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204494", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204495", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204496", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204497", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204502", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204503", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204504", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204506", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204507", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204508", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204509", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204510", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204511", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204512", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204514", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204515", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204516", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204517", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204518", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204519", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204520", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204521", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204522", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204523", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204524", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204525", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204526", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204527", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204528", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204529", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204530", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204531", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204532", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204533", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204534", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204535", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204536", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204537", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204538", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204539", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204540", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204541", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204542", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204543", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204544", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204545", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204546", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204547", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204548", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204549", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204550", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204551", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204552", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204553", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204554", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204555", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204556", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204557", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204558", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204559", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204560", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204561", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204562", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204563", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204564", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204565", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204566", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204567", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204568", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204569", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204570", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204571", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204572", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204573", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204576", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204578", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204584", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204585", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204587", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204588", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204589", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204590", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204591", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204592", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204593", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204594", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204595", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204596", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204597", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204598", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204599", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204600", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204601", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204602", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204605", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204606", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204607", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204609", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204612", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204613", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204614", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204615", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204616", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204617", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204620", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204621", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204622", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204624", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204625", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204627", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204630", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204631", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204632", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204633", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-214799", + "selected": "true" + } + ] + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "cdf:title": "I - Mission Critical Public", + "cdf:description": "<ProfileDescription></ProfileDescription>", + "cdf:select": [ + { + "idref": "xccdf_mil.disa.stig_group_V-204393", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204396", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204397", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204398", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204399", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204402", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204403", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204404", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204405", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204406", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204407", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204408", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204409", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204410", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204411", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204412", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204413", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204414", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204415", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204416", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204417", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204418", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204419", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204420", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204421", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204422", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204423", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204424", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204425", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204426", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204429", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204430", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204431", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204432", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204433", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204434", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204435", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204436", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204437", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204438", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204439", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204440", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204442", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204443", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204445", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204447", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204448", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204449", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204450", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204451", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204452", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204457", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204458", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204461", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204462", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204466", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204467", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204482", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204483", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204487", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204490", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204491", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204493", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204494", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204495", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204496", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204497", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204502", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204503", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204504", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204506", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204507", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204508", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204509", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204510", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204511", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204512", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204514", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204515", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204516", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204517", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204518", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204519", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204520", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204521", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204522", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204523", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204524", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204525", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204526", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204527", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204528", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204529", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204530", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204531", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204532", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204533", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204534", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204535", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204536", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204537", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204538", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204539", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204540", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204541", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204542", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204543", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204544", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204545", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204546", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204547", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204548", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204549", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204550", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204551", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204552", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204553", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204554", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204555", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204556", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204557", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204558", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204559", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204560", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204561", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204562", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204563", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204564", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204565", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204566", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204567", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204568", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204569", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204570", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204571", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204572", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204573", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204576", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204578", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204584", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204585", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204587", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204588", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204589", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204590", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204591", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204592", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204593", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204594", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204595", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204596", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204597", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204598", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204599", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204600", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204601", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204602", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204605", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204606", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204607", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204609", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204612", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204613", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204614", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204615", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204616", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204617", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204620", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204621", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204622", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204624", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204625", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204627", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204630", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204631", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204632", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204633", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-214799", + "selected": "true" + } + ] + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "cdf:title": "I - Mission Critical Sensitive", + "cdf:description": "<ProfileDescription></ProfileDescription>", + "cdf:select": [ + { + "idref": "xccdf_mil.disa.stig_group_V-204393", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204396", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204397", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204398", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204399", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204402", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204403", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204404", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204405", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204406", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204407", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204408", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204409", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204410", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204411", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204412", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204413", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204414", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204415", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204416", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204417", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204418", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204419", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204420", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204421", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204422", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204423", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204424", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204425", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204426", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204429", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204430", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204431", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204432", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204433", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204434", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204435", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204436", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204437", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204438", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204439", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204440", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204442", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204443", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204445", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204447", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204448", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204449", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204450", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204451", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204452", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204457", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204458", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204461", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204462", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204466", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204467", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204482", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204483", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204487", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204490", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204491", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204493", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204494", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204495", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204496", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204497", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204502", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204503", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204504", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204506", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204507", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204508", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204509", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204510", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204511", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204512", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204514", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204515", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204516", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204517", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204518", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204519", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204520", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204521", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204522", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204523", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204524", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204525", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204526", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204527", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204528", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204529", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204530", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204531", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204532", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204533", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204534", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204535", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204536", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204537", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204538", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204539", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204540", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204541", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204542", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204543", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204544", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204545", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204546", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204547", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204548", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204549", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204550", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204551", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204552", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204553", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204554", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204555", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204556", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204557", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204558", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204559", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204560", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204561", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204562", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204563", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204564", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204565", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204566", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204567", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204568", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204569", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204570", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204571", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204572", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204573", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204576", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204578", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204584", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204585", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204587", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204588", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204589", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204590", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204591", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204592", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204593", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204594", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204595", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204596", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204597", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204598", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204599", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204600", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204601", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204602", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204605", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204606", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204607", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204609", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204612", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204613", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204614", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204615", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204616", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204617", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204620", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204621", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204622", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204624", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204625", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204627", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204630", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204631", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204632", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204633", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-214799", + "selected": "true" + } + ] + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "cdf:title": "II - Mission Support Classified", + "cdf:description": "<ProfileDescription></ProfileDescription>", + "cdf:select": [ + { + "idref": "xccdf_mil.disa.stig_group_V-204393", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204396", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204397", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204398", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204399", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204402", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204403", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204404", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204405", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204406", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204407", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204408", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204409", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204410", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204411", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204412", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204413", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204414", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204415", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204416", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204417", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204418", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204419", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204420", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204421", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204422", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204423", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204424", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204425", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204426", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204429", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204430", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204431", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204432", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204433", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204434", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204435", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204436", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204437", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204438", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204439", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204440", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204442", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204443", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204445", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204447", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204448", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204449", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204450", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204451", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204452", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204457", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204458", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204461", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204462", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204466", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204467", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204482", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204483", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204487", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204490", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204491", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204493", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204494", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204495", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204496", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204497", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204502", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204503", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204504", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204506", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204507", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204508", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204509", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204510", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204511", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204512", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204514", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204515", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204516", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204517", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204518", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204519", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204520", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204521", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204522", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204523", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204524", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204525", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204526", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204527", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204528", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204529", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204530", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204531", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204532", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204533", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204534", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204535", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204536", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204537", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204538", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204539", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204540", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204541", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204542", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204543", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204544", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204545", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204546", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204547", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204548", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204549", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204550", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204551", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204552", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204553", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204554", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204555", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204556", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204557", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204558", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204559", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204560", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204561", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204562", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204563", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204564", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204565", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204566", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204567", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204568", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204569", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204570", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204571", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204572", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204573", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204576", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204578", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204584", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204585", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204587", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204588", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204589", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204590", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204591", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204592", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204593", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204594", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204595", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204596", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204597", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204598", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204599", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204600", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204601", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204602", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204605", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204606", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204607", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204609", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204612", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204613", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204614", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204615", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204616", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204617", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204620", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204621", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204622", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204624", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204625", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204627", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204630", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204631", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204632", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204633", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-214799", + "selected": "true" + } + ] + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "cdf:title": "II - Mission Support Public", + "cdf:description": "<ProfileDescription></ProfileDescription>", + "cdf:select": [ + { + "idref": "xccdf_mil.disa.stig_group_V-204393", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204396", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204397", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204398", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204399", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204402", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204403", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204404", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204405", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204406", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204407", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204408", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204409", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204410", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204411", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204412", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204413", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204414", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204415", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204416", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204417", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204418", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204419", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204420", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204421", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204422", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204423", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204424", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204425", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204426", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204429", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204430", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204431", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204432", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204433", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204434", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204435", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204436", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204437", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204438", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204439", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204440", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204442", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204443", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204445", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204447", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204448", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204449", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204450", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204451", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204452", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204457", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204458", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204461", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204462", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204466", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204467", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204482", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204483", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204487", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204490", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204491", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204493", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204494", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204495", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204496", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204497", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204502", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204503", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204504", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204506", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204507", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204508", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204509", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204510", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204511", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204512", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204514", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204515", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204516", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204517", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204518", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204519", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204520", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204521", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204522", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204523", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204524", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204525", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204526", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204527", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204528", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204529", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204530", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204531", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204532", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204533", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204534", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204535", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204536", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204537", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204538", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204539", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204540", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204541", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204542", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204543", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204544", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204545", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204546", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204547", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204548", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204549", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204550", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204551", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204552", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204553", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204554", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204555", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204556", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204557", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204558", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204559", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204560", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204561", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204562", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204563", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204564", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204565", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204566", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204567", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204568", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204569", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204570", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204571", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204572", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204573", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204576", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204578", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204584", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204585", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204587", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204588", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204589", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204590", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204591", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204592", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204593", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204594", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204595", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204596", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204597", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204598", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204599", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204600", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204601", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204602", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204605", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204606", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204607", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204609", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204612", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204613", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204614", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204615", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204616", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204617", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204620", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204621", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204622", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204624", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204625", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204627", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204630", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204631", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204632", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204633", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-214799", + "selected": "true" + } + ] + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "cdf:title": "II - Mission Support Sensitive", + "cdf:description": "<ProfileDescription></ProfileDescription>", + "cdf:select": [ + { + "idref": "xccdf_mil.disa.stig_group_V-204393", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204396", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204397", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204398", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204399", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204402", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204403", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204404", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204405", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204406", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204407", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204408", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204409", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204410", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204411", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204412", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204413", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204414", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204415", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204416", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204417", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204418", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204419", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204420", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204421", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204422", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204423", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204424", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204425", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204426", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204429", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204430", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204431", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204432", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204433", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204434", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204435", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204436", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204437", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204438", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204439", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204440", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204442", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204443", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204445", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204447", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204448", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204449", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204450", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204451", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204452", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204457", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204458", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204461", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204462", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204466", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204467", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204482", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204483", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204487", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204490", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204491", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204493", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204494", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204495", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204496", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204497", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204502", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204503", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204504", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204506", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204507", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204508", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204509", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204510", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204511", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204512", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204514", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204515", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204516", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204517", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204518", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204519", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204520", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204521", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204522", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204523", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204524", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204525", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204526", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204527", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204528", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204529", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204530", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204531", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204532", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204533", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204534", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204535", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204536", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204537", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204538", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204539", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204540", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204541", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204542", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204543", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204544", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204545", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204546", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204547", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204548", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204549", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204550", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204551", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204552", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204553", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204554", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204555", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204556", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204557", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204558", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204559", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204560", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204561", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204562", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204563", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204564", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204565", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204566", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204567", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204568", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204569", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204570", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204571", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204572", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204573", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204576", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204578", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204584", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204585", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204587", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204588", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204589", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204590", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204591", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204592", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204593", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204594", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204595", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204596", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204597", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204598", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204599", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204600", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204601", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204602", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204605", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204606", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204607", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204609", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204612", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204613", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204614", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204615", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204616", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204617", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204620", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204621", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204622", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204624", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204625", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204627", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204630", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204631", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204632", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204633", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-214799", + "selected": "true" + } + ] + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "cdf:title": "III - Administrative Classified", + "cdf:description": "<ProfileDescription></ProfileDescription>", + "cdf:select": [ + { + "idref": "xccdf_mil.disa.stig_group_V-204393", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204396", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204397", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204398", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204399", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204402", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204403", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204404", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204405", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204406", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204407", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204408", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204409", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204410", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204411", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204412", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204413", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204414", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204415", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204416", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204417", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204418", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204419", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204420", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204421", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204422", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204423", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204424", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204425", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204426", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204429", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204430", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204431", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204432", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204433", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204434", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204435", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204436", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204437", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204438", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204439", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204440", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204442", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204443", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204445", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204447", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204448", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204449", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204450", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204451", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204452", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204457", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204458", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204461", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204462", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204466", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204467", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204482", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204483", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204487", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204490", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204491", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204493", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204494", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204495", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204496", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204497", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204502", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204503", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204504", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204506", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204507", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204508", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204509", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204510", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204511", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204512", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204514", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204515", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204516", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204517", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204518", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204519", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204520", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204521", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204522", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204523", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204524", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204525", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204526", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204527", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204528", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204529", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204530", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204531", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204532", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204533", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204534", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204535", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204536", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204537", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204538", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204539", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204540", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204541", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204542", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204543", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204544", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204545", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204546", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204547", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204548", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204549", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204550", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204551", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204552", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204553", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204554", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204555", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204556", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204557", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204558", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204559", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204560", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204561", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204562", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204563", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204564", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204565", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204566", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204567", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204568", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204569", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204570", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204571", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204572", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204573", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204576", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204578", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204584", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204585", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204587", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204588", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204589", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204590", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204591", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204592", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204593", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204594", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204595", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204596", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204597", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204598", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204599", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204600", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204601", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204602", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204605", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204606", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204607", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204609", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204612", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204613", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204614", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204615", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204616", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204617", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204620", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204621", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204622", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204624", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204625", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204627", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204630", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204631", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204632", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204633", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-214799", + "selected": "true" + } + ] + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "cdf:title": "III - Administrative Public", + "cdf:description": "<ProfileDescription></ProfileDescription>", + "cdf:select": [ + { + "idref": "xccdf_mil.disa.stig_group_V-204393", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204396", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204397", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204398", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204399", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204402", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204403", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204404", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204405", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204406", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204407", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204408", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204409", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204410", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204411", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204412", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204413", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204414", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204415", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204416", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204417", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204418", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204419", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204420", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204421", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204422", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204423", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204424", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204425", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204426", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204429", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204430", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204431", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204432", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204433", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204434", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204435", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204436", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204437", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204438", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204439", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204440", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204442", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204443", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204445", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204447", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204448", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204449", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204450", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204451", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204452", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204457", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204458", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204461", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204462", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204466", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204467", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204482", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204483", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204487", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204490", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204491", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204493", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204494", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204495", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204496", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204497", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204502", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204503", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204504", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204506", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204507", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204508", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204509", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204510", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204511", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204512", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204514", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204515", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204516", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204517", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204518", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204519", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204520", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204521", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204522", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204523", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204524", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204525", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204526", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204527", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204528", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204529", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204530", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204531", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204532", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204533", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204534", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204535", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204536", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204537", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204538", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204539", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204540", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204541", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204542", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204543", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204544", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204545", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204546", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204547", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204548", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204549", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204550", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204551", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204552", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204553", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204554", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204555", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204556", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204557", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204558", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204559", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204560", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204561", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204562", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204563", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204564", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204565", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204566", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204567", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204568", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204569", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204570", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204571", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204572", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204573", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204576", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204578", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204584", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204585", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204587", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204588", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204589", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204590", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204591", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204592", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204593", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204594", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204595", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204596", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204597", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204598", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204599", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204600", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204601", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204602", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204605", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204606", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204607", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204609", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204612", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204613", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204614", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204615", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204616", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204617", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204620", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204621", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204622", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204624", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204625", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204627", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204630", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204631", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204632", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204633", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-214799", + "selected": "true" + } + ] + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "cdf:title": "III - Administrative Sensitive", + "cdf:description": "<ProfileDescription></ProfileDescription>", + "cdf:select": [ + { + "idref": "xccdf_mil.disa.stig_group_V-204393", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204396", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204397", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204398", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204399", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204402", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204403", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204404", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204405", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204406", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204407", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204408", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204409", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204410", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204411", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204412", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204413", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204414", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204415", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204416", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204417", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204418", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204419", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204420", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204421", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204422", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204423", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204424", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204425", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204426", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204429", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204430", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204431", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204432", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204433", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204434", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204435", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204436", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204437", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204438", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204439", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204440", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204442", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204443", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204445", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204447", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204448", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204449", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204450", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204451", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204452", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204457", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204458", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204461", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204462", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204466", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204467", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204482", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204483", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204487", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204490", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204491", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204493", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204494", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204495", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204496", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204497", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204502", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204503", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204504", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204506", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204507", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204508", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204509", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204510", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204511", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204512", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204514", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204515", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204516", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204517", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204518", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204519", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204520", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204521", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204522", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204523", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204524", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204525", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204526", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204527", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204528", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204529", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204530", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204531", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204532", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204533", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204534", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204535", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204536", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204537", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204538", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204539", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204540", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204541", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204542", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204543", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204544", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204545", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204546", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204547", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204548", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204549", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204550", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204551", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204552", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204553", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204554", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204555", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204556", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204557", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204558", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204559", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204560", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204561", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204562", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204563", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204564", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204565", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204566", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204567", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204568", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204569", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204570", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204571", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204572", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204573", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204576", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204578", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204584", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204585", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204587", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204588", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204589", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204590", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204591", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204592", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204593", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204594", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204595", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204596", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204597", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204598", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204599", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204600", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204601", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204602", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204605", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204606", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204607", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204609", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204612", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204613", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204614", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204615", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204616", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204617", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204620", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204621", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204622", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204624", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204625", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204627", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204630", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204631", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204632", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-204633", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-214799", + "selected": "true" + } + ] + }, + { + "id": "xccdf_mil.disa.stig_profile_CAT_I_Only", + "cdf:title": "CAT I Only", + "cdf:description": "This profile only includes rules that are Severity Category I.", + "cdf:select": [ + { + "idref": "xccdf_mil.disa.stig_rule_SV-204393r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204396r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204397r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204398r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204399r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204402r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204403r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204404r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204405r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204406r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204407r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204408r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204409r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204410r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204411r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204412r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204413r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204414r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204415r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204416r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204417r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204418r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204419r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204420r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204421r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204422r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204423r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204426r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204429r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204430r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204431r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204434r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204435r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204437r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204445r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204449r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204450r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204451r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204452r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204457r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204461r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204466r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204467r603826_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204482r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204483r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204487r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204490r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204491r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204493r603840_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204494r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204495r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204496r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204503r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204504r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204506r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204507r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204508r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204509r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204510r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204511r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204512r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204514r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204515r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204516r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204517r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204518r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204519r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204520r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204521r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204522r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204523r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204524r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204525r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204526r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204527r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204528r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204529r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204530r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204531r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204532r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204533r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204534r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204535r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204536r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204537r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204538r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204539r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204540r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204541r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204542r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204543r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204544r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204545r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204546r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204547r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204548r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204549r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204550r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204551r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204552r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204553r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204554r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204555r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204556r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204557r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204558r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204559r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204560r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204561r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204562r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204563r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204564r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204565r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204566r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204567r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204568r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204569r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204570r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204571r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204572r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204573r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204576r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204578r603843_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204584r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204585r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204587r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204588r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204589r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204590r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204591r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204592r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204593r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204595r603846_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204596r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204597r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204598r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204599r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204600r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204601r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204602r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204605r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204609r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204612r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204613r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204614r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204615r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204616r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204617r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204622r603849_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204624r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204625r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204630r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204631r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204632r603261_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-204633r603261_rule", + "selected": "false" + } + ] + } + ], + "cdf:Value": [ + { + "type": "number", + "Id": "xccdf_mil.disa.stig_value_var_password_pam_unix_remember", + "id": "xccdf_mil.disa.stig_value_var_password_pam_unix_remember", + "cdf:title": "remember", + "cdf:description": "The last n passwords for each user are saved in /etc/security/opasswd in order to force password change history and keep the user from alternating between the same password too frequently.", + "cdf:value": [ + 5, + { + "text": 0, + "selector": "0" + }, + { + "text": 4, + "selector": "4" + }, + { + "text": 5, + "selector": "5" + }, + { + "text": 10, + "selector": "10" + }, + { + "text": 24, + "selector": "24" + } + ] + }, + { + "type": "number", + "Id": "xccdf_mil.disa.stig_value_var_password_pam_ucredit", + "id": "xccdf_mil.disa.stig_value_var_password_pam_ucredit", + "cdf:title": "ucredit", + "cdf:description": "Minimum number of upper case in password", + "cdf:value": [ + -1, + { + "text": -2, + "selector": "2" + }, + { + "text": -1, + "selector": "1" + }, + { + "text": 0, + "selector": "0" + } + ] + }, + { + "type": "number", + "Id": "xccdf_mil.disa.stig_value_var_password_pam_ocredit", + "id": "xccdf_mil.disa.stig_value_var_password_pam_ocredit", + "cdf:title": "ocredit", + "cdf:description": "Minimum number of other (special characters) in\npassword", + "cdf:value": [ + -1, + { + "text": -2, + "selector": "2" + }, + { + "text": -1, + "selector": "1" + }, + { + "text": 0, + "selector": "0" + } + ] + }, + { + "type": "number", + "Id": "xccdf_mil.disa.stig_value_var_password_pam_minlen", + "id": "xccdf_mil.disa.stig_value_var_password_pam_minlen", + "cdf:title": "minlen", + "cdf:description": "Minimum number of characters in password", + "cdf:value": [ + 15, + { + "text": 6, + "selector": "6" + }, + { + "text": 7, + "selector": "7" + }, + { + "text": 8, + "selector": "8" + }, + { + "text": 10, + "selector": "10" + }, + { + "text": 12, + "selector": "12" + }, + { + "text": 14, + "selector": "14" + }, + { + "text": 15, + "selector": "15" + } + ] + }, + { + "type": "number", + "Id": "xccdf_mil.disa.stig_value_var_password_pam_minclass", + "id": "xccdf_mil.disa.stig_value_var_password_pam_minclass", + "cdf:title": "minclass", + "cdf:description": "Minimum number of categories of characters that must exist in a password", + "cdf:value": [ + 4, + { + "text": 1, + "selector": "1" + }, + { + "text": 2, + "selector": "2" + }, + { + "text": 3, + "selector": "3" + }, + { + "text": 4, + "selector": "4" + } + ] + }, + { + "type": "number", + "Id": "xccdf_mil.disa.stig_value_var_password_pam_maxrepeat", + "id": "xccdf_mil.disa.stig_value_var_password_pam_maxrepeat", + "cdf:title": "maxrepeat", + "cdf:description": "Maximum Number of Consecutive Repeating Characters in a Password", + "cdf:value": [ + 3, + { + "text": 1, + "selector": "1" + }, + { + "text": 2, + "selector": "2" + }, + { + "text": 3, + "selector": "3" + } + ] + }, + { + "type": "number", + "Id": "xccdf_mil.disa.stig_value_var_password_pam_maxclassrepeat", + "id": "xccdf_mil.disa.stig_value_var_password_pam_maxclassrepeat", + "cdf:title": "maxclassrepeat", + "cdf:description": "Maximum Number of Consecutive Repeating Characters in a Password From the Same Character Class", + "cdf:value": [ + 4, + { + "text": 1, + "selector": "1" + }, + { + "text": 2, + "selector": "2" + }, + { + "text": 3, + "selector": "3" + }, + { + "text": 4, + "selector": "4" + } + ] + }, + { + "type": "number", + "Id": "xccdf_mil.disa.stig_value_var_password_pam_lcredit", + "id": "xccdf_mil.disa.stig_value_var_password_pam_lcredit", + "cdf:title": "lcredit", + "cdf:description": "Minimum number of lower case in password", + "cdf:value": [ + -1, + { + "text": -2, + "selector": "2" + }, + { + "text": -1, + "selector": "1" + }, + { + "text": 0, + "selector": "0" + } + ] + }, + { + "type": "number", + "Id": "xccdf_mil.disa.stig_value_var_password_pam_difok", + "id": "xccdf_mil.disa.stig_value_var_password_pam_difok", + "cdf:title": "difok", + "cdf:description": "Minimum number of characters not present in old\npassword", + "cdf:warning": "Keep this high for short passwords", + "cdf:value": [ + 8, + { + "text": 2, + "selector": "2" + }, + { + "text": 3, + "selector": "3" + }, + { + "text": 4, + "selector": "4" + }, + { + "text": 5, + "selector": "5" + }, + { + "text": 6, + "selector": "6" + }, + { + "text": 7, + "selector": "7" + }, + { + "text": 8, + "selector": "8" + }, + { + "text": 15, + "selector": "15" + } + ] + }, + { + "type": "number", + "Id": "xccdf_mil.disa.stig_value_var_password_pam_dcredit", + "id": "xccdf_mil.disa.stig_value_var_password_pam_dcredit", + "cdf:title": "dcredit", + "cdf:description": "Minimum number of digits in password", + "cdf:value": [ + -1, + { + "text": -2, + "selector": "2" + }, + { + "text": -1, + "selector": "1" + }, + { + "text": 0, + "selector": "0" + } + ] + }, + { + "Id": "xccdf_mil.disa.stig_value_var_auditd_action_mail_acct", + "id": "xccdf_mil.disa.stig_value_var_auditd_action_mail_acct", + "cdf:title": "Account for auditd to send email when actions occurs", + "cdf:description": "The setting for action_mail_acct in /etc/audit/auditd.conf", + "cdf:value": [ + "root", + { + "text": "root", + "selector": "root" + }, + { + "text": "admin", + "selector": "admin" + } + ] + }, + { + "Id": "xccdf_mil.disa.stig_value_var_accounts_user_umask", + "id": "xccdf_mil.disa.stig_value_var_accounts_user_umask", + "cdf:title": "Sensible umask", + "cdf:description": "Enter default user umask", + "cdf:value": [ + 77, + { + "text": 7, + "selector": "007" + }, + { + "text": 22, + "selector": "022" + }, + { + "text": 27, + "selector": "027" + }, + { + "text": 77, + "selector": "077" + } + ] + }, + { + "type": "number", + "Id": "xccdf_mil.disa.stig_value_var_accounts_minimum_age_login_defs", + "id": "xccdf_mil.disa.stig_value_var_accounts_minimum_age_login_defs", + "cdf:title": "minimum password age", + "cdf:description": "Minimum age of password in days", + "cdf:warning": "This will only apply to newly created accounts", + "cdf:value": [ + 1, + { + "text": 7, + "selector": "7" + }, + { + "text": 5, + "selector": "5" + }, + { + "text": 2, + "selector": "2" + }, + { + "text": 1, + "selector": "1" + }, + { + "text": 0, + "selector": "0" + } + ] + }, + { + "type": "number", + "Id": "xccdf_mil.disa.stig_value_var_accounts_maximum_age_login_defs", + "id": "xccdf_mil.disa.stig_value_var_accounts_maximum_age_login_defs", + "cdf:title": "maximum password age", + "cdf:description": "Maximum age of password in days", + "cdf:warning": "This will only apply to newly created accounts", + "cdf:value": [ + 60, + { + "text": 60, + "selector": "60" + }, + { + "text": 90, + "selector": "90" + }, + { + "text": 120, + "selector": "120" + }, + { + "text": 180, + "selector": "180" + } + ] + }, + { + "type": "number", + "Id": "xccdf_mil.disa.stig_value_var_accounts_max_concurrent_login_sessions", + "id": "xccdf_mil.disa.stig_value_var_accounts_max_concurrent_login_sessions", + "cdf:title": "Maximum concurrent login sessions", + "cdf:description": "Maximum number of concurrent sessions by a user", + "cdf:value": [ + 10, + { + "text": 1, + "selector": "1" + }, + { + "text": 3, + "selector": "3" + }, + { + "text": 5, + "selector": "5" + }, + { + "text": 10, + "selector": "10" + }, + { + "text": 15, + "selector": "15" + }, + { + "text": 20, + "selector": "20" + } + ] + }, + { + "type": "number", + "Id": "xccdf_mil.disa.stig_value_var_accounts_fail_delay", + "id": "xccdf_mil.disa.stig_value_var_accounts_fail_delay", + "cdf:title": "Maximum login attempts delay", + "cdf:description": "Maximum time in seconds between fail login attempts before re-prompting.", + "cdf:value": [ + 4, + { + "text": 1, + "selector": "1" + }, + { + "text": 2, + "selector": "2" + }, + { + "text": 3, + "selector": "3" + }, + { + "text": 4, + "selector": "4" + }, + { + "text": 5, + "selector": "5" + } + ] + }, + { + "type": "number", + "Id": "xccdf_mil.disa.stig_value_var_account_disable_post_pw_expiration", + "id": "xccdf_mil.disa.stig_value_var_account_disable_post_pw_expiration", + "cdf:title": "number of days after a password expires until the account is permanently disabled", + "cdf:description": "The number of days to wait after a password expires, until the account will be permanently disabled.", + "cdf:warning": "This will only apply to newly created accounts", + "cdf:value": [ + 0, + { + "text": 0, + "selector": "0" + }, + { + "text": 30, + "selector": "30" + }, + { + "text": 35, + "selector": "35" + }, + { + "text": 40, + "selector": "40" + }, + { + "text": 60, + "selector": "60" + }, + { + "text": 90, + "selector": "90" + }, + { + "text": 180, + "selector": "180" + } + ] + }, + { + "type": "number", + "Id": "xccdf_mil.disa.stig_value_sysctl_net_ipv6_conf_all_accept_source_route_value", + "id": "xccdf_mil.disa.stig_value_sysctl_net_ipv6_conf_all_accept_source_route_value", + "cdf:title": "net.ipv6.conf.all.accept_source_route", + "cdf:description": "Trackers could be using source-routed packets to\ngenerate traffic that seems to be intra-net, but actually was\ncreated outside and has been redirected.", + "cdf:value": [ + 0, + { + "text": 1, + "selector": "enabled" + }, + { + "text": 0, + "selector": "disabled" + } + ] + }, + { + "type": "number", + "Id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_icmp_echo_ignore_broadcasts_value", + "id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_icmp_echo_ignore_broadcasts_value", + "cdf:title": "net.ipv4.icmp_echo_ignore_broadcasts", + "cdf:description": "Ignore all ICMP ECHO and TIMESTAMP requests sent to it via broadcast/multicast", + "cdf:value": [ + 1, + { + "text": 1, + "selector": "enabled" + }, + { + "text": 0, + "selector": "disabled" + } + ] + }, + { + "type": "number", + "Id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_default_accept_source_route_value", + "id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_default_accept_source_route_value", + "cdf:title": "net.ipv4.conf.default.accept_source_route", + "cdf:description": "Disable IP source routing?", + "cdf:value": [ + 0, + { + "text": 1, + "selector": "enabled" + }, + { + "text": 0, + "selector": "disabled" + } + ] + }, + { + "type": "number", + "Id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_default_accept_redirects_value", + "id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_default_accept_redirects_value", + "cdf:title": "net.ipv4.conf.default.accept_redirects", + "cdf:description": "Disable ICMP Redirect Acceptance?", + "cdf:value": [ + 0, + { + "text": 1, + "selector": "enabled" + }, + { + "text": 0, + "selector": "disabled" + } + ] + }, + { + "type": "number", + "Id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_all_accept_source_route_value", + "id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_all_accept_source_route_value", + "cdf:title": "net.ipv4.conf.all.accept_source_route", + "cdf:description": "Trackers could be using source-routed packets to\ngenerate traffic that seems to be intra-net, but actually was\ncreated outside and has been redirected.", + "cdf:value": [ + 0, + { + "text": 1, + "selector": "enabled" + }, + { + "text": 0, + "selector": "disabled" + } + ] + }, + { + "type": "number", + "Id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_all_accept_redirects_value", + "id": "xccdf_mil.disa.stig_value_sysctl_net_ipv4_conf_all_accept_redirects_value", + "cdf:title": "net.ipv4.conf.all.accept_redirects", + "cdf:description": "Disable ICMP Redirect Acceptance", + "cdf:value": [ + 0, + { + "text": 1, + "selector": "enabled" + }, + { + "text": 0, + "selector": "disabled" + } + ] + }, + { + "type": "number", + "Id": "xccdf_mil.disa.stig_value_sshd_idle_timeout_value", + "id": "xccdf_mil.disa.stig_value_sshd_idle_timeout_value", + "cdf:title": "SSH session Idle time", + "cdf:description": "Specify duration of allowed idle time.", + "cdf:value": [ + 600, + { + "text": 300, + "selector": "5_minutes" + }, + { + "text": 600, + "selector": "10_minutes" + }, + { + "text": 900, + "selector": "15_minutes" + }, + { + "text": 3600, + "selector": "60_minutes" + }, + { + "text": 7200, + "selector": "120_minutes" + } + ] + }, + { + "type": "number", + "Id": "xccdf_mil.disa.stig_value_inactivity_timeout_value", + "id": "xccdf_mil.disa.stig_value_inactivity_timeout_value", + "cdf:title": "Inactivity timeout", + "cdf:description": "Choose allowed duration of inactive SSH connections, shells, and X sessions", + "cdf:value": [ + 900, + { + "text": 300, + "selector": "5_minutes" + }, + { + "text": 600, + "selector": "10_minutes" + }, + { + "text": 900, + "selector": "15_minutes" + } + ] + } + ] + } } + } ] + } } \ No newline at end of file diff --git a/test/sample_data/xccdf_results/xccdf-scc-rhel8-hdf.json b/test/sample_data/xccdf_results/xccdf-scc-rhel8-hdf.json index 53d711f10..5254dce0f 100644 --- a/test/sample_data/xccdf_results/xccdf-scc-rhel8-hdf.json +++ b/test/sample_data/xccdf_results/xccdf-scc-rhel8-hdf.json @@ -1,37480 +1,46620 @@ { - "platform": { - "name": "Heimdall Tools", - "release": "2.6.17", - "target_id": "cpe:/o:redhat:enterprise_linux:8" - }, - "version": "2.6.17", - "statistics": { - "duration": 0 - }, - "profiles": [ + "platform": { + "name": "Heimdall Tools", + "release": "2.6.28", + "target_id": "cpe:/o:redhat:enterprise_linux:8" + }, + "version": "2.6.28", + "statistics": {}, + "profiles": [ + { + "name": "xccdf_mil.disa.stig_benchmark_RHEL_8_STIG", + "version": "SCAP_1.2", + "title": "Red Hat Enterprise Linux 8 Security Technical Implementation Guide", + "maintainer": "DISA", + "summary": "This Security Technical Implementation Guide is published as a tool to improve the security of Department of Defense (DoD) information systems. The requirements are derived from the National Institute of Standards and Technology (NIST) 800-53 and related documents. Comments or proposed revisions to this document should be sent via email to the following address: disa.stig_spt@mail.mil.", + "description": "{\n \"cdf:description\": \"This Security Technical Implementation Guide is published as a tool to improve the security of Department of Defense (DoD) information systems. The requirements are derived from the National Institute of Standards and Technology (NIST) 800-53 and related documents. Comments or proposed revisions to this document should be sent via email to the following address: disa.stig_spt@mail.mil.\",\n \"cdf:front-matter\": \"\",\n \"cdf:metadata\": {\n \"dc:creator\": \"DISA\",\n \"dc:publisher\": \"DISA\",\n \"dc:contributor\": \"DISA\",\n \"dc:source\": \"STIG.DOD.MIL\"\n },\n \"cdf:plain-text\": [\n {\n \"text\": \"Release: 1.2 Benchmark Date: 23 Jul 2021\",\n \"id\": \"release-info\"\n },\n {\n \"text\": \"3.2.2.36079\",\n \"id\": \"generator\"\n },\n {\n \"text\": \"1.10.0\",\n \"id\": \"conventionsVersion\"\n }\n ],\n \"cdf:rear-matter\": \"\",\n \"cdf:reference\": {\n \"href\": \"https://cyber.mil\",\n \"dc:publisher\": \"DISA\",\n \"dc:source\": \"STIG.DOD.MIL\"\n },\n \"cdf:status\": {\n \"text\": \"accepted\",\n \"date\": \"2021-06-14\"\n },\n \"cdf:version\": {\n \"text\": 1.002,\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"xmlns:cdf\": \"http://checklists.nist.gov/xccdf/1.2\",\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"xsi:schemaLocation\": \"http://checklists.nist.gov/xccdf/1.2 http://scap.nist.gov/schema/xccdf/1.2/xccdf_1.2.xsd http://cpe.mitre.org/dictionary/2.0 http://scap.nist.gov/schema/cpe/2.3/cpe-dictionary_2.3.xsd http://cpe.mitre.org/language/2.0 http://scap.nist.gov/schema/cpe/2.3/cpe-language_2.3.xsd\",\n \"cdf:TestResult.cdf:benchmark\": {\n \"id\": \"xccdf_mil.disa.stig_benchmark_RHEL_8_STIG\",\n \"href\": \"#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-xccdf.xml\"\n },\n \"cdf:TestResult.start-time\": \"2021-12-17T10:24:33\",\n \"cdf:TestResult.end-time\": \"2021-12-17T10:30:58\",\n \"cdf:TestResult.id\": \"xccdf_mil.disa.stig_testresult_scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-xccdf.xml---xccdf_mil.disa.stig_profile_MAC-1_Classified-1\",\n \"cdf:TestResult.cdf:identity\": {\n \"text\": \"root\",\n \"authenticated\": \"true\",\n \"privileged\": \"true\"\n },\n \"cdf:TestResult.cdf:organization\": \"NIWC Atlantic\",\n \"cdf:TestResult.cdf:platform.idref\": \"cpe:/o:redhat:enterprise_linux:8\",\n \"cdf:TestResult.cdf:profile.idref\": \"xccdf_mil.disa.stig_profile_MAC-1_Classified\",\n \"cdf:TestResult.cdf:score\": [\n {\n \"text\": 29.44,\n \"system\": \"urn:xccdf:scoring:spawar-adjusted\",\n \"maximum\": \"100\"\n },\n {\n \"text\": 29.44,\n \"system\": \"urn:xccdf:scoring:spawar-original\",\n \"maximum\": \"100\"\n },\n {\n \"text\": 29.4354838709677,\n \"system\": \"urn:xccdf:scoring:default\",\n \"maximum\": \"100\"\n },\n {\n \"text\": 730,\n \"system\": \"urn:xccdf:scoring:flat\",\n \"maximum\": \"2480\"\n },\n {\n \"text\": 73,\n \"system\": \"urn:xccdf:scoring:flat-unweighted\",\n \"maximum\": \"248\"\n },\n {\n \"text\": 0,\n \"system\": \"urn:xccdf:scoring:absolute\",\n \"maximum\": \"1\"\n }\n ],\n \"cdf:TestResult.cdf:target\": \"LOCALHOST.LOCALDOMAIN\",\n \"cdf:TestResult.cdf:target-address\": [\n \"127.0.0.1\",\n \"192.168.158.30\"\n ],\n \"cdf:TestResult.cdf:target-facts\": {\n \"cdf:fact\": [\n {\n \"text\": \"LOCALHOST.LOCALDOMAIN\",\n \"name\": \"urn:scap:fact:asset:identifier:host_name\",\n \"type\": \"string\"\n },\n {\n \"name\": \"urn:scap:fact:asset:identifier:domain\",\n \"type\": \"string\"\n },\n {\n \"text\": \"LOCALHOST.LOCALDOMAIN.\",\n \"name\": \"urn:scap:fact:asset:identifier:fqdn\",\n \"type\": \"string\"\n },\n {\n \"text\": \"RedHat Variant\",\n \"name\": \"urn:scap:fact:asset:identifier:os_name\",\n \"type\": \"string\"\n },\n {\n \"text\": 8.5,\n \"name\": \"urn:scap:fact:asset:identifier:os_version\",\n \"type\": \"string\"\n },\n {\n \"text\": \"Intel(R) Core(TM) i7-8650U CPU @ 1.90GHz\",\n \"name\": \"urn:scap:fact:asset:identifier:processor\",\n \"type\": \"string\"\n },\n {\n \"text\": \"x86_64\",\n \"name\": \"urn:scap:fact:asset:identifier:processor_architecture\",\n \"type\": \"string\"\n },\n {\n \"text\": 2000,\n \"name\": \"urn:scap:fact:asset:identifier:processor_mhz\",\n \"type\": \"string\"\n },\n {\n \"text\": 2919,\n \"name\": \"urn:scap:fact:asset:identifier:physical_memory\",\n \"type\": \"string\"\n },\n {\n \"text\": \"Microsoft Corporation\",\n \"name\": \"urn:scap:fact:asset:identifier:manufacturer\",\n \"type\": \"string\"\n },\n {\n \"text\": \"9358-9652-5101-2687-4418-7909-94\",\n \"name\": \"urn:scap:fact:asset:identifier:ein\",\n \"type\": \"string\"\n },\n {\n \"text\": \"Hyper-V UEFI Release v4.0\",\n \"name\": \"urn:scap:fact:asset:identifier:bios_version\",\n \"type\": \"string\"\n },\n {\n \"text\": \"Virtual Machine\",\n \"name\": \"urn:scap:fact:asset:identifier:model\",\n \"type\": \"string\"\n },\n {\n \"text\": \"lo\",\n \"name\": \"urn:scap:fact:asset:identifier:interface_name\",\n \"type\": \"string\"\n },\n {\n \"text\": \"127.0.0.1\",\n \"name\": \"urn:scap:fact:asset:identifier:ipv4\",\n \"type\": \"string\"\n },\n {\n \"text\": \"00:00:00:00:00:00\",\n \"name\": \"urn:scap:fact:asset:identifier:mac\",\n \"type\": \"string\"\n },\n {\n \"text\": \"eth0\",\n \"name\": \"urn:scap:fact:asset:identifier:interface_name\",\n \"type\": \"string\"\n },\n {\n \"text\": \"192.168.158.30\",\n \"name\": \"urn:scap:fact:asset:identifier:ipv4\",\n \"type\": \"string\"\n },\n {\n \"text\": \"00:15:5d:0e:92:0c\",\n \"name\": \"urn:scap:fact:asset:identifier:mac\",\n \"type\": \"string\"\n }\n ]\n },\n \"cdf:TestResult.cdf:target-id-ref\": {\n \"name\": \"SCC_LOCALHOST.LOCALDOMAIN\",\n \"system\": \"http://scap.nist.gov/schema/asset-identification/1.1\",\n \"href\": \"\"\n },\n \"cdf:TestResult.test-system\": \"cpe:/a:spawar:scc:5.4.2\",\n \"cdf:TestResult.version\": \"001.002\"\n}", + "license": "terms-of-use", + "copyright": "DISA", + "copyright_email": "disa.stig_spt@mail.mil", + "supports": [], + "attributes": [], + "groups": [], + "status": "loaded", + "controls": [ { - "name": "xccdf_mil.disa.stig_benchmark_RHEL_8_STIG", - "version": "SCAP_1.2", - "title": "Red Hat Enterprise Linux 8 Security Technical Implementation Guide", - "maintainer": "DISA", - "summary": "This Security Technical Implementation Guide is published as a tool to improve the security of Department of Defense (DoD) information systems. The requirements are derived from the National Institute of Standards and Technology (NIST) 800-53 and related documents. Comments or proposed revisions to this document should be sent via email to the following address: disa.stig_spt@mail.mil.", - "description": "{\n \"cdf:description\": \"This Security Technical Implementation Guide is published as a tool to improve the security of Department of Defense (DoD) information systems. The requirements are derived from the National Institute of Standards and Technology (NIST) 800-53 and related documents. Comments or proposed revisions to this document should be sent via email to the following address: disa.stig_spt@mail.mil.\",\n \"cdf:front-matter\": \"\",\n \"cdf:metadata\": {\n \"dc:creator\": \"DISA\",\n \"dc:publisher\": \"DISA\",\n \"dc:contributor\": \"DISA\",\n \"dc:source\": \"STIG.DOD.MIL\"\n },\n \"cdf:plain-text\": [\n {\n \"text\": \"Release: 1.2 Benchmark Date: 23 Jul 2021\",\n \"id\": \"release-info\"\n },\n {\n \"text\": \"3.2.2.36079\",\n \"id\": \"generator\"\n },\n {\n \"text\": \"1.10.0\",\n \"id\": \"conventionsVersion\"\n }\n ],\n \"cdf:rear-matter\": \"\",\n \"cdf:reference\": {\n \"href\": \"https://cyber.mil\",\n \"dc:publisher\": \"DISA\",\n \"dc:source\": \"STIG.DOD.MIL\"\n },\n \"cdf:status\": {\n \"text\": \"accepted\",\n \"date\": \"2021-06-14\"\n },\n \"cdf:version\": {\n \"text\": 1.002,\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"xmlns:cdf\": \"http://checklists.nist.gov/xccdf/1.2\",\n \"xmlns:dc\": \"http://purl.org/dc/elements/1.1/\",\n \"xsi:schemaLocation\": \"http://checklists.nist.gov/xccdf/1.2 http://scap.nist.gov/schema/xccdf/1.2/xccdf_1.2.xsd http://cpe.mitre.org/dictionary/2.0 http://scap.nist.gov/schema/cpe/2.3/cpe-dictionary_2.3.xsd http://cpe.mitre.org/language/2.0 http://scap.nist.gov/schema/cpe/2.3/cpe-language_2.3.xsd\",\n \"cdf:TestResult.cdf:benchmark\": {\n \"id\": \"xccdf_mil.disa.stig_benchmark_RHEL_8_STIG\",\n \"href\": \"#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-xccdf.xml\"\n },\n \"cdf:TestResult.start-time\": \"2021-12-17T10:24:33\",\n \"cdf:TestResult.end-time\": \"2021-12-17T10:30:58\",\n \"cdf:TestResult.id\": \"xccdf_mil.disa.stig_testresult_scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-xccdf.xml---xccdf_mil.disa.stig_profile_MAC-1_Classified-1\",\n \"cdf:TestResult.cdf:identity\": {\n \"text\": \"root\",\n \"authenticated\": \"true\",\n \"privileged\": \"true\"\n },\n \"cdf:TestResult.cdf:organization\": \"NIWC Atlantic\",\n \"cdf:TestResult.cdf:platform.idref\": \"cpe:/o:redhat:enterprise_linux:8\",\n \"cdf:TestResult.cdf:profile.idref\": \"xccdf_mil.disa.stig_profile_MAC-1_Classified\",\n \"cdf:TestResult.cdf:score\": [\n {\n \"text\": 29.44,\n \"system\": \"urn:xccdf:scoring:spawar-adjusted\",\n \"maximum\": \"100\"\n },\n {\n \"text\": 29.44,\n \"system\": \"urn:xccdf:scoring:spawar-original\",\n \"maximum\": \"100\"\n },\n {\n \"text\": 29.4354838709677,\n \"system\": \"urn:xccdf:scoring:default\",\n \"maximum\": \"100\"\n },\n {\n \"text\": 730,\n \"system\": \"urn:xccdf:scoring:flat\",\n \"maximum\": \"2480\"\n },\n {\n \"text\": 73,\n \"system\": \"urn:xccdf:scoring:flat-unweighted\",\n \"maximum\": \"248\"\n },\n {\n \"text\": 0,\n \"system\": \"urn:xccdf:scoring:absolute\",\n \"maximum\": \"1\"\n }\n ],\n \"cdf:TestResult.cdf:target\": \"LOCALHOST.LOCALDOMAIN\",\n \"cdf:TestResult.cdf:target-address\": [\n \"127.0.0.1\",\n \"192.168.158.30\"\n ],\n \"cdf:TestResult.cdf:target-facts\": {\n \"cdf:fact\": [\n {\n \"text\": \"LOCALHOST.LOCALDOMAIN\",\n \"name\": \"urn:scap:fact:asset:identifier:host_name\",\n \"type\": \"string\"\n },\n {\n \"name\": \"urn:scap:fact:asset:identifier:domain\",\n \"type\": \"string\"\n },\n {\n \"text\": \"LOCALHOST.LOCALDOMAIN.\",\n \"name\": \"urn:scap:fact:asset:identifier:fqdn\",\n \"type\": \"string\"\n },\n {\n \"text\": \"RedHat Variant\",\n \"name\": \"urn:scap:fact:asset:identifier:os_name\",\n \"type\": \"string\"\n },\n {\n \"text\": 8.5,\n \"name\": \"urn:scap:fact:asset:identifier:os_version\",\n \"type\": \"string\"\n },\n {\n \"text\": \"Intel(R) Core(TM) i7-8650U CPU @ 1.90GHz\",\n \"name\": \"urn:scap:fact:asset:identifier:processor\",\n \"type\": \"string\"\n },\n {\n \"text\": \"x86_64\",\n \"name\": \"urn:scap:fact:asset:identifier:processor_architecture\",\n \"type\": \"string\"\n },\n {\n \"text\": 2000,\n \"name\": \"urn:scap:fact:asset:identifier:processor_mhz\",\n \"type\": \"string\"\n },\n {\n \"text\": 2919,\n \"name\": \"urn:scap:fact:asset:identifier:physical_memory\",\n \"type\": \"string\"\n },\n {\n \"text\": \"Microsoft Corporation\",\n \"name\": \"urn:scap:fact:asset:identifier:manufacturer\",\n \"type\": \"string\"\n },\n {\n \"text\": \"9358-9652-5101-2687-4418-7909-94\",\n \"name\": \"urn:scap:fact:asset:identifier:ein\",\n \"type\": \"string\"\n },\n {\n \"text\": \"Hyper-V UEFI Release v4.0\",\n \"name\": \"urn:scap:fact:asset:identifier:bios_version\",\n \"type\": \"string\"\n },\n {\n \"text\": \"Virtual Machine\",\n \"name\": \"urn:scap:fact:asset:identifier:model\",\n \"type\": \"string\"\n },\n {\n \"text\": \"lo\",\n \"name\": \"urn:scap:fact:asset:identifier:interface_name\",\n \"type\": \"string\"\n },\n {\n \"text\": \"127.0.0.1\",\n \"name\": \"urn:scap:fact:asset:identifier:ipv4\",\n \"type\": \"string\"\n },\n {\n \"text\": \"00:00:00:00:00:00\",\n \"name\": \"urn:scap:fact:asset:identifier:mac\",\n \"type\": \"string\"\n },\n {\n \"text\": \"eth0\",\n \"name\": \"urn:scap:fact:asset:identifier:interface_name\",\n \"type\": \"string\"\n },\n {\n \"text\": \"192.168.158.30\",\n \"name\": \"urn:scap:fact:asset:identifier:ipv4\",\n \"type\": \"string\"\n },\n {\n \"text\": \"00:15:5d:0e:92:0c\",\n \"name\": \"urn:scap:fact:asset:identifier:mac\",\n \"type\": \"string\"\n }\n ]\n },\n \"cdf:TestResult.cdf:target-id-ref\": {\n \"name\": \"SCC_LOCALHOST.LOCALDOMAIN\",\n \"system\": \"http://scap.nist.gov/schema/asset-identification/1.1\",\n \"href\": \"\"\n },\n \"cdf:TestResult.test-system\": \"cpe:/a:spawar:scc:5.4.2\",\n \"cdf:TestResult.version\": \"001.002\"\n}", - "license": "terms-of-use", - "copyright": "DISA", - "copyright_email": "disa.stig_spt@mail.mil", - "supports": [], - "attributes": [], - "depends": [], - "groups": [], - "status": "loaded", - "controls": [ - { - "id": "V-230221", - "title": "RHEL 8 must be a vendor-supported release.", - "desc": "An operating system release is considered \"supported\" if the vendor continues to provide security patches for the product. With an unsupported release, it will not be possible to resolve security issues discovered in the system software.\n\nRed Hat offers the Extended Update Support (EUS) ad-on to a Red Hat Enterprise Linux subscription, for a fee, for those customers who wish to standardize on a specific minor release for an extended period. The RHEL 8 minor releases eligible for EUS are 8.1, 8.2, 8.4, 8.6, and 8.8. Each RHEL 8 EUS stream is available for 24 months from the availability of the minor release. RHEL 8.10 will be the final minor release overall. For more details on the Red Hat Enterprise Linux Life Cycle visit https://access.redhat.com/support/policy/updates/errata.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:100", - "label": "check" - }, - { - "data": "Upgrade to a supported version of RHEL 8.", - "label": "fix" - } - ], - "impact": 0.7, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "high", - "description": "{\"VulnDiscussion\":\"An operating system release is considered \\\"supported\\\" if the vendor continues to provide security patches for the product. With an unsupported release, it will not be possible to resolve security issues discovered in the system software.\\n\\nRed Hat offers the Extended Update Support (EUS) ad-on to a Red Hat Enterprise Linux subscription, for a fee, for those customers who wish to standardize on a specific minor release for an extended period. The RHEL 8 minor releases eligible for EUS are 8.1, 8.2, 8.4, 8.6, and 8.8. Each RHEL 8 EUS stream is available for 24 months from the availability of the minor release. RHEL 8.10 will be the final minor release overall. For more details on the Red Hat Enterprise Linux Life Cycle visit https://access.redhat.com/support/policy/updates/errata.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230221", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230221r743913_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:100", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32865r567410_fix", - "fixtext_fixref": "F-32865r567410_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230221r743913_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230221r743913_rule", - "version": "RHEL-08-010000", - "time": "2021-12-17T10:24:33", - "weight": "10.0", - "severity": "high", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-32865r567410_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:100", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:24:33", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230223", - "title": "RHEL 8 must implement NIST FIPS-validated cryptography for the following: to provision digital signatures, to generate cryptographic hashes, and to protect data requiring data-at-rest protections in accordance with applicable federal laws, Executive Orders, directives, policies, regulations, and standards.", - "desc": "Use of weak or untested encryption algorithms undermines the purposes of using encryption to protect data. The operating system must implement cryptographic modules adhering to the higher standards approved by the Federal Government since this provides assurance they have been tested and validated.\n\nRHEL 8 utilizes GRUB 2 as the default bootloader. Note that GRUB 2 command-line parameters are defined in the \"kernelopts\" variable of the /boot/grub2/grubenv file for all kernel boot entries. The command \"fips-mode-setup\" modifies the \"kernelopts\" variable, which in turn updates all kernel boot entries. \n\nThe fips=1 kernel option needs to be added to the kernel command line during system installation so that key generation is done with FIPS-approved algorithms and continuous monitoring tests in place. Users must also ensure the system has plenty of entropy during the installation process by moving the mouse around, or if no mouse is available, ensuring that many keystrokes are typed. The recommended amount of keystrokes is 256 and more. Less than 256 keystrokes may generate a non-unique key.\n\nSatisfies: SRG-OS-000033-GPOS-00014, SRG-OS-000125-GPOS-00065, SRG-OS-000396-GPOS-00176, SRG-OS-000423-GPOS-00187, SRG-OS-000478-GPOS-00223", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:101", - "label": "check" - }, - { - "data": "Configure the operating system to implement DoD-approved encryption by following the steps below:\n\nTo enable strict FIPS compliance, the fips=1 kernel option needs to be added to the kernel boot parameters during system installation so key generation is done with FIPS-approved algorithms and continuous monitoring tests in place.\n\nEnable FIPS mode after installation (not strict FIPS compliant) with the following command:\n\n$ sudo fips-mode-setup --enable\n\nReboot the system for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.7, - "refs": [], - "tags": { - "cci": [ - "CCI-000068" - ], - "nist": [ - "AC-17 (2)" - ], - "severity": "high", - "description": "{\"VulnDiscussion\":\"Use of weak or untested encryption algorithms undermines the purposes of using encryption to protect data. The operating system must implement cryptographic modules adhering to the higher standards approved by the Federal Government since this provides assurance they have been tested and validated.\\n\\nRHEL 8 utilizes GRUB 2 as the default bootloader. Note that GRUB 2 command-line parameters are defined in the \\\"kernelopts\\\" variable of the /boot/grub2/grubenv file for all kernel boot entries. The command \\\"fips-mode-setup\\\" modifies the \\\"kernelopts\\\" variable, which in turn updates all kernel boot entries. \\n\\nThe fips=1 kernel option needs to be added to the kernel command line during system installation so that key generation is done with FIPS-approved algorithms and continuous monitoring tests in place. Users must also ensure the system has plenty of entropy during the installation process by moving the mouse around, or if no mouse is available, ensuring that many keystrokes are typed. The recommended amount of keystrokes is 256 and more. Less than 256 keystrokes may generate a non-unique key.\\n\\nSatisfies: SRG-OS-000033-GPOS-00014, SRG-OS-000125-GPOS-00065, SRG-OS-000396-GPOS-00176, SRG-OS-000423-GPOS-00187, SRG-OS-000478-GPOS-00223\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230223", - "group_title": "SRG-OS-000033-GPOS-00014", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230223r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:101", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32867r567416_fix", - "fixtext_fixref": "F-32867r567416_fix", - "ident": { - "text": "CCI-000068", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230223r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230223r627750_rule", - "version": "RHEL-08-010020", - "time": "2021-12-17T10:24:35", - "weight": "10.0", - "severity": "high", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000068", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-32867r567416_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:101", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:24:35", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230231", - "title": "RHEL 8 must encrypt all stored passwords with a FIPS 140-2 approved cryptographic hashing algorithm.", - "desc": "Passwords need to be protected at all times, and encryption is the standard method for protecting passwords. If passwords are not encrypted, they can be plainly read (i.e., clear text) and easily compromised.\n\nUnapproved mechanisms that are used for authentication to the cryptographic module are not verified and therefore cannot be relied upon to provide confidentiality or integrity, and DoD data may be compromised.\n\nFIPS 140-2 is the current standard for validating that mechanisms used to access cryptographic modules utilize authentication that meets DoD requirements.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:103", - "label": "check" - }, - { - "data": "Configure RHEL 8 to encrypt all stored passwords. \n\nEdit/Modify the following line in the \"/etc/login.defs\" file and set \"[ENCRYPT_METHOD]\" to SHA512.\n\nENCRYPT_METHOD SHA512", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000196" - ], - "nist": [ - "IA-5 (1) (c)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Passwords need to be protected at all times, and encryption is the standard method for protecting passwords. If passwords are not encrypted, they can be plainly read (i.e., clear text) and easily compromised.\\n\\nUnapproved mechanisms that are used for authentication to the cryptographic module are not verified and therefore cannot be relied upon to provide confidentiality or integrity, and DoD data may be compromised.\\n\\nFIPS 140-2 is the current standard for validating that mechanisms used to access cryptographic modules utilize authentication that meets DoD requirements.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230231", - "group_title": "SRG-OS-000073-GPOS-00041", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230231r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:103", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32875r567440_fix", - "fixtext_fixref": "F-32875r567440_fix", - "ident": { - "text": "CCI-000196", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230231r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230231r627750_rule", - "version": "RHEL-08-010110", - "time": "2021-12-17T10:24:35", - "weight": "10.0", - "severity": "medium", - "cdf:result": "pass", - "cdf:ident": { - "text": "CCI-000196", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-32875r567440_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:103", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:24:35", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230232", - "title": "RHEL 8 must employ FIPS 140-2 approved cryptographic hashing algorithms for all stored passwords.", - "desc": "The system must use a strong hashing algorithm to store the password.\n\nPasswords need to be protected at all times, and encryption is the standard method for protecting passwords. If passwords are not encrypted, they can be plainly read (i.e., clear text) and easily compromised.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:104", - "label": "check" - }, - { - "data": "Lock all interactive user accounts not using SHA-512 hashing until the passwords can be regenerated with SHA-512.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000196" - ], - "nist": [ - "IA-5 (1) (c)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"The system must use a strong hashing algorithm to store the password.\\n\\nPasswords need to be protected at all times, and encryption is the standard method for protecting passwords. If passwords are not encrypted, they can be plainly read (i.e., clear text) and easily compromised.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230232", - "group_title": "SRG-OS-000073-GPOS-00041", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230232r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:104", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32876r567443_fix", - "fixtext_fixref": "F-32876r567443_fix", - "ident": { - "text": "CCI-000196", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230232r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230232r627750_rule", - "version": "RHEL-08-010120", - "time": "2021-12-17T10:24:35", - "weight": "10.0", - "severity": "medium", - "cdf:result": "pass", - "cdf:ident": { - "text": "CCI-000196", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-32876r567443_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:104", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:24:35", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230233", - "title": "The RHEL 8 password-auth file must be configured to use a sufficient number of hashing rounds.", - "desc": "The system must use a strong hashing algorithm to store the password. The system must use a sufficient number of hashing rounds to ensure the required level of entropy.\n\nPasswords need to be protected at all times, and encryption is the standard method for protecting passwords. If passwords are not encrypted, they can be plainly read (i.e., clear text) and easily compromised.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:105", - "label": "check" - }, - { - "data": "Configure RHEL 8 to encrypt all stored passwords with a strong cryptographic hash.\n\nEdit/modify the following line in the \"/etc/pam.d/password-auth\" file and set \"rounds\" to a value no lower than \"5000\":\n\npassword sufficient pam_unix.so sha512 rounds=5000", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000196" - ], - "nist": [ - "IA-5 (1) (c)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"The system must use a strong hashing algorithm to store the password. The system must use a sufficient number of hashing rounds to ensure the required level of entropy.\\n\\nPasswords need to be protected at all times, and encryption is the standard method for protecting passwords. If passwords are not encrypted, they can be plainly read (i.e., clear text) and easily compromised.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230233", - "group_title": "SRG-OS-000073-GPOS-00041", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230233r743919_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:105", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32877r743918_fix", - "fixtext_fixref": "F-32877r743918_fix", - "ident": { - "text": "CCI-000196", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230233r743919_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230233r743919_rule", - "version": "RHEL-08-010130", - "time": "2021-12-17T10:24:36", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000196", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-32877r743918_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:105", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:24:36", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230234", - "title": "RHEL 8 operating systems booted with United Extensible Firmware Interface (UEFI) must require authentication upon booting into single-user mode and maintenance.", - "desc": "If the system does not require valid authentication before it boots into single-user or maintenance mode, anyone who invokes single-user or maintenance mode is granted privileged access to all files on the system. GRUB 2 is the default boot loader for RHEL 8 and is designed to require a password to boot into single-user mode or make modifications to the boot menu.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:106", - "label": "check" - }, - { - "data": "Configure the system to require a grub bootloader password for the grub superusers account with the grub2-setpassword command, which creates/overwrites the /boot/efi/EFI/redhat/user.cfg file.\n\nGenerate an encrypted grub2 password for the grub superusers account with the following command:\n\n$ sudo grub2-setpassword\nEnter password:\nConfirm password:", - "label": "fix" - } - ], - "impact": 0.7, - "refs": [], - "tags": { - "cci": [ - "CCI-000213" - ], - "nist": [ - "AC-3" - ], - "severity": "high", - "description": "{\"VulnDiscussion\":\"If the system does not require valid authentication before it boots into single-user or maintenance mode, anyone who invokes single-user or maintenance mode is granted privileged access to all files on the system. GRUB 2 is the default boot loader for RHEL 8 and is designed to require a password to boot into single-user mode or make modifications to the boot menu.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230234", - "group_title": "SRG-OS-000080-GPOS-00048", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230234r743922_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:106", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32878r743921_fix", - "fixtext_fixref": "F-32878r743921_fix", - "ident": { - "text": "CCI-000213", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230234r743922_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230234r743922_rule", - "version": "RHEL-08-010140", - "time": "2021-12-17T10:24:36", - "weight": "10.0", - "severity": "high", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000213", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-32878r743921_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:106", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:24:36", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230235", - "title": "RHEL 8 operating systems booted with a BIOS must require authentication upon booting into single-user and maintenance modes.", - "desc": "If the system does not require valid authentication before it boots into single-user or maintenance mode, anyone who invokes single-user or maintenance mode is granted privileged access to all files on the system. GRUB 2 is the default boot loader for RHEL 8 and is designed to require a password to boot into single-user mode or make modifications to the boot menu.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:107", - "label": "check" - }, - { - "data": "Configure the system to require a grub bootloader password for the grub superusers account with the grub2-setpassword command, which creates/overwrites the /boot/grub2/user.cfg file.\n\nGenerate an encrypted grub2 password for the grub superusers account with the following command:\n\n$ sudo grub2-setpassword\nEnter password:\nConfirm password:", - "label": "fix" - } - ], - "impact": 0.7, - "refs": [], - "tags": { - "cci": [ - "CCI-000213" - ], - "nist": [ - "AC-3" - ], - "severity": "high", - "description": "{\"VulnDiscussion\":\"If the system does not require valid authentication before it boots into single-user or maintenance mode, anyone who invokes single-user or maintenance mode is granted privileged access to all files on the system. GRUB 2 is the default boot loader for RHEL 8 and is designed to require a password to boot into single-user mode or make modifications to the boot menu.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230235", - "group_title": "SRG-OS-000080-GPOS-00048", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230235r743925_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:107", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32879r743924_fix", - "fixtext_fixref": "F-32879r743924_fix", - "ident": { - "text": "CCI-000213", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230235r743925_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230235r743925_rule", - "version": "RHEL-08-010150", - "time": "2021-12-17T10:24:36", - "weight": "10.0", - "severity": "high", - "cdf:result": "pass", - "cdf:ident": { - "text": "CCI-000213", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-32879r743924_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:107", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:24:36", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230236", - "title": "RHEL 8 operating systems must require authentication upon booting into rescue mode.", - "desc": "If the system does not require valid root authentication before it boots into emergency or rescue mode, anyone who invokes emergency or rescue mode is granted privileged access to all files on the system.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:108", - "label": "check" - }, - { - "data": "Configure the system to require authentication upon booting into rescue mode by adding the following line to the \"/usr/lib/systemd/system/rescue.service\" file.\n\nExecStart=-/usr/lib/systemd/systemd-sulogin-shell rescue", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000213" - ], - "nist": [ - "AC-3" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"If the system does not require valid root authentication before it boots into emergency or rescue mode, anyone who invokes emergency or rescue mode is granted privileged access to all files on the system.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230236", - "group_title": "SRG-OS-000080-GPOS-00048", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230236r743928_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:108", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32880r743927_fix", - "fixtext_fixref": "F-32880r743927_fix", - "ident": { - "text": "CCI-000213", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230236r743928_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230236r743928_rule", - "version": "RHEL-08-010151", - "time": "2021-12-17T10:24:36", - "weight": "10.0", - "severity": "medium", - "cdf:result": "pass", - "cdf:ident": { - "text": "CCI-000213", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-32880r743927_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:108", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:24:36", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230237", - "title": "The RHEL 8 pam_unix.so module must be configured in the password-auth file to use a FIPS 140-2 approved cryptographic hashing algorithm for system authentication.", - "desc": "Unapproved mechanisms that are used for authentication to the cryptographic module are not verified and therefore cannot be relied upon to provide confidentiality or integrity, and DoD data may be compromised.\n\nRHEL 8 systems utilizing encryption are required to use FIPS-compliant mechanisms for authenticating to cryptographic modules. \n\nFIPS 140-2 is the current standard for validating that mechanisms used to access cryptographic modules utilize authentication that meets DoD requirements. This allows for Security Levels 1, 2, 3, or 4 for use on a general-purpose computing system.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:109", - "label": "check" - }, - { - "data": "Configure RHEL 8 to use a FIPS 140-2 approved cryptographic hashing algorithm for system authentication.\n\nEdit/modify the following line in the \"/etc/pam.d/password-auth\" file to include the sha512 option for pam_unix.so:\n\npassword sufficient pam_unix.so sha512 rounds=5000", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000803" - ], - "nist": [ - "IA-7" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Unapproved mechanisms that are used for authentication to the cryptographic module are not verified and therefore cannot be relied upon to provide confidentiality or integrity, and DoD data may be compromised.\\n\\nRHEL 8 systems utilizing encryption are required to use FIPS-compliant mechanisms for authenticating to cryptographic modules. \\n\\nFIPS 140-2 is the current standard for validating that mechanisms used to access cryptographic modules utilize authentication that meets DoD requirements. This allows for Security Levels 1, 2, 3, or 4 for use on a general-purpose computing system.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230237", - "group_title": "SRG-OS-000120-GPOS-00061", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230237r743931_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:109", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32881r743930_fix", - "fixtext_fixref": "F-32881r743930_fix", - "ident": { - "text": "CCI-000803", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230237r743931_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230237r743931_rule", - "version": "RHEL-08-010160", - "time": "2021-12-17T10:24:36", - "weight": "10.0", - "severity": "medium", - "cdf:result": "pass", - "cdf:ident": { - "text": "CCI-000803", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-32881r743930_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:109", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:24:36", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230238", - "title": "RHEL 8 must prevent system daemons from using Kerberos for authentication.", - "desc": "Unapproved mechanisms that are used for authentication to the cryptographic module are not verified and therefore cannot be relied upon to provide confidentiality or integrity, and DoD data may be compromised.\n\nRHEL 8 systems utilizing encryption are required to use FIPS-compliant mechanisms for authenticating to cryptographic modules.\n\nThe key derivation function (KDF) in Kerberos is not FIPS compatible. Ensuring the system does not have any keytab files present prevents system daemons from using Kerberos for authentication. A keytab is a file containing pairs of Kerberos principals and encrypted keys.\n\nFIPS 140-2 is the current standard for validating that mechanisms used to access cryptographic modules utilize authentication that meets DoD requirements. This allows for Security Levels 1, 2, 3, or 4 for use on a general-purpose computing system.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:110", - "label": "check" - }, - { - "data": "Configure RHEL 8 to prevent system daemons from using Kerberos for authentication.\n\nRemove any files with the .keytab extension from the operating system.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000803" - ], - "nist": [ - "IA-7" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Unapproved mechanisms that are used for authentication to the cryptographic module are not verified and therefore cannot be relied upon to provide confidentiality or integrity, and DoD data may be compromised.\\n\\nRHEL 8 systems utilizing encryption are required to use FIPS-compliant mechanisms for authenticating to cryptographic modules.\\n\\nThe key derivation function (KDF) in Kerberos is not FIPS compatible. Ensuring the system does not have any keytab files present prevents system daemons from using Kerberos for authentication. A keytab is a file containing pairs of Kerberos principals and encrypted keys.\\n\\nFIPS 140-2 is the current standard for validating that mechanisms used to access cryptographic modules utilize authentication that meets DoD requirements. This allows for Security Levels 1, 2, 3, or 4 for use on a general-purpose computing system.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230238", - "group_title": "SRG-OS-000120-GPOS-00061", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230238r646862_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:110", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32882r567461_fix", - "fixtext_fixref": "F-32882r567461_fix", - "ident": { - "text": "CCI-000803", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230238r646862_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230238r646862_rule", - "version": "RHEL-08-010161", - "time": "2021-12-17T10:24:36", - "weight": "10.0", - "severity": "medium", - "cdf:result": "pass", - "cdf:ident": { - "text": "CCI-000803", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-32882r567461_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:110", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:24:36", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230239", - "title": "The krb5-workstation package must not be installed on RHEL 8.", - "desc": "Unapproved mechanisms that are used for authentication to the cryptographic module are not verified and therefore cannot be relied upon to provide confidentiality or integrity, and DoD data may be compromised.\n\nRHEL 8 systems utilizing encryption are required to use FIPS-compliant mechanisms for authenticating to cryptographic modules.\n\nCurrently, Kerberos does not utilize FIPS 140-2 cryptography.\n\nFIPS 140-2 is the current standard for validating that mechanisms used to access cryptographic modules utilize authentication that meets DoD requirements. This allows for Security Levels 1, 2, 3, or 4 for use on a general-purpose computing system.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:111", - "label": "check" - }, - { - "data": "Document the krb5-workstation package with the ISSO as an operational requirement or remove it from the system with the following command:\n\n$ sudo yum remove krb5-workstation", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000803" - ], - "nist": [ - "IA-7" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Unapproved mechanisms that are used for authentication to the cryptographic module are not verified and therefore cannot be relied upon to provide confidentiality or integrity, and DoD data may be compromised.\\n\\nRHEL 8 systems utilizing encryption are required to use FIPS-compliant mechanisms for authenticating to cryptographic modules.\\n\\nCurrently, Kerberos does not utilize FIPS 140-2 cryptography.\\n\\nFIPS 140-2 is the current standard for validating that mechanisms used to access cryptographic modules utilize authentication that meets DoD requirements. This allows for Security Levels 1, 2, 3, or 4 for use on a general-purpose computing system.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230239", - "group_title": "SRG-OS-000120-GPOS-00061", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230239r646864_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:111", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32883r567464_fix", - "fixtext_fixref": "F-32883r567464_fix", - "ident": { - "text": "CCI-000803", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230239r646864_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230239r646864_rule", - "version": "RHEL-08-010162", - "time": "2021-12-17T10:24:40", - "weight": "10.0", - "severity": "medium", - "cdf:result": "pass", - "cdf:ident": { - "text": "CCI-000803", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-32883r567464_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:111", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:24:40", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230241", - "title": "RHEL 8 must have policycoreutils package installed.", - "desc": "Without verification of the security functions, security functions may not operate correctly and the failure may go unnoticed. Security function is defined as the hardware, software, and/or firmware of the information system responsible for enforcing the system security policy and supporting the isolation of code and data on which the protection is based. Security functionality includes, but is not limited to, establishing system accounts, configuring access authorizations (i.e., permissions, privileges), setting events to be audited, and setting intrusion detection parameters.\n\nPolicycoreutils contains the policy core utilities that are required for basic operation of an SELinux-enabled system. These utilities include load_policy to load SELinux policies, setfile to label filesystems, newrole to switch roles, and run_init to run /etc/init.d scripts in the proper context.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:112", - "label": "check" - }, - { - "data": "Configure the operating system to have the policycoreutils package installed with the following command:\n\n$ sudo yum install policycoreutils", - "label": "fix" - } - ], - "impact": 0.3, - "refs": [], - "tags": { - "cci": [ - "CCI-001084" - ], - "nist": [ - "SC-3" - ], - "severity": "low", - "description": "{\"VulnDiscussion\":\"Without verification of the security functions, security functions may not operate correctly and the failure may go unnoticed. Security function is defined as the hardware, software, and/or firmware of the information system responsible for enforcing the system security policy and supporting the isolation of code and data on which the protection is based. Security functionality includes, but is not limited to, establishing system accounts, configuring access authorizations (i.e., permissions, privileges), setting events to be audited, and setting intrusion detection parameters.\\n\\nPolicycoreutils contains the policy core utilities that are required for basic operation of an SELinux-enabled system. These utilities include load_policy to load SELinux policies, setfile to label filesystems, newrole to switch roles, and run_init to run /etc/init.d scripts in the proper context.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230241", - "group_title": "SRG-OS-000134-GPOS-00068", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230241r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:112", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32885r567470_fix", - "fixtext_fixref": "F-32885r567470_fix", - "ident": { - "text": "CCI-001084", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230241r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230241r627750_rule", - "version": "RHEL-08-010171", - "time": "2021-12-17T10:24:40", - "weight": "10.0", - "severity": "low", - "cdf:result": "pass", - "cdf:ident": { - "text": "CCI-001084", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-32885r567470_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:112", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:24:40", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230244", - "title": "RHEL 8 must be configured so that all network connections associated with SSH traffic are terminated at the end of the session or after 10 minutes of inactivity, except to fulfill documented and validated mission requirements.", - "desc": "Terminating an idle SSH session within a short time period reduces the window of opportunity for unauthorized personnel to take control of a management session enabled on the console or console port that has been left unattended. In addition, quickly terminating an idle SSH session will also free up resources committed by the managed network element.\n\nTerminating network connections associated with communications sessions includes, for example, de-allocating associated TCP/IP address/port pairs at the operating system level and de-allocating networking assignments at the application level if multiple application sessions are using a single operating system-level network connection. This does not mean that the operating system terminates all sessions or network access; it only ends the inactive session and releases the resources associated with that session.\n\nRHEL 8 utilizes /etc/ssh/sshd_config for configurations of OpenSSH. Within the sshd_config the product of the values of \"ClientAliveInterval\" and \"ClientAliveCountMax\" are used to establish the inactivity threshold. The \"ClientAliveInterval\" is a timeout interval in seconds after which if no data has been received from the client, sshd will send a message through the encrypted channel to request a response from the client. The \"ClientAliveCountMax\" is the number of client alive messages that may be sent without sshd receiving any messages back from the client. If this threshold is met, sshd will disconnect the client. For more information on these settings and others, refer to the sshd_config man pages.\n\nSatisfies: SRG-OS-000163-GPOS-00072, SRG-OS-000126-GPOS-00066, SRG-OS-000279-GPOS-00109", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:115", - "label": "check" - }, - { - "data": "Configure RHEL 8 to automatically terminate all network connections associated with SSH traffic at the end of a session or after 10 minutes of inactivity.\n\nModify or append the following lines in the \"/etc/ssh/sshd_config\" file:\n\nClientAliveCountMax 0\n\nIn order for the changes to take effect, the SSH daemon must be restarted.\n\n$ sudo systemctl restart sshd.service", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001133" - ], - "nist": [ - "SC-10" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Terminating an idle SSH session within a short time period reduces the window of opportunity for unauthorized personnel to take control of a management session enabled on the console or console port that has been left unattended. In addition, quickly terminating an idle SSH session will also free up resources committed by the managed network element.\\n\\nTerminating network connections associated with communications sessions includes, for example, de-allocating associated TCP/IP address/port pairs at the operating system level and de-allocating networking assignments at the application level if multiple application sessions are using a single operating system-level network connection. This does not mean that the operating system terminates all sessions or network access; it only ends the inactive session and releases the resources associated with that session.\\n\\nRHEL 8 utilizes /etc/ssh/sshd_config for configurations of OpenSSH. Within the sshd_config the product of the values of \\\"ClientAliveInterval\\\" and \\\"ClientAliveCountMax\\\" are used to establish the inactivity threshold. The \\\"ClientAliveInterval\\\" is a timeout interval in seconds after which if no data has been received from the client, sshd will send a message through the encrypted channel to request a response from the client. The \\\"ClientAliveCountMax\\\" is the number of client alive messages that may be sent without sshd receiving any messages back from the client. If this threshold is met, sshd will disconnect the client. For more information on these settings and others, refer to the sshd_config man pages.\\n\\nSatisfies: SRG-OS-000163-GPOS-00072, SRG-OS-000126-GPOS-00066, SRG-OS-000279-GPOS-00109\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230244", - "group_title": "SRG-OS-000163-GPOS-00072", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230244r743934_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:115", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32888r743933_fix", - "fixtext_fixref": "F-32888r743933_fix", - "ident": { - "text": "CCI-001133", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230244r743934_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230244r743934_rule", - "version": "RHEL-08-010200", - "time": "2021-12-17T10:24:41", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-001133", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-32888r743933_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:115", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:24:41", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230245", - "title": "The RHEL 8 /var/log/messages file must have mode 0640 or less permissive.", - "desc": "Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\n\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:116", - "label": "check" - }, - { - "data": "Change the permissions of the file \"/var/log/messages\" to \"0640\" by running the following command:\n\n$ sudo chmod 0640 /var/log/messages", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001314" - ], - "nist": [ - "SI-11 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\\n\\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230245", - "group_title": "SRG-OS-000206-GPOS-00084", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230245r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:116", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32889r567482_fix", - "fixtext_fixref": "F-32889r567482_fix", - "ident": { - "text": "CCI-001314", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230245r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230245r627750_rule", - "version": "RHEL-08-010210", - "time": "2021-12-17T10:24:43", - "weight": "10.0", - "severity": "medium", - "cdf:result": "pass", - "cdf:ident": { - "text": "CCI-001314", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-32889r567482_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:116", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:24:43", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230246", - "title": "The RHEL 8 /var/log/messages file must be owned by root.", - "desc": "Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\n\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:117", - "label": "check" - }, - { - "data": "Change the owner of the file /var/log/messages to root by running the following command:\n\n$ sudo chown root /var/log/messages", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001314" - ], - "nist": [ - "SI-11 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\\n\\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230246", - "group_title": "SRG-OS-000206-GPOS-00084", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230246r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:117", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32890r567485_fix", - "fixtext_fixref": "F-32890r567485_fix", - "ident": { - "text": "CCI-001314", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230246r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230246r627750_rule", - "version": "RHEL-08-010220", - "time": "2021-12-17T10:24:43", - "weight": "10.0", - "severity": "medium", - "cdf:result": "pass", - "cdf:ident": { - "text": "CCI-001314", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-32890r567485_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:117", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:24:43", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230247", - "title": "The RHEL 8 /var/log/messages file must be group-owned by root.", - "desc": "Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\n\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:118", - "label": "check" - }, - { - "data": "Change the group of the file \"/var/log/messages\" to \"root\" by running the following command:\n\n$ sudo chgrp root /var/log/messages", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001314" - ], - "nist": [ - "SI-11 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\\n\\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230247", - "group_title": "SRG-OS-000206-GPOS-00084", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230247r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:118", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32891r567488_fix", - "fixtext_fixref": "F-32891r567488_fix", - "ident": { - "text": "CCI-001314", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230247r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230247r627750_rule", - "version": "RHEL-08-010230", - "time": "2021-12-17T10:24:43", - "weight": "10.0", - "severity": "medium", - "cdf:result": "pass", - "cdf:ident": { - "text": "CCI-001314", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-32891r567488_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:118", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:24:43", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230248", - "title": "The RHEL 8 /var/log directory must have mode 0755 or less permissive.", - "desc": "Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\n\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:119", - "label": "check" - }, - { - "data": "Change the permissions of the directory \"/var/log\" to \"0755\" by running the following command:\n\n$ sudo chmod 0755 /var/log", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001314" - ], - "nist": [ - "SI-11 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\\n\\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230248", - "group_title": "SRG-OS-000206-GPOS-00084", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230248r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:119", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32892r567491_fix", - "fixtext_fixref": "F-32892r567491_fix", - "ident": { - "text": "CCI-001314", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230248r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230248r627750_rule", - "version": "RHEL-08-010240", - "time": "2021-12-17T10:24:43", - "weight": "10.0", - "severity": "medium", - "cdf:result": "pass", - "cdf:ident": { - "text": "CCI-001314", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-32892r567491_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:119", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:24:43", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230249", - "title": "The RHEL 8 /var/log directory must be owned by root.", - "desc": "Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\n\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:120", - "label": "check" - }, - { - "data": "Change the owner of the directory /var/log to root by running the following command:\n\n$ sudo chown root /var/log", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001314" - ], - "nist": [ - "SI-11 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\\n\\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230249", - "group_title": "SRG-OS-000206-GPOS-00084", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230249r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:120", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32893r567494_fix", - "fixtext_fixref": "F-32893r567494_fix", - "ident": { - "text": "CCI-001314", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230249r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230249r627750_rule", - "version": "RHEL-08-010250", - "time": "2021-12-17T10:24:43", - "weight": "10.0", - "severity": "medium", - "cdf:result": "pass", - "cdf:ident": { - "text": "CCI-001314", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-32893r567494_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:120", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:24:43", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230250", - "title": "The RHEL 8 /var/log directory must be group-owned by root.", - "desc": "Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\n\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:121", - "label": "check" - }, - { - "data": "Change the group of the directory \"/var/log\" to \"root\" by running the following command:\n\n$ sudo chgrp root /var/log", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001314" - ], - "nist": [ - "SI-11 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\\n\\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230250", - "group_title": "SRG-OS-000206-GPOS-00084", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230250r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:121", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32894r567497_fix", - "fixtext_fixref": "F-32894r567497_fix", - "ident": { - "text": "CCI-001314", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230250r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230250r627750_rule", - "version": "RHEL-08-010260", - "time": "2021-12-17T10:24:43", - "weight": "10.0", - "severity": "medium", - "cdf:result": "pass", - "cdf:ident": { - "text": "CCI-001314", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-32894r567497_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:121", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:24:43", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230253", - "title": "RHEL 8 must ensure the SSH server uses strong entropy.", - "desc": "The most important characteristic of a random number generator is its randomness, namely its ability to deliver random numbers that are impossible to predict. Entropy in computer security is associated with the unpredictability of a source of randomness. The random source with high entropy tends to achieve a uniform distribution of random values. Random number generators are one of the most important building blocks of cryptosystems.\n\nThe SSH implementation in RHEL8 uses the OPENSSL library, which does not use high-entropy sources by default. By using the SSH_USE_STRONG_RNG environment variable the OPENSSL random generator is reseeded from /dev/random. This setting is not recommended on computers without the hardware random generator because insufficient entropy causes the connection to be blocked until enough entropy is available.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:122", - "label": "check" - }, - { - "data": "Configure the operating system SSH server to use strong entropy.\n\nAdd or modify the following line in the \"/etc/sysconfig/sshd\" file.\n\nSSH_USE_STRONG_RNG=32\n\nThe SSH service must be restarted for changes to take effect.", - "label": "fix" - } - ], - "impact": 0.3, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "low", - "description": "{\"VulnDiscussion\":\"The most important characteristic of a random number generator is its randomness, namely its ability to deliver random numbers that are impossible to predict. Entropy in computer security is associated with the unpredictability of a source of randomness. The random source with high entropy tends to achieve a uniform distribution of random values. Random number generators are one of the most important building blocks of cryptosystems.\\n\\nThe SSH implementation in RHEL8 uses the OPENSSL library, which does not use high-entropy sources by default. By using the SSH_USE_STRONG_RNG environment variable the OPENSSL random generator is reseeded from /dev/random. This setting is not recommended on computers without the hardware random generator because insufficient entropy causes the connection to be blocked until enough entropy is available.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230253", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230253r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:122", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32897r567506_fix", - "fixtext_fixref": "F-32897r567506_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230253r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230253r627750_rule", - "version": "RHEL-08-010292", - "time": "2021-12-17T10:24:43", - "weight": "10.0", - "severity": "low", - "cdf:result": "pass", - "cdf:ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-32897r567506_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:122", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:24:43", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230255", - "title": "The RHEL 8 operating system must implement DoD-approved TLS encryption in the OpenSSL package.", - "desc": "Without cryptographic integrity protections, information can be altered by unauthorized users without detection.\n\nRemote access (e.g., RDP) is access to DoD nonpublic information systems by an authorized user (or an information system) communicating through an external, non-organization-controlled network. Remote access methods include, for example, dial-up, broadband, and wireless.\n\nCryptographic mechanisms used for protecting the integrity of information include, for example, signed hash functions using asymmetric cryptography enabling distribution of the public key to verify the hash information while maintaining the confidentiality of the secret key used to generate the hash.\n\nRHEL 8 incorporates system-wide crypto policies by default. The employed algorithms can be viewed in the /etc/crypto-policies/back-ends/openssl.config file.\n\nSatisfies: SRG-OS-000250-GPOS-00093, SRG-OS-000393-GPOS-00173, SRG-OS-000394-GPOS-00174, SRG-OS-000125-GPOS-00065", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:123", - "label": "check" - }, - { - "data": "Configure the RHEL 8 OpenSSL library to use only DoD-approved TLS encryption by editing the following line in the \"/etc/crypto-policies/back-ends/opensslcnf.config\" file:\n\nMinProtocol = TLSv1.2\n\nA reboot is required for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001453" - ], - "nist": [ - "AC-17 (2)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without cryptographic integrity protections, information can be altered by unauthorized users without detection.\\n\\nRemote access (e.g., RDP) is access to DoD nonpublic information systems by an authorized user (or an information system) communicating through an external, non-organization-controlled network. Remote access methods include, for example, dial-up, broadband, and wireless.\\n\\nCryptographic mechanisms used for protecting the integrity of information include, for example, signed hash functions using asymmetric cryptography enabling distribution of the public key to verify the hash information while maintaining the confidentiality of the secret key used to generate the hash.\\n\\nRHEL 8 incorporates system-wide crypto policies by default. The employed algorithms can be viewed in the /etc/crypto-policies/back-ends/openssl.config file.\\n\\nSatisfies: SRG-OS-000250-GPOS-00093, SRG-OS-000393-GPOS-00173, SRG-OS-000394-GPOS-00174, SRG-OS-000125-GPOS-00065\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230255", - "group_title": "SRG-OS-000250-GPOS-00093", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230255r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:123", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32899r567512_fix", - "fixtext_fixref": "F-32899r567512_fix", - "ident": { - "text": "CCI-001453", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230255r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230255r627750_rule", - "version": "RHEL-08-010294", - "time": "2021-12-17T10:24:43", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-001453", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-32899r567512_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:123", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:24:43", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230257", - "title": "RHEL 8 system commands must have mode 0755 or less permissive.", - "desc": "If RHEL 8 were to allow any user to make changes to software libraries, then those changes might be implemented without undergoing the appropriate testing and approvals that are part of a robust change management process.\n\nThis requirement applies to RHEL 8 with software libraries that are accessible and configurable, as in the case of interpreted languages. Software libraries also include privileged programs that execute with escalated privileges. Only qualified and authorized individuals will be allowed to obtain access to information system components for purposes of initiating changes, including upgrades and modifications.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:124", - "label": "check" - }, - { - "data": "Configure the system commands to be protected from unauthorized access.\n\nRun the following command, replacing \"[FILE]\" with any system command with a mode more permissive than \"0755\".\n\n$ sudo chmod 0755 [FILE]", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001499" - ], - "nist": [ - "CM-5 (6)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"If RHEL 8 were to allow any user to make changes to software libraries, then those changes might be implemented without undergoing the appropriate testing and approvals that are part of a robust change management process.\\n\\nThis requirement applies to RHEL 8 with software libraries that are accessible and configurable, as in the case of interpreted languages. Software libraries also include privileged programs that execute with escalated privileges. Only qualified and authorized individuals will be allowed to obtain access to information system components for purposes of initiating changes, including upgrades and modifications.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230257", - "group_title": "SRG-OS-000259-GPOS-00100", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230257r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:124", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32901r567518_fix", - "fixtext_fixref": "F-32901r567518_fix", - "ident": { - "text": "CCI-001499", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230257r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230257r627750_rule", - "version": "RHEL-08-010300", - "time": "2021-12-17T10:24:43", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-001499", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-32901r567518_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:124", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:24:43", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230258", - "title": "RHEL 8 system commands must be owned by root.", - "desc": "If RHEL 8 were to allow any user to make changes to software libraries, then those changes might be implemented without undergoing the appropriate testing and approvals that are part of a robust change management process.\n\nThis requirement applies to RHEL 8 with software libraries that are accessible and configurable, as in the case of interpreted languages. Software libraries also include privileged programs that execute with escalated privileges. Only qualified and authorized individuals will be allowed to obtain access to information system components for purposes of initiating changes, including upgrades and modifications.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:125", - "label": "check" - }, - { - "data": "Configure the system commands to be protected from unauthorized access.\n\nRun the following command, replacing \"[FILE]\" with any system command file not owned by \"root\".\n\n$ sudo chown root [FILE]", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001499" - ], - "nist": [ - "CM-5 (6)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"If RHEL 8 were to allow any user to make changes to software libraries, then those changes might be implemented without undergoing the appropriate testing and approvals that are part of a robust change management process.\\n\\nThis requirement applies to RHEL 8 with software libraries that are accessible and configurable, as in the case of interpreted languages. Software libraries also include privileged programs that execute with escalated privileges. Only qualified and authorized individuals will be allowed to obtain access to information system components for purposes of initiating changes, including upgrades and modifications.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230258", - "group_title": "SRG-OS-000259-GPOS-00100", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230258r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:125", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32902r567521_fix", - "fixtext_fixref": "F-32902r567521_fix", - "ident": { - "text": "CCI-001499", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230258r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230258r627750_rule", - "version": "RHEL-08-010310", - "time": "2021-12-17T10:26:42", - "weight": "10.0", - "severity": "medium", - "cdf:result": "pass", - "cdf:ident": { - "text": "CCI-001499", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-32902r567521_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:125", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:26:42", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230259", - "title": "RHEL 8 system commands must be group-owned by root or a system account.", - "desc": "If RHEL 8 were to allow any user to make changes to software libraries, then those changes might be implemented without undergoing the appropriate testing and approvals that are part of a robust change management process.\n\nThis requirement applies to RHEL 8 with software libraries that are accessible and configurable, as in the case of interpreted languages. Software libraries also include privileged programs that execute with escalated privileges. Only qualified and authorized individuals will be allowed to obtain access to information system components for purposes of initiating changes, including upgrades and modifications.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:126", - "label": "check" - }, - { - "data": "Configure the system commands to be protected from unauthorized access.\n\nRun the following command, replacing \"[FILE]\" with any system command file not group-owned by \"root\" or a required system account.\n\n$ sudo chgrp root [FILE]", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001499" - ], - "nist": [ - "CM-5 (6)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"If RHEL 8 were to allow any user to make changes to software libraries, then those changes might be implemented without undergoing the appropriate testing and approvals that are part of a robust change management process.\\n\\nThis requirement applies to RHEL 8 with software libraries that are accessible and configurable, as in the case of interpreted languages. Software libraries also include privileged programs that execute with escalated privileges. Only qualified and authorized individuals will be allowed to obtain access to information system components for purposes of initiating changes, including upgrades and modifications.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230259", - "group_title": "SRG-OS-000259-GPOS-00100", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230259r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:126", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32903r567524_fix", - "fixtext_fixref": "F-32903r567524_fix", - "ident": { - "text": "CCI-001499", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230259r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230259r627750_rule", - "version": "RHEL-08-010320", - "time": "2021-12-17T10:27:10", - "weight": "10.0", - "severity": "medium", - "cdf:result": "pass", - "cdf:ident": { - "text": "CCI-001499", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-32903r567524_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:126", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:27:10", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230264", - "title": "RHEL 8 must prevent the installation of software, patches, service packs, device drivers, or operating system components from a repository without verification they have been digitally signed using a certificate that is issued by a Certificate Authority (CA) that is recognized and approved by the organization.", - "desc": "Changes to any software components can have significant effects on the overall security of the operating system. This requirement ensures the software has not been tampered with and that it has been provided by a trusted vendor.\n\nAccordingly, patches, service packs, device drivers, or operating system components must be signed with a certificate recognized and approved by the organization.\n\nVerifying the authenticity of the software prior to installation validates the integrity of the patch or upgrade received from a vendor. This verifies the software has not been tampered with and that it has been provided by a trusted vendor. Self-signed certificates are disallowed by this requirement. The operating system should not have to verify the software again. This requirement does not mandate DoD certificates for this purpose; however, the certificate used to verify the software must be from an approved CA.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:130", - "label": "check" - }, - { - "data": "Configure the operating system to verify the signature of packages from a repository prior to install by setting the following option in the \"/etc/yum.repos.d/[your_repo_name].repo\" file:\n\ngpgcheck=1", - "label": "fix" - } - ], - "impact": 0.7, - "refs": [], - "tags": { - "cci": [ - "CCI-001749" - ], - "nist": [ - "CM-5 (3)" - ], - "severity": "high", - "description": "{\"VulnDiscussion\":\"Changes to any software components can have significant effects on the overall security of the operating system. This requirement ensures the software has not been tampered with and that it has been provided by a trusted vendor.\\n\\nAccordingly, patches, service packs, device drivers, or operating system components must be signed with a certificate recognized and approved by the organization.\\n\\nVerifying the authenticity of the software prior to installation validates the integrity of the patch or upgrade received from a vendor. This verifies the software has not been tampered with and that it has been provided by a trusted vendor. Self-signed certificates are disallowed by this requirement. The operating system should not have to verify the software again. This requirement does not mandate DoD certificates for this purpose; however, the certificate used to verify the software must be from an approved CA.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230264", - "group_title": "SRG-OS-000366-GPOS-00153", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230264r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:130", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32908r567539_fix", - "fixtext_fixref": "F-32908r567539_fix", - "ident": { - "text": "CCI-001749", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230264r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230264r627750_rule", - "version": "RHEL-08-010370", - "time": "2021-12-17T10:27:37", - "weight": "10.0", - "severity": "high", - "cdf:result": "pass", - "cdf:ident": { - "text": "CCI-001749", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-32908r567539_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:130", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:27:37", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230265", - "title": "RHEL 8 must prevent the installation of software, patches, service packs, device drivers, or operating system components of local packages without verification they have been digitally signed using a certificate that is issued by a Certificate Authority (CA) that is recognized and approved by the organization.", - "desc": "Changes to any software components can have significant effects on the overall security of the operating system. This requirement ensures the software has not been tampered with and that it has been provided by a trusted vendor.\n\nAccordingly, patches, service packs, device drivers, or operating system components must be signed with a certificate recognized and approved by the organization.\n\nVerifying the authenticity of the software prior to installation validates the integrity of the patch or upgrade received from a vendor. This verifies the software has not been tampered with and that it has been provided by a trusted vendor. Self-signed certificates are disallowed by this requirement. The operating system should not have to verify the software again. This requirement does not mandate DoD certificates for this purpose; however, the certificate used to verify the software must be from an approved CA.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:131", - "label": "check" - }, - { - "data": "Configure the operating system to remove all software components after updated versions have been installed.\n\nSet the \"localpkg_gpgcheck\" option to \"True\" in the \"/etc/dnf/dnf.conf\" file:\n\nlocalpkg_gpgcheck=True", - "label": "fix" - } - ], - "impact": 0.7, - "refs": [], - "tags": { - "cci": [ - "CCI-001749" - ], - "nist": [ - "CM-5 (3)" - ], - "severity": "high", - "description": "{\"VulnDiscussion\":\"Changes to any software components can have significant effects on the overall security of the operating system. This requirement ensures the software has not been tampered with and that it has been provided by a trusted vendor.\\n\\nAccordingly, patches, service packs, device drivers, or operating system components must be signed with a certificate recognized and approved by the organization.\\n\\nVerifying the authenticity of the software prior to installation validates the integrity of the patch or upgrade received from a vendor. This verifies the software has not been tampered with and that it has been provided by a trusted vendor. Self-signed certificates are disallowed by this requirement. The operating system should not have to verify the software again. This requirement does not mandate DoD certificates for this purpose; however, the certificate used to verify the software must be from an approved CA.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230265", - "group_title": "SRG-OS-000366-GPOS-00153", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230265r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:131", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32909r567542_fix", - "fixtext_fixref": "F-32909r567542_fix", - "ident": { - "text": "CCI-001749", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230265r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230265r627750_rule", - "version": "RHEL-08-010371", - "time": "2021-12-17T10:27:44", - "weight": "10.0", - "severity": "high", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-001749", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-32909r567542_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:131", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:27:44", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230266", - "title": "RHEL 8 must prevent the loading of a new kernel for later execution.", - "desc": "Changes to any software components can have significant effects on the overall security of the operating system. This requirement ensures the software has not been tampered with and that it has been provided by a trusted vendor.\n\nDisabling kexec_load prevents an unsigned kernel image (that could be a windows kernel or modified vulnerable kernel) from being loaded. Kexec can be used subvert the entire secureboot process and should be avoided at all costs especially since it can load unsigned kernel images.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:132", - "label": "check" - }, - { - "data": "Configure the operating system to disable kernel image loading.\n\nAdd or edit the following line in a system configuration file in the \"/etc/sysctl.d/\" directory:\n\nkernel.kexec_load_disabled = 1\n\nLoad settings from all system configuration files with the following command:\n\n$ sudo sysctl --system", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001749" - ], - "nist": [ - "CM-5 (3)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Changes to any software components can have significant effects on the overall security of the operating system. This requirement ensures the software has not been tampered with and that it has been provided by a trusted vendor.\\n\\nDisabling kexec_load prevents an unsigned kernel image (that could be a windows kernel or modified vulnerable kernel) from being loaded. Kexec can be used subvert the entire secureboot process and should be avoided at all costs especially since it can load unsigned kernel images.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230266", - "group_title": "SRG-OS-000366-GPOS-00153", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230266r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:132", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32910r567545_fix", - "fixtext_fixref": "F-32910r567545_fix", - "ident": { - "text": "CCI-001749", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230266r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230266r627750_rule", - "version": "RHEL-08-010372", - "time": "2021-12-17T10:27:44", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-001749", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-32910r567545_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:132", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:27:44", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230267", - "title": "RHEL 8 must enable kernel parameters to enforce discretionary access control on symlinks.", - "desc": "Discretionary Access Control (DAC) is based on the notion that individual users are \"owners\" of objects and therefore have discretion over who should be authorized to access the object and in which mode (e.g., read or write). Ownership is usually acquired as a consequence of creating the object or via specified ownership assignment. DAC allows the owner to determine who will have access to objects they control. An example of DAC includes user-controlled file permissions.\n\nWhen discretionary access control policies are implemented, subjects are not constrained with regard to what actions they can take with information for which they have already been granted access. Thus, subjects that have been granted access to information are not prevented from passing (i.e., the subjects have the discretion to pass) the information to other subjects or objects. A subject that is constrained in its operation by Mandatory Access Control policies is still able to operate under the less rigorous constraints of this requirement. Thus, while Mandatory Access Control imposes constraints preventing a subject from passing information to another subject operating at a different sensitivity level, this requirement permits the subject to pass the information to any subject at the same sensitivity level. The policy is bounded by the information system boundary. Once the information is passed outside the control of the information system, additional means may be required to ensure the constraints remain in effect. While the older, more traditional definitions of discretionary access control require identity-based access control, that limitation is not required for this use of discretionary access control.\n\nBy enabling the fs.protected_symlinks kernel parameter, symbolic links are permitted to be followed only when outside a sticky world-writable directory, or when the UID of the link and follower match, or when the directory owner matches the symlink's owner. Disallowing such symlinks helps mitigate vulnerabilities based on insecure file system accessed by privileged programs, avoiding an exploitation vector exploiting unsafe use of open() or creat().\n\nSatisfies: SRG-OS-000312-GPOS-00122, SRG-OS-000312-GPOS-00123, SRG-OS-000312-GPOS-00124, SRG-OS-000324-GPOS-00125", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:133", - "label": "check" - }, - { - "data": "Configure the operating system to enable DAC on symlinks.\n\nAdd or edit the following line in a system configuration file in the \"/etc/sysctl.d/\" directory:\n\nfs.protected_symlinks = 1\n\nLoad settings from all system configuration files with the following command:\n\n$ sudo sysctl --system", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-002165" - ], - "nist": [ - "AC-3 (4)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Discretionary Access Control (DAC) is based on the notion that individual users are \\\"owners\\\" of objects and therefore have discretion over who should be authorized to access the object and in which mode (e.g., read or write). Ownership is usually acquired as a consequence of creating the object or via specified ownership assignment. DAC allows the owner to determine who will have access to objects they control. An example of DAC includes user-controlled file permissions.\\n\\nWhen discretionary access control policies are implemented, subjects are not constrained with regard to what actions they can take with information for which they have already been granted access. Thus, subjects that have been granted access to information are not prevented from passing (i.e., the subjects have the discretion to pass) the information to other subjects or objects. A subject that is constrained in its operation by Mandatory Access Control policies is still able to operate under the less rigorous constraints of this requirement. Thus, while Mandatory Access Control imposes constraints preventing a subject from passing information to another subject operating at a different sensitivity level, this requirement permits the subject to pass the information to any subject at the same sensitivity level. The policy is bounded by the information system boundary. Once the information is passed outside the control of the information system, additional means may be required to ensure the constraints remain in effect. While the older, more traditional definitions of discretionary access control require identity-based access control, that limitation is not required for this use of discretionary access control.\\n\\nBy enabling the fs.protected_symlinks kernel parameter, symbolic links are permitted to be followed only when outside a sticky world-writable directory, or when the UID of the link and follower match, or when the directory owner matches the symlink's owner. Disallowing such symlinks helps mitigate vulnerabilities based on insecure file system accessed by privileged programs, avoiding an exploitation vector exploiting unsafe use of open() or creat().\\n\\nSatisfies: SRG-OS-000312-GPOS-00122, SRG-OS-000312-GPOS-00123, SRG-OS-000312-GPOS-00124, SRG-OS-000324-GPOS-00125\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230267", - "group_title": "SRG-OS-000312-GPOS-00122", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230267r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:133", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32911r567548_fix", - "fixtext_fixref": "F-32911r567548_fix", - "ident": { - "text": "CCI-002165", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230267r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230267r627750_rule", - "version": "RHEL-08-010373", - "time": "2021-12-17T10:27:45", - "weight": "10.0", - "severity": "medium", - "cdf:result": "pass", - "cdf:ident": { - "text": "CCI-002165", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-32911r567548_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:133", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:27:45", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230268", - "title": "RHEL 8 must enable kernel parameters to enforce discretionary access control on hardlinks.", - "desc": "Discretionary Access Control (DAC) is based on the notion that individual users are \"owners\" of objects and therefore have discretion over who should be authorized to access the object and in which mode (e.g., read or write). Ownership is usually acquired as a consequence of creating the object or via specified ownership assignment. DAC allows the owner to determine who will have access to objects they control. An example of DAC includes user-controlled file permissions.\n\nWhen discretionary access control policies are implemented, subjects are not constrained with regard to what actions they can take with information for which they have already been granted access. Thus, subjects that have been granted access to information are not prevented from passing (i.e., the subjects have the discretion to pass) the information to other subjects or objects. A subject that is constrained in its operation by Mandatory Access Control policies is still able to operate under the less rigorous constraints of this requirement. Thus, while Mandatory Access Control imposes constraints preventing a subject from passing information to another subject operating at a different sensitivity level, this requirement permits the subject to pass the information to any subject at the same sensitivity level. The policy is bounded by the information system boundary. Once the information is passed outside the control of the information system, additional means may be required to ensure the constraints remain in effect. While the older, more traditional definitions of discretionary access control require identity-based access control, that limitation is not required for this use of discretionary access control.\n\nBy enabling the fs.protected_hardlinks kernel parameter, users can no longer create soft or hard links to files they do not own. Disallowing such hardlinks mitigate vulnerabilities based on insecure file system accessed by privileged programs, avoiding an exploitation vector exploiting unsafe use of open() or creat().\n\nSatisfies: SRG-OS-000312-GPOS-00122, SRG-OS-000312-GPOS-00123, SRG-OS-000312-GPOS-00124, SRG-OS-000324-GPOS-00125", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:134", - "label": "check" - }, - { - "data": "Configure the operating system to enable DAC on hardlinks.\n\nAdd or edit the following line in a system configuration file in the \"/etc/sysctl.d/\" directory:\n\nfs.protected_hardlinks = 1\n\nLoad settings from all system configuration files with the following command:\n\n$ sudo sysctl --system", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-002165" - ], - "nist": [ - "AC-3 (4)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Discretionary Access Control (DAC) is based on the notion that individual users are \\\"owners\\\" of objects and therefore have discretion over who should be authorized to access the object and in which mode (e.g., read or write). Ownership is usually acquired as a consequence of creating the object or via specified ownership assignment. DAC allows the owner to determine who will have access to objects they control. An example of DAC includes user-controlled file permissions.\\n\\nWhen discretionary access control policies are implemented, subjects are not constrained with regard to what actions they can take with information for which they have already been granted access. Thus, subjects that have been granted access to information are not prevented from passing (i.e., the subjects have the discretion to pass) the information to other subjects or objects. A subject that is constrained in its operation by Mandatory Access Control policies is still able to operate under the less rigorous constraints of this requirement. Thus, while Mandatory Access Control imposes constraints preventing a subject from passing information to another subject operating at a different sensitivity level, this requirement permits the subject to pass the information to any subject at the same sensitivity level. The policy is bounded by the information system boundary. Once the information is passed outside the control of the information system, additional means may be required to ensure the constraints remain in effect. While the older, more traditional definitions of discretionary access control require identity-based access control, that limitation is not required for this use of discretionary access control.\\n\\nBy enabling the fs.protected_hardlinks kernel parameter, users can no longer create soft or hard links to files they do not own. Disallowing such hardlinks mitigate vulnerabilities based on insecure file system accessed by privileged programs, avoiding an exploitation vector exploiting unsafe use of open() or creat().\\n\\nSatisfies: SRG-OS-000312-GPOS-00122, SRG-OS-000312-GPOS-00123, SRG-OS-000312-GPOS-00124, SRG-OS-000324-GPOS-00125\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230268", - "group_title": "SRG-OS-000312-GPOS-00122", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230268r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:134", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32912r567551_fix", - "fixtext_fixref": "F-32912r567551_fix", - "ident": { - "text": "CCI-002165", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230268r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230268r627750_rule", - "version": "RHEL-08-010374", - "time": "2021-12-17T10:27:45", - "weight": "10.0", - "severity": "medium", - "cdf:result": "pass", - "cdf:ident": { - "text": "CCI-002165", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-32912r567551_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:134", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:27:45", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230269", - "title": "RHEL 8 must restrict access to the kernel message buffer.", - "desc": "Preventing unauthorized information transfers mitigates the risk of information, including encrypted representations of information, produced by the actions of prior users/roles (or the actions of processes acting on behalf of prior users/roles) from being available to any current users/roles (or current processes) that obtain access to shared system resources (e.g., registers, main memory, hard disks) after those resources have been released back to information systems. The control of information in shared resources is also commonly referred to as object reuse and residual information protection.\n\nThis requirement generally applies to the design of an information technology product, but it can also apply to the configuration of particular information system components that are, or use, such products. This can be verified by acceptance/validation processes in DoD or other government agencies.\n\nThere may be shared resources with configurable protections (e.g., files in storage) that may be assessed on specific information system components.\n\nRestricting access to the kernel message buffer limits access to only root. This prevents attackers from gaining additional system information as a non-privileged user.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:135", - "label": "check" - }, - { - "data": "Configure the operating system to restrict access to the kernel message buffer.\n\nAdd or edit the following line in a system configuration file in the \"/etc/sysctl.d/\" directory:\n\nkernel.dmesg_restrict = 1\n\nLoad settings from all system configuration files with the following command:\n\n$ sudo sysctl --system", - "label": "fix" - } - ], - "impact": 0.3, - "refs": [], - "tags": { - "cci": [ - "CCI-001090" - ], - "nist": [ - "SC-4" - ], - "severity": "low", - "description": "{\"VulnDiscussion\":\"Preventing unauthorized information transfers mitigates the risk of information, including encrypted representations of information, produced by the actions of prior users/roles (or the actions of processes acting on behalf of prior users/roles) from being available to any current users/roles (or current processes) that obtain access to shared system resources (e.g., registers, main memory, hard disks) after those resources have been released back to information systems. The control of information in shared resources is also commonly referred to as object reuse and residual information protection.\\n\\nThis requirement generally applies to the design of an information technology product, but it can also apply to the configuration of particular information system components that are, or use, such products. This can be verified by acceptance/validation processes in DoD or other government agencies.\\n\\nThere may be shared resources with configurable protections (e.g., files in storage) that may be assessed on specific information system components.\\n\\nRestricting access to the kernel message buffer limits access to only root. This prevents attackers from gaining additional system information as a non-privileged user.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230269", - "group_title": "SRG-OS-000138-GPOS-00069", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230269r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:135", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32913r567554_fix", - "fixtext_fixref": "F-32913r567554_fix", - "ident": { - "text": "CCI-001090", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230269r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230269r627750_rule", - "version": "RHEL-08-010375", - "time": "2021-12-17T10:27:45", - "weight": "10.0", - "severity": "low", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-001090", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-32913r567554_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:135", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:27:45", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230270", - "title": "RHEL 8 must prevent kernel profiling by unprivileged users.", - "desc": "Preventing unauthorized information transfers mitigates the risk of information, including encrypted representations of information, produced by the actions of prior users/roles (or the actions of processes acting on behalf of prior users/roles) from being available to any current users/roles (or current processes) that obtain access to shared system resources (e.g., registers, main memory, hard disks) after those resources have been released back to information systems. The control of information in shared resources is also commonly referred to as object reuse and residual information protection.\n\nThis requirement generally applies to the design of an information technology product, but it can also apply to the configuration of particular information system components that are, or use, such products. This can be verified by acceptance/validation processes in DoD or other government agencies.\n\nThere may be shared resources with configurable protections (e.g., files in storage) that may be assessed on specific information system components.\n\nSetting the kernel.perf_event_paranoid kernel parameter to \"2\" prevents attackers from gaining additional system information as a non-privileged user.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:136", - "label": "check" - }, - { - "data": "Configure the operating system to prevent kernel profiling by unprivileged users.\n\nAdd or edit the following line in a system configuration file in the \"/etc/sysctl.d/\" directory:\n\nkernel.perf_event_paranoid = 2\n\nLoad settings from all system configuration files with the following command:\n\n$ sudo sysctl --system", - "label": "fix" - } - ], - "impact": 0.3, - "refs": [], - "tags": { - "cci": [ - "CCI-001090" - ], - "nist": [ - "SC-4" - ], - "severity": "low", - "description": "{\"VulnDiscussion\":\"Preventing unauthorized information transfers mitigates the risk of information, including encrypted representations of information, produced by the actions of prior users/roles (or the actions of processes acting on behalf of prior users/roles) from being available to any current users/roles (or current processes) that obtain access to shared system resources (e.g., registers, main memory, hard disks) after those resources have been released back to information systems. The control of information in shared resources is also commonly referred to as object reuse and residual information protection.\\n\\nThis requirement generally applies to the design of an information technology product, but it can also apply to the configuration of particular information system components that are, or use, such products. This can be verified by acceptance/validation processes in DoD or other government agencies.\\n\\nThere may be shared resources with configurable protections (e.g., files in storage) that may be assessed on specific information system components.\\n\\nSetting the kernel.perf_event_paranoid kernel parameter to \\\"2\\\" prevents attackers from gaining additional system information as a non-privileged user.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230270", - "group_title": "SRG-OS-000138-GPOS-00069", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230270r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:136", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32914r567557_fix", - "fixtext_fixref": "F-32914r567557_fix", - "ident": { - "text": "CCI-001090", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230270r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230270r627750_rule", - "version": "RHEL-08-010376", - "time": "2021-12-17T10:27:45", - "weight": "10.0", - "severity": "low", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-001090", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-32914r567557_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:136", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:27:45", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230271", - "title": "RHEL 8 must require users to provide a password for privilege escalation.", - "desc": "Without reauthentication, users may access resources or perform tasks for which they do not have authorization.\n\nWhen operating systems provide the capability to escalate a functional capability, it is critical the user reauthenticate.\n\nSatisfies: SRG-OS-000373-GPOS-00156, SRG-OS-000373-GPOS-00157, SRG-OS-000373-GPOS-00158", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:137", - "label": "check" - }, - { - "data": "Remove any occurrence of \"NOPASSWD\" found in \"/etc/sudoers\" file or files in the \"/etc/sudoers.d\" directory.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-002038" - ], - "nist": [ - "IA-11" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without reauthentication, users may access resources or perform tasks for which they do not have authorization.\\n\\nWhen operating systems provide the capability to escalate a functional capability, it is critical the user reauthenticate.\\n\\nSatisfies: SRG-OS-000373-GPOS-00156, SRG-OS-000373-GPOS-00157, SRG-OS-000373-GPOS-00158\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230271", - "group_title": "SRG-OS-000373-GPOS-00156", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230271r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:137", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32915r567560_fix", - "fixtext_fixref": "F-32915r567560_fix", - "ident": { - "text": "CCI-002038", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230271r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230271r627750_rule", - "version": "RHEL-08-010380", - "time": "2021-12-17T10:27:45", - "weight": "10.0", - "severity": "medium", - "cdf:result": "pass", - "cdf:ident": { - "text": "CCI-002038", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-32915r567560_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:137", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:27:45", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230272", - "title": "RHEL 8 must require users to reauthenticate for privilege escalation.", - "desc": "Without reauthentication, users may access resources or perform tasks for which they do not have authorization.\n\nWhen operating systems provide the capability to escalate a functional capability, it is critical the user reauthenticate.\n\nSatisfies: SRG-OS-000373-GPOS-00156, SRG-OS-000373-GPOS-00157, SRG-OS-000373-GPOS-00158", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:138", - "label": "check" - }, - { - "data": "Remove any occurrence of \"!authenticate\" found in \"/etc/sudoers\" file or files in the \"/etc/sudoers.d\" directory.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-002038" - ], - "nist": [ - "IA-11" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without reauthentication, users may access resources or perform tasks for which they do not have authorization.\\n\\nWhen operating systems provide the capability to escalate a functional capability, it is critical the user reauthenticate.\\n\\nSatisfies: SRG-OS-000373-GPOS-00156, SRG-OS-000373-GPOS-00157, SRG-OS-000373-GPOS-00158\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230272", - "group_title": "SRG-OS-000373-GPOS-00156", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230272r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:138", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32916r567563_fix", - "fixtext_fixref": "F-32916r567563_fix", - "ident": { - "text": "CCI-002038", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230272r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230272r627750_rule", - "version": "RHEL-08-010381", - "time": "2021-12-17T10:27:45", - "weight": "10.0", - "severity": "medium", - "cdf:result": "pass", - "cdf:ident": { - "text": "CCI-002038", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-32916r567563_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:138", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:27:45", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230273", - "title": "RHEL 8 must have the packages required for multifactor authentication installed.", - "desc": "Using an authentication device, such as a DoD Common Access Card (CAC) or token that is separate from the information system, ensures that even if the information system is compromised, credentials stored on the authentication device will not be affected.\n\nMultifactor solutions that require devices separate from information systems gaining access include, for example, hardware tokens providing time-based or challenge-response authenticators and smart cards such as the U.S. Government Personal Identity Verification (PIV) card and the DoD CAC.\n\nA privileged account is defined as an information system account with authorizations of a privileged user.\n\nRemote access is access to DoD nonpublic information systems by an authorized user (or an information system) communicating through an external, non-organization-controlled network. Remote access methods include, for example, dial-up, broadband, and wireless.\n\nThis requirement only applies to components where this is specific to the function of the device or has the concept of an organizational user (e.g., VPN, proxy capability). This does not apply to authentication for the purpose of configuring the device itself (management).", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:139", - "label": "check" - }, - { - "data": "Configure the operating system to implement multifactor authentication by installing the required package with the following command:\n\n$ sudo yum install openssl-pkcs11", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001948" - ], - "nist": [ - "IA-2 (11)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Using an authentication device, such as a DoD Common Access Card (CAC) or token that is separate from the information system, ensures that even if the information system is compromised, credentials stored on the authentication device will not be affected.\\n\\nMultifactor solutions that require devices separate from information systems gaining access include, for example, hardware tokens providing time-based or challenge-response authenticators and smart cards such as the U.S. Government Personal Identity Verification (PIV) card and the DoD CAC.\\n\\nA privileged account is defined as an information system account with authorizations of a privileged user.\\n\\nRemote access is access to DoD nonpublic information systems by an authorized user (or an information system) communicating through an external, non-organization-controlled network. Remote access methods include, for example, dial-up, broadband, and wireless.\\n\\nThis requirement only applies to components where this is specific to the function of the device or has the concept of an organizational user (e.g., VPN, proxy capability). This does not apply to authentication for the purpose of configuring the device itself (management).\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230273", - "group_title": "SRG-OS-000375-GPOS-00160", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230273r743943_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:139", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32917r743942_fix", - "fixtext_fixref": "F-32917r743942_fix", - "ident": { - "text": "CCI-001948", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230273r743943_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230273r743943_rule", - "version": "RHEL-08-010390", - "time": "2021-12-17T10:27:45", - "weight": "10.0", - "severity": "medium", - "cdf:result": "pass", - "cdf:ident": { - "text": "CCI-001948", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-32917r743942_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:139", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:27:45", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230281", - "title": "YUM must remove all software components after updated versions have been installed on RHEL 8.", - "desc": "Previous versions of software components that are not removed from the information system after updates have been installed may be exploited by adversaries. Some information technology products may remove older versions of software automatically from the information system.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:145", - "label": "check" - }, - { - "data": "Configure the operating system to remove all software components after updated versions have been installed.\n\nSet the \"clean_requirements_on_remove\" option to \"True\" in the \"/etc/dnf/dnf.conf\" file:\n\nclean_requirements_on_remove=True", - "label": "fix" - } - ], - "impact": 0.3, - "refs": [], - "tags": { - "cci": [ - "CCI-002617" - ], - "nist": [ - "SI-2 (6)" - ], - "severity": "low", - "description": "{\"VulnDiscussion\":\"Previous versions of software components that are not removed from the information system after updates have been installed may be exploited by adversaries. Some information technology products may remove older versions of software automatically from the information system.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230281", - "group_title": "SRG-OS-000437-GPOS-00194", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230281r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:145", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32925r567590_fix", - "fixtext_fixref": "F-32925r567590_fix", - "ident": { - "text": "CCI-002617", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230281r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230281r627750_rule", - "version": "RHEL-08-010440", - "time": "2021-12-17T10:27:47", - "weight": "10.0", - "severity": "low", - "cdf:result": "pass", - "cdf:ident": { - "text": "CCI-002617", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-32925r567590_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:145", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:27:47", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230282", - "title": "RHEL 8 must enable the SELinux targeted policy.", - "desc": "Without verification of the security functions, security functions may not operate correctly and the failure may go unnoticed. Security function is defined as the hardware, software, and/or firmware of the information system responsible for enforcing the system security policy and supporting the isolation of code and data on which the protection is based. Security functionality includes, but is not limited to, establishing system accounts, configuring access authorizations (i.e., permissions, privileges), setting events to be audited, and setting intrusion detection parameters.\n\nThis requirement applies to operating systems performing security function verification/testing and/or systems and environments that require this functionality.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:146", - "label": "check" - }, - { - "data": "Configure the operating system to verify correct operation of all security functions.\n\nSet the \"SELinuxtype\" to the \"targeted\" policy by modifying the \"/etc/selinux/config\" file to have the following line:\n\nSELINUXTYPE=targeted\n\nA reboot is required for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-002696" - ], - "nist": [ - "SI-6 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without verification of the security functions, security functions may not operate correctly and the failure may go unnoticed. Security function is defined as the hardware, software, and/or firmware of the information system responsible for enforcing the system security policy and supporting the isolation of code and data on which the protection is based. Security functionality includes, but is not limited to, establishing system accounts, configuring access authorizations (i.e., permissions, privileges), setting events to be audited, and setting intrusion detection parameters.\\n\\nThis requirement applies to operating systems performing security function verification/testing and/or systems and environments that require this functionality.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230282", - "group_title": "SRG-OS-000445-GPOS-00199", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230282r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:146", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32926r567593_fix", - "fixtext_fixref": "F-32926r567593_fix", - "ident": { - "text": "CCI-002696", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230282r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230282r627750_rule", - "version": "RHEL-08-010450", - "time": "2021-12-17T10:27:47", - "weight": "10.0", - "severity": "medium", - "cdf:result": "pass", - "cdf:ident": { - "text": "CCI-002696", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-32926r567593_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:146", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:27:47", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230283", - "title": "There must be no shosts.equiv files on the RHEL 8 operating system.", - "desc": "The \"shosts.equiv\" files are used to configure host-based authentication for the system via SSH. Host-based authentication is not sufficient for preventing unauthorized access to the system, as it does not require interactive identification and authentication of a connection request, or for the use of two-factor authentication.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:147", - "label": "check" - }, - { - "data": "Remove any found \"shosts.equiv\" files from the system.\n\n$ sudo rm /etc/ssh/shosts.equiv", - "label": "fix" - } - ], - "impact": 0.7, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "high", - "description": "{\"VulnDiscussion\":\"The \\\"shosts.equiv\\\" files are used to configure host-based authentication for the system via SSH. Host-based authentication is not sufficient for preventing unauthorized access to the system, as it does not require interactive identification and authentication of a connection request, or for the use of two-factor authentication.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230283", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230283r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:147", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32927r567596_fix", - "fixtext_fixref": "F-32927r567596_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230283r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230283r627750_rule", - "version": "RHEL-08-010460", - "time": "2021-12-17T10:27:47", - "weight": "10.0", - "severity": "high", - "cdf:result": "pass", - "cdf:ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-32927r567596_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:147", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:27:47", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230284", - "title": "There must be no .shosts files on the RHEL 8 operating system.", - "desc": "The \".shosts\" files are used to configure host-based authentication for individual users or the system via SSH. Host-based authentication is not sufficient for preventing unauthorized access to the system, as it does not require interactive identification and authentication of a connection request, or for the use of two-factor authentication.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:148", - "label": "check" - }, - { - "data": "Remove any found \".shosts\" files from the system.\n\n$ sudo rm /[path]/[to]/[file]/.shosts", - "label": "fix" - } - ], - "impact": 0.7, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "high", - "description": "{\"VulnDiscussion\":\"The \\\".shosts\\\" files are used to configure host-based authentication for individual users or the system via SSH. Host-based authentication is not sufficient for preventing unauthorized access to the system, as it does not require interactive identification and authentication of a connection request, or for the use of two-factor authentication.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230284", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230284r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:148", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32928r567599_fix", - "fixtext_fixref": "F-32928r567599_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230284r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230284r627750_rule", - "version": "RHEL-08-010470", - "time": "2021-12-17T10:30:11", - "weight": "10.0", - "severity": "high", - "cdf:result": "pass", - "cdf:ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-32928r567599_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:148", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:11", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230286", - "title": "The RHEL 8 SSH public host key files must have mode 0644 or less permissive.", - "desc": "If a public host key file is modified by an unauthorized user, the SSH service may be compromised.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:149", - "label": "check" - }, - { - "data": "Change the mode of public host key files under \"/etc/ssh\" to \"0644\" with the following command:\n\n$ sudo chmod 0644 /etc/ssh/*key.pub\n\nThe SSH daemon must be restarted for the changes to take effect. To restart the SSH daemon, run the following command:\n\n$ sudo systemctl restart sshd.service", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"If a public host key file is modified by an unauthorized user, the SSH service may be compromised.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230286", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230286r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:149", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32930r567605_fix", - "fixtext_fixref": "F-32930r567605_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230286r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230286r627750_rule", - "version": "RHEL-08-010480", - "time": "2021-12-17T10:30:11", - "weight": "10.0", - "severity": "medium", - "cdf:result": "pass", - "cdf:ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-32930r567605_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:149", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:11", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230287", - "title": "The RHEL 8 SSH private host key files must have mode 0600 or less permissive.", - "desc": "If an unauthorized user obtains the private SSH host key file, the host could be impersonated.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:150", - "label": "check" - }, - { - "data": "Configure the mode of SSH private host key files under \"/etc/ssh\" to \"0600\" with the following command:\n\n$ sudo chmod 0600 /etc/ssh/ssh_host*key\n\nThe SSH daemon must be restarted for the changes to take effect. To restart the SSH daemon, run the following command:\n\n$ sudo systemctl restart sshd.service", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"If an unauthorized user obtains the private SSH host key file, the host could be impersonated.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230287", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230287r743951_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:150", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32931r743950_fix", - "fixtext_fixref": "F-32931r743950_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230287r743951_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230287r743951_rule", - "version": "RHEL-08-010490", - "time": "2021-12-17T10:30:12", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-32931r743950_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:150", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:12", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230288", - "title": "The RHEL 8 SSH daemon must perform strict mode checking of home directory configuration files.", - "desc": "If other users have access to modify user-specific SSH configuration files, they may be able to log on to the system as another user.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:151", - "label": "check" - }, - { - "data": "Configure SSH to perform strict mode checking of home directory configuration files. Uncomment the \"StrictModes\" keyword in \"/etc/ssh/sshd_config\" and set the value to \"yes\":\n\nStrictModes yes\n\nThe SSH daemon must be restarted for the changes to take effect. To restart the SSH daemon, run the following command:\n\n$ sudo systemctl restart sshd.service", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"If other users have access to modify user-specific SSH configuration files, they may be able to log on to the system as another user.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230288", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230288r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:151", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32932r567611_fix", - "fixtext_fixref": "F-32932r567611_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230288r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230288r627750_rule", - "version": "RHEL-08-010500", - "time": "2021-12-17T10:30:12", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-32932r567611_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:151", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:12", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230289", - "title": "The RHEL 8 SSH daemon must not allow compression or must only allow compression after successful authentication.", - "desc": "If compression is allowed in an SSH connection prior to authentication, vulnerabilities in the compression software could result in compromise of the system from an unauthenticated connection, potentially with root privileges.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:152", - "label": "check" - }, - { - "data": "Uncomment the \"Compression\" keyword in \"/etc/ssh/sshd_config\" (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor) on the system and set the value to \"delayed\" or \"no\":\n\nCompression no\n\nThe SSH service must be restarted for changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"If compression is allowed in an SSH connection prior to authentication, vulnerabilities in the compression software could result in compromise of the system from an unauthenticated connection, potentially with root privileges.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230289", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230289r743954_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:152", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32933r743953_fix", - "fixtext_fixref": "F-32933r743953_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230289r743954_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230289r743954_rule", - "version": "RHEL-08-010510", - "time": "2021-12-17T10:30:12", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-32933r743953_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:152", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:12", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230290", - "title": "The RHEL 8 SSH daemon must not allow authentication using known host's authentication.", - "desc": "Configuring this setting for the SSH daemon provides additional assurance that remote logon via SSH will require a password, even in the event of misconfiguration elsewhere.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:153", - "label": "check" - }, - { - "data": "Configure the SSH daemon to not allow authentication using known host's authentication.\n\nAdd the following line in \"/etc/ssh/sshd_config\", or uncomment the line and set the value to \"yes\":\n\nIgnoreUserKnownHosts yes\n\nThe SSH daemon must be restarted for the changes to take effect. To restart the SSH daemon, run the following command:\n\n$ sudo systemctl restart sshd.service", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Configuring this setting for the SSH daemon provides additional assurance that remote logon via SSH will require a password, even in the event of misconfiguration elsewhere.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230290", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230290r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:153", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32934r567617_fix", - "fixtext_fixref": "F-32934r567617_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230290r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230290r627750_rule", - "version": "RHEL-08-010520", - "time": "2021-12-17T10:30:12", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-32934r567617_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:153", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:12", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230291", - "title": "The RHEL 8 SSH daemon must not allow Kerberos authentication, except to fulfill documented and validated mission requirements.", - "desc": "Configuring these settings for the SSH daemon provides additional assurance that remote logon via SSH will not use unused methods of authentication, even in the event of misconfiguration elsewhere.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:154", - "label": "check" - }, - { - "data": "Configure the SSH daemon to not allow Kerberos authentication.\n\nAdd the following line in \"/etc/ssh/sshd_config\", or uncomment the line and set the value to \"no\":\n\nKerberosAuthentication no\n\nThe SSH daemon must be restarted for the changes to take effect. To restart the SSH daemon, run the following command:\n\n$ sudo systemctl restart sshd.service", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Configuring these settings for the SSH daemon provides additional assurance that remote logon via SSH will not use unused methods of authentication, even in the event of misconfiguration elsewhere.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230291", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230291r743957_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:154", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32935r743956_fix", - "fixtext_fixref": "F-32935r743956_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230291r743957_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230291r743957_rule", - "version": "RHEL-08-010521", - "time": "2021-12-17T10:30:12", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-32935r743956_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:154", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:12", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230292", - "title": "RHEL 8 must use a separate file system for /var.", - "desc": "The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:155", - "label": "check" - }, - { - "data": "Migrate the \"/var\" path onto a separate file system.", - "label": "fix" - } - ], - "impact": 0.3, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "low", - "description": "{\"VulnDiscussion\":\"The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230292", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230292r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:155", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32936r567623_fix", - "fixtext_fixref": "F-32936r567623_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230292r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230292r627750_rule", - "version": "RHEL-08-010540", - "time": "2021-12-17T10:30:12", - "weight": "10.0", - "severity": "low", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-32936r567623_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:155", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:12", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230293", - "title": "RHEL 8 must use a separate file system for /var/log.", - "desc": "The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:156", - "label": "check" - }, - { - "data": "Migrate the \"/var/log\" path onto a separate file system.", - "label": "fix" - } - ], - "impact": 0.3, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "low", - "description": "{\"VulnDiscussion\":\"The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230293", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230293r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:156", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32937r567626_fix", - "fixtext_fixref": "F-32937r567626_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230293r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230293r627750_rule", - "version": "RHEL-08-010541", - "time": "2021-12-17T10:30:12", - "weight": "10.0", - "severity": "low", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-32937r567626_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:156", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:12", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230294", - "title": "RHEL 8 must use a separate file system for the system audit data path.", - "desc": "The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:157", - "label": "check" - }, - { - "data": "Migrate the system audit data path onto a separate file system.", - "label": "fix" - } - ], - "impact": 0.3, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "low", - "description": "{\"VulnDiscussion\":\"The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230294", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230294r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:157", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32938r567629_fix", - "fixtext_fixref": "F-32938r567629_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230294r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230294r627750_rule", - "version": "RHEL-08-010542", - "time": "2021-12-17T10:30:13", - "weight": "10.0", - "severity": "low", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-32938r567629_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:157", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:13", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230295", - "title": "A separate RHEL 8 filesystem must be used for the /tmp directory.", - "desc": "The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:158", - "label": "check" - }, - { - "data": "Migrate the \"/tmp\" directory onto a separate file system/partition.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230295", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230295r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:158", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32939r567632_fix", - "fixtext_fixref": "F-32939r567632_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230295r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230295r627750_rule", - "version": "RHEL-08-010543", - "time": "2021-12-17T10:30:13", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-32939r567632_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:158", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:13", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230296", - "title": "RHEL 8 must not permit direct logons to the root account using remote access via SSH.", - "desc": "Even though the communications channel may be encrypted, an additional layer of security is gained by extending the policy of not logging on directly as root. In addition, logging on with a user-specific account provides individual accountability of actions performed on the system.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:159", - "label": "check" - }, - { - "data": "Configure RHEL 8 to stop users from logging on remotely as the \"root\" user via SSH.\n\nEdit the appropriate \"/etc/ssh/sshd_config\" file to uncomment or add the line for the \"PermitRootLogin\" keyword and set its value to \"no\":\n\nPermitRootLogin no\n\nThe SSH daemon must be restarted for the changes to take effect. To restart the SSH daemon, run the following command:\n\n$ sudo systemctl restart sshd.service", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000770" - ], - "nist": [ - "IA-2 (5)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Even though the communications channel may be encrypted, an additional layer of security is gained by extending the policy of not logging on directly as root. In addition, logging on with a user-specific account provides individual accountability of actions performed on the system.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230296", - "group_title": "SRG-OS-000109-GPOS-00056", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230296r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:159", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32940r567635_fix", - "fixtext_fixref": "F-32940r567635_fix", - "ident": { - "text": "CCI-000770", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230296r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230296r627750_rule", - "version": "RHEL-08-010550", - "time": "2021-12-17T10:30:13", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000770", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-32940r567635_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:159", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:13", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230297", - "title": "The auditd service must be running in RHEL 8.", - "desc": "Configuring RHEL 8 to implement organization-wide security implementation guides and security checklists ensures compliance with federal standards and establishes a common security baseline across the DoD that reflects the most restrictive security posture consistent with operational requirements.\n\nConfiguration settings are the set of parameters that can be changed in hardware, software, or firmware components of the system that affect the security posture and/or functionality of the system. Security-related parameters are those parameters impacting the security state of the system, including the parameters required to satisfy other security control requirements. Security-related parameters include, for example: registry settings; account, file, directory permission settings; and settings for functions, ports, protocols, services, and remote connections.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:160", - "label": "check" - }, - { - "data": "Start the auditd service, and enable the auditd service with the following commands:\n\n$ sudo systemctl start auditd.service\n\n$ sudo systemctl enable auditd.service", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Configuring RHEL 8 to implement organization-wide security implementation guides and security checklists ensures compliance with federal standards and establishes a common security baseline across the DoD that reflects the most restrictive security posture consistent with operational requirements.\\n\\nConfiguration settings are the set of parameters that can be changed in hardware, software, or firmware components of the system that affect the security posture and/or functionality of the system. Security-related parameters are those parameters impacting the security state of the system, including the parameters required to satisfy other security control requirements. Security-related parameters include, for example: registry settings; account, file, directory permission settings; and settings for functions, ports, protocols, services, and remote connections.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230297", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230297r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:160", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32941r567638_fix", - "fixtext_fixref": "F-32941r567638_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230297r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230297r627750_rule", - "version": "RHEL-08-010560", - "time": "2021-12-17T10:30:13", - "weight": "10.0", - "severity": "medium", - "cdf:result": "pass", - "cdf:ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-32941r567638_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:160", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:13", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230298", - "title": "The rsyslog service must be running in RHEL 8.", - "desc": "Configuring RHEL 8 to implement organization-wide security implementation guides and security checklists ensures compliance with federal standards and establishes a common security baseline across the DoD that reflects the most restrictive security posture consistent with operational requirements.\n\nConfiguration settings are the set of parameters that can be changed in hardware, software, or firmware components of the system that affect the security posture and/or functionality of the system. Security-related parameters are those parameters impacting the security state of the system, including the parameters required to satisfy other security control requirements. Security-related parameters include, for example: registry settings; account, file, directory permission settings; and settings for functions, ports, protocols, services, and remote connections.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:161", - "label": "check" - }, - { - "data": "Start the auditd service, and enable the rsyslog service with the following commands:\n\n$ sudo systemctl start rsyslog.service\n\n$ sudo systemctl enable rsyslog.service", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Configuring RHEL 8 to implement organization-wide security implementation guides and security checklists ensures compliance with federal standards and establishes a common security baseline across the DoD that reflects the most restrictive security posture consistent with operational requirements.\\n\\nConfiguration settings are the set of parameters that can be changed in hardware, software, or firmware components of the system that affect the security posture and/or functionality of the system. Security-related parameters are those parameters impacting the security state of the system, including the parameters required to satisfy other security control requirements. Security-related parameters include, for example: registry settings; account, file, directory permission settings; and settings for functions, ports, protocols, services, and remote connections.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230298", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230298r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:161", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32942r567641_fix", - "fixtext_fixref": "F-32942r567641_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230298r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230298r627750_rule", - "version": "RHEL-08-010561", - "time": "2021-12-17T10:30:16", - "weight": "10.0", - "severity": "medium", - "cdf:result": "pass", - "cdf:ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-32942r567641_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:161", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:16", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230300", - "title": "RHEL 8 must prevent files with the setuid and setgid bit set from being executed on the /boot directory.", - "desc": "The \"nosuid\" mount option causes the system not to execute \"setuid\" and \"setgid\" files with owner privileges. This option must be used for mounting any file system not containing approved \"setuid\" and \"setguid\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:162", - "label": "check" - }, - { - "data": "Configure the \"/etc/fstab\" to use the \"nosuid\" option on the /boot directory.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"The \\\"nosuid\\\" mount option causes the system not to execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230300", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230300r743959_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:162", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32944r567647_fix", - "fixtext_fixref": "F-32944r567647_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230300r743959_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230300r743959_rule", - "version": "RHEL-08-010571", - "time": "2021-12-17T10:30:19", - "weight": "10.0", - "severity": "medium", - "cdf:result": "pass", - "cdf:ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-32944r567647_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:162", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:19", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230301", - "title": "RHEL 8 must prevent special devices on non-root local partitions.", - "desc": "The \"nodev\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access. The only legitimate location for device files is the /dev directory located on the root partition.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:163", - "label": "check" - }, - { - "data": "Configure the \"/etc/fstab\" to use the \"nodev\" option on all non-root local partitions.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"The \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access. The only legitimate location for device files is the /dev directory located on the root partition.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230301", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230301r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:163", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32945r567650_fix", - "fixtext_fixref": "F-32945r567650_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230301r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230301r627750_rule", - "version": "RHEL-08-010580", - "time": "2021-12-17T10:30:19", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-32945r567650_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:163", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:19", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230306", - "title": "RHEL 8 must prevent code from being executed on file systems that are imported via Network File System (NFS).", - "desc": "The \"noexec\" mount option causes the system not to execute binary files. This option must be used for mounting any file system not containing approved binary as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:165", - "label": "check" - }, - { - "data": "Configure the \"/etc/fstab\" to use the \"noexec\" option on file systems that are being imported via NFS.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"The \\\"noexec\\\" mount option causes the system not to execute binary files. This option must be used for mounting any file system not containing approved binary as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230306", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230306r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:165", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32950r567665_fix", - "fixtext_fixref": "F-32950r567665_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230306r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230306r627750_rule", - "version": "RHEL-08-010630", - "time": "2021-12-17T10:30:21", - "weight": "10.0", - "severity": "medium", - "cdf:result": "pass", - "cdf:ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-32950r567665_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:165", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:21", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230307", - "title": "RHEL 8 must prevent special devices on file systems that are imported via Network File System (NFS).", - "desc": "The \"nodev\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:166", - "label": "check" - }, - { - "data": "Configure the \"/etc/fstab\" to use the \"nodev\" option on file systems that are being imported via NFS.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"The \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230307", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230307r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:166", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32951r567668_fix", - "fixtext_fixref": "F-32951r567668_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230307r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230307r627750_rule", - "version": "RHEL-08-010640", - "time": "2021-12-17T10:30:21", - "weight": "10.0", - "severity": "medium", - "cdf:result": "pass", - "cdf:ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-32951r567668_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:166", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:21", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230308", - "title": "RHEL 8 must prevent files with the setuid and setgid bit set from being executed on file systems that are imported via Network File System (NFS).", - "desc": "The \"nosuid\" mount option causes the system not to execute \"setuid\" and \"setgid\" files with owner privileges. This option must be used for mounting any file system not containing approved \"setuid\" and \"setguid\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:167", - "label": "check" - }, - { - "data": "Configure the \"/etc/fstab\" to use the \"nosuid\" option on file systems that are being imported via NFS.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"The \\\"nosuid\\\" mount option causes the system not to execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230308", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230308r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:167", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32952r567671_fix", - "fixtext_fixref": "F-32952r567671_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230308r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230308r627750_rule", - "version": "RHEL-08-010650", - "time": "2021-12-17T10:30:21", - "weight": "10.0", - "severity": "medium", - "cdf:result": "pass", - "cdf:ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-32952r567671_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:167", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:21", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230311", - "title": "RHEL 8 must disable the kernel.core_pattern.", - "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:168", - "label": "check" - }, - { - "data": "Configure RHEL 8 to disable storing core dumps by adding the following line to a file in the \"/etc/sysctl.d\" directory:\n\nkernel.core_pattern = |/bin/false\n\nThe system configuration files need to be reloaded for the changes to take effect. To reload the contents of the files, run the following command:\n\n$ sudo sysctl --system", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230311", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230311r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:168", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32955r567680_fix", - "fixtext_fixref": "F-32955r567680_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230311r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230311r627750_rule", - "version": "RHEL-08-010671", - "time": "2021-12-17T10:30:21", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-32955r567680_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:168", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:21", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230313", - "title": "RHEL 8 must disable core dumps for all users.", - "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nA core dump includes a memory image taken at the time the operating system terminates an application. The memory image could contain sensitive data and is generally useful only for developers trying to debug problems.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:169", - "label": "check" - }, - { - "data": "Configure the operating system to disable core dumps for all users.\n\nAdd the following line to the top of the /etc/security/limits.conf or in a \".conf\" file defined in /etc/security/limits.d/:\n\n* hard core 0", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nA core dump includes a memory image taken at the time the operating system terminates an application. The memory image could contain sensitive data and is generally useful only for developers trying to debug problems.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230313", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230313r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:169", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32957r619861_fix", - "fixtext_fixref": "F-32957r619861_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230313r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230313r627750_rule", - "version": "RHEL-08-010673", - "time": "2021-12-17T10:30:21", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-32957r619861_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:169", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:21", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230314", - "title": "RHEL 8 must disable storing core dumps.", - "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nA core dump includes a memory image taken at the time the operating system terminates an application. The memory image could contain sensitive data and is generally useful only for developers trying to debug problems.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:170", - "label": "check" - }, - { - "data": "Configure the operating system to disable storing core dumps for all users.\n\nAdd or modify the following line in /etc/systemd/coredump.conf:\n\nStorage=none", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nA core dump includes a memory image taken at the time the operating system terminates an application. The memory image could contain sensitive data and is generally useful only for developers trying to debug problems.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230314", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230314r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:170", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32958r567689_fix", - "fixtext_fixref": "F-32958r567689_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230314r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230314r627750_rule", - "version": "RHEL-08-010674", - "time": "2021-12-17T10:30:21", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-32958r567689_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:170", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:21", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230315", - "title": "RHEL 8 must disable core dump backtraces.", - "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nA core dump includes a memory image taken at the time the operating system terminates an application. The memory image could contain sensitive data and is generally useful only for developers trying to debug problems.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:171", - "label": "check" - }, - { - "data": "Configure the operating system to disable core dump backtraces.\n\nAdd or modify the following line in /etc/systemd/coredump.conf:\n\nProcessSizeMax=0", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nA core dump includes a memory image taken at the time the operating system terminates an application. The memory image could contain sensitive data and is generally useful only for developers trying to debug problems.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230315", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230315r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:171", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32959r567692_fix", - "fixtext_fixref": "F-32959r567692_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230315r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230315r627750_rule", - "version": "RHEL-08-010675", - "time": "2021-12-17T10:30:21", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-32959r567692_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:171", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:21", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230324", - "title": "All RHEL 8 local interactive user accounts must be assigned a home directory upon creation.", - "desc": "If local interactive users are not assigned a valid home directory, there is no place for the storage and control of files they should own.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:177", - "label": "check" - }, - { - "data": "Configure RHEL 8 to assign home directories to all new local interactive users by setting the \"CREATE_HOME\" parameter in \"/etc/login.defs\" to \"yes\" as follows.\n\nCREATE_HOME yes", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"If local interactive users are not assigned a valid home directory, there is no place for the storage and control of files they should own.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230324", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230324r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:177", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32968r567719_fix", - "fixtext_fixref": "F-32968r567719_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230324r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230324r627750_rule", - "version": "RHEL-08-010760", - "time": "2021-12-17T10:30:21", - "weight": "10.0", - "severity": "medium", - "cdf:result": "pass", - "cdf:ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-32968r567719_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:177", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:21", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230330", - "title": "RHEL 8 must not allow users to override SSH environment variables.", - "desc": "SSH environment options potentially allow users to bypass access restriction in some configurations.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:179", - "label": "check" - }, - { - "data": "Configure RHEL 8 to allow the SSH daemon to not allow unattended or automatic logon to the system.\n\nAdd or edit the following line in the \"/etc/ssh/sshd_config\" file:\n\nPermitUserEnvironment no\n\nThe SSH daemon must be restarted for the changes to take effect. To restart the SSH daemon, run the following command:\n\n$ sudo systemctl restart sshd.service", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"SSH environment options potentially allow users to bypass access restriction in some configurations.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230330", - "group_title": "SRG-OS-000480-GPOS-00229", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230330r646870_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:179", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32974r567737_fix", - "fixtext_fixref": "F-32974r567737_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230330r646870_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230330r646870_rule", - "version": "RHEL-08-010830", - "time": "2021-12-17T10:30:21", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-32974r567737_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:179", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:21", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230332", - "title": "RHEL 8 must automatically lock an account when three unsuccessful logon attempts occur.", - "desc": "By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\n\nRHEL 8 can utilize the \"pam_faillock.so\" for this purpose. Note that manual changes to the listed files may be overwritten by the \"authselect\" program.\n\nFrom \"Pam_Faillock\" man pages: Note that the default directory that \"pam_faillock\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \"dir\" option.\n\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:180", - "label": "check" - }, - { - "data": "Configure the operating system to lock an account when three unsuccessful logon attempts occur.\n\nAdd/Modify the appropriate sections of the \"/etc/pam.d/system-auth\" and \"/etc/pam.d/password-auth\" files to match the following lines:\n\nauth required pam_faillock.so preauth dir=/var/log/faillock silent audit deny=3 even_deny_root fail_interval=900 unlock_time=0\nauth required pam_faillock.so authfail dir=/var/log/faillock unlock_time=0\naccount required pam_faillock.so\n\nThe \"sssd\" service must be restarted for the changes to take effect. To restart the \"sssd\" service, run the following command:\n\n$ sudo systemctl restart sssd.service", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000044" - ], - "nist": [ - "AC-7 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\\n\\nRHEL 8 can utilize the \\\"pam_faillock.so\\\" for this purpose. Note that manual changes to the listed files may be overwritten by the \\\"authselect\\\" program.\\n\\nFrom \\\"Pam_Faillock\\\" man pages: Note that the default directory that \\\"pam_faillock\\\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \\\"dir\\\" option.\\n\\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230332", - "group_title": "SRG-OS-000021-GPOS-00005", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230332r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:180", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32976r567743_fix", - "fixtext_fixref": "F-32976r567743_fix", - "ident": { - "text": "CCI-000044", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230332r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230332r627750_rule", - "version": "RHEL-08-020010", - "time": "2021-12-17T10:30:21", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000044", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-32976r567743_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:180", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:21", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230333", - "title": "RHEL 8 must automatically lock an account when three unsuccessful logon attempts occur.", - "desc": "By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\n\nIn RHEL 8.2 the \"/etc/security/faillock.conf\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \"local_users_only\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\n\nFrom \"faillock.conf\" man pages: Note that the default directory that \"pam_faillock\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \"dir\" option.\n\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:181", - "label": "check" - }, - { - "data": "Configure the operating system to lock an account when three unsuccessful logon attempts occur.\n\nAdd/Modify the \"/etc/security/faillock.conf\" file to match the following line:\n\ndeny = 3", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000044" - ], - "nist": [ - "AC-7 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\\n\\nIn RHEL 8.2 the \\\"/etc/security/faillock.conf\\\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \\\"local_users_only\\\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\\n\\nFrom \\\"faillock.conf\\\" man pages: Note that the default directory that \\\"pam_faillock\\\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \\\"dir\\\" option.\\n\\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230333", - "group_title": "SRG-OS-000021-GPOS-00005", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230333r743966_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:181", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32977r743965_fix", - "fixtext_fixref": "F-32977r743965_fix", - "ident": { - "text": "CCI-000044", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230333r743966_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230333r743966_rule", - "version": "RHEL-08-020011", - "time": "2021-12-17T10:30:21", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000044", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-32977r743965_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:181", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:21", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230334", - "title": "RHEL 8 must automatically lock an account when three unsuccessful logon attempts occur during a 15-minute time period.", - "desc": "By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\n\nRHEL 8 can utilize the \"pam_faillock.so\" for this purpose. Note that manual changes to the listed files may be overwritten by the \"authselect\" program.\n\nFrom \"Pam_Faillock\" man pages: Note that the default directory that \"pam_faillock\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \"dir\" option.\n\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:182", - "label": "check" - }, - { - "data": "Configure the operating system to lock an account when three unsuccessful logon attempts occur in 15 minutes.\n\nAdd/Modify the appropriate sections of the \"/etc/pam.d/system-auth\" and \"/etc/pam.d/password-auth\" files to match the following lines:\n\nauth required pam_faillock.so preauth dir=/var/log/faillock silent audit deny=3 even_deny_root fail_interval=900 unlock_time=0\nauth required pam_faillock.so authfail dir=/var/log/faillock unlock_time=0\naccount required pam_faillock.so\n\nThe \"sssd\" service must be restarted for the changes to take effect. To restart the \"sssd\" service, run the following command:\n\n$ sudo systemctl restart sssd.service", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000044" - ], - "nist": [ - "AC-7 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\\n\\nRHEL 8 can utilize the \\\"pam_faillock.so\\\" for this purpose. Note that manual changes to the listed files may be overwritten by the \\\"authselect\\\" program.\\n\\nFrom \\\"Pam_Faillock\\\" man pages: Note that the default directory that \\\"pam_faillock\\\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \\\"dir\\\" option.\\n\\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230334", - "group_title": "SRG-OS-000021-GPOS-00005", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230334r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:182", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32978r567749_fix", - "fixtext_fixref": "F-32978r567749_fix", - "ident": { - "text": "CCI-000044", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230334r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230334r627750_rule", - "version": "RHEL-08-020012", - "time": "2021-12-17T10:30:21", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000044", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-32978r567749_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:182", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:21", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230335", - "title": "RHEL 8 must automatically lock an account when three unsuccessful logon attempts occur during a 15-minute time period.", - "desc": "By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\n\nIn RHEL 8.2 the \"/etc/security/faillock.conf\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \"local_users_only\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\n\nFrom \"faillock.conf\" man pages: Note that the default directory that \"pam_faillock\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \"dir\" option.\n\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:183", - "label": "check" - }, - { - "data": "Configure the operating system to lock an account when three unsuccessful logon attempts occur in 15 minutes.\n\nAdd/Modify the \"/etc/security/faillock.conf\" file to match the following line:\n\nfail_interval = 900", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000044" - ], - "nist": [ - "AC-7 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\\n\\nIn RHEL 8.2 the \\\"/etc/security/faillock.conf\\\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \\\"local_users_only\\\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\\n\\nFrom \\\"faillock.conf\\\" man pages: Note that the default directory that \\\"pam_faillock\\\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \\\"dir\\\" option.\\n\\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230335", - "group_title": "SRG-OS-000021-GPOS-00005", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230335r743969_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:183", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32979r743968_fix", - "fixtext_fixref": "F-32979r743968_fix", - "ident": { - "text": "CCI-000044", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230335r743969_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230335r743969_rule", - "version": "RHEL-08-020013", - "time": "2021-12-17T10:30:21", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000044", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-32979r743968_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:183", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:21", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230336", - "title": "RHEL 8 must automatically lock an account until the locked account is released by an administrator when three unsuccessful logon attempts occur during a 15-minute time period.", - "desc": "By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\n\nRHEL 8 can utilize the \"pam_faillock.so\" for this purpose. Note that manual changes to the listed files may be overwritten by the \"authselect\" program.\n\nFrom \"Pam_Faillock\" man pages: Note that the default directory that \"pam_faillock\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \"dir\" option.\n\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:184", - "label": "check" - }, - { - "data": "Configure the operating system to lock an account until released by an administrator when three unsuccessful logon attempts occur in 15 minutes.\n\nAdd/Modify the appropriate sections of the \"/etc/pam.d/system-auth\" and \"/etc/pam.d/password-auth\" files to match the following lines:\n\nauth required pam_faillock.so preauth dir=/var/log/faillock silent audit deny=3 even_deny_root fail_interval=900 unlock_time=0\nauth required pam_faillock.so authfail dir=/var/log/faillock unlock_time=0\naccount required pam_faillock.so\n\nThe \"sssd\" service must be restarted for the changes to take effect. To restart the \"sssd\" service, run the following command:\n\n$ sudo systemctl restart sssd.service", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000044" - ], - "nist": [ - "AC-7 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\\n\\nRHEL 8 can utilize the \\\"pam_faillock.so\\\" for this purpose. Note that manual changes to the listed files may be overwritten by the \\\"authselect\\\" program.\\n\\nFrom \\\"Pam_Faillock\\\" man pages: Note that the default directory that \\\"pam_faillock\\\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \\\"dir\\\" option.\\n\\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230336", - "group_title": "SRG-OS-000021-GPOS-00005", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230336r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:184", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32980r567755_fix", - "fixtext_fixref": "F-32980r567755_fix", - "ident": { - "text": "CCI-000044", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230336r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230336r627750_rule", - "version": "RHEL-08-020014", - "time": "2021-12-17T10:30:21", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000044", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-32980r567755_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:184", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:21", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230337", - "title": "RHEL 8 must automatically lock an account until the locked account is released by an administrator when three unsuccessful logon attempts occur during a 15-minute time period.", - "desc": "By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\n\nIn RHEL 8.2 the \"/etc/security/faillock.conf\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \"local_users_only\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\n\nFrom \"faillock.conf\" man pages: Note that the default directory that \"pam_faillock\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \"dir\" option.\n\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:185", - "label": "check" - }, - { - "data": "Configure the operating system to lock an account until released by an administrator when three unsuccessful logon attempts occur in 15 minutes.\n\nAdd/Modify the \"/etc/security/faillock.conf\" file to match the following line:\n\nunlock_time = 0", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000044" - ], - "nist": [ - "AC-7 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\\n\\nIn RHEL 8.2 the \\\"/etc/security/faillock.conf\\\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \\\"local_users_only\\\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\\n\\nFrom \\\"faillock.conf\\\" man pages: Note that the default directory that \\\"pam_faillock\\\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \\\"dir\\\" option.\\n\\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230337", - "group_title": "SRG-OS-000021-GPOS-00005", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230337r743972_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:185", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32981r743971_fix", - "fixtext_fixref": "F-32981r743971_fix", - "ident": { - "text": "CCI-000044", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230337r743972_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230337r743972_rule", - "version": "RHEL-08-020015", - "time": "2021-12-17T10:30:22", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000044", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-32981r743971_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:185", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:22", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230340", - "title": "RHEL 8 must prevent system messages from being presented when three unsuccessful logon attempts occur.", - "desc": "By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\n\nRHEL 8 can utilize the \"pam_faillock.so\" for this purpose. Note that manual changes to the listed files may be overwritten by the \"authselect\" program.\n\nFrom \"Pam_Faillock\" man pages: Note that the default directory that \"pam_faillock\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \"dir\" option.\n\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:186", - "label": "check" - }, - { - "data": "Configure the operating system to prevent informative messages from being presented at logon attempts.\n\nAdd/Modify the appropriate sections of the \"/etc/pam.d/system-auth\" and \"/etc/pam.d/password-auth\" files to match the following lines:\n\nauth required pam_faillock.so preauth dir=/var/log/faillock silent audit deny=3 even_deny_root fail_interval=900 unlock_time=0\nauth required pam_faillock.so authfail dir=/var/log/faillock unlock_time=0\naccount required pam_faillock.so\n\nThe \"sssd\" service must be restarted for the changes to take effect. To restart the \"sssd\" service, run the following command:\n\n$ sudo systemctl restart sssd.service", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000044" - ], - "nist": [ - "AC-7 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\\n\\nRHEL 8 can utilize the \\\"pam_faillock.so\\\" for this purpose. Note that manual changes to the listed files may be overwritten by the \\\"authselect\\\" program.\\n\\nFrom \\\"Pam_Faillock\\\" man pages: Note that the default directory that \\\"pam_faillock\\\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \\\"dir\\\" option.\\n\\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230340", - "group_title": "SRG-OS-000021-GPOS-00005", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230340r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:186", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32984r567767_fix", - "fixtext_fixref": "F-32984r567767_fix", - "ident": { - "text": "CCI-000044", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230340r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230340r627750_rule", - "version": "RHEL-08-020018", - "time": "2021-12-17T10:30:22", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000044", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-32984r567767_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:186", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:22", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230341", - "title": "RHEL 8 must prevent system messages from being presented when three unsuccessful logon attempts occur.", - "desc": "By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\n\nIn RHEL 8.2 the \"/etc/security/faillock.conf\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \"local_users_only\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\n\nFrom \"faillock.conf\" man pages: Note that the default directory that \"pam_faillock\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \"dir\" option.\n\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:187", - "label": "check" - }, - { - "data": "Configure the operating system to prevent informative messages from being presented at logon attempts.\n\nAdd/Modify the \"/etc/security/faillock.conf\" file to match the following line:\n\nsilent", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000044" - ], - "nist": [ - "AC-7 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\\n\\nIn RHEL 8.2 the \\\"/etc/security/faillock.conf\\\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \\\"local_users_only\\\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\\n\\nFrom \\\"faillock.conf\\\" man pages: Note that the default directory that \\\"pam_faillock\\\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \\\"dir\\\" option.\\n\\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230341", - "group_title": "SRG-OS-000021-GPOS-00005", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230341r743978_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:187", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32985r743977_fix", - "fixtext_fixref": "F-32985r743977_fix", - "ident": { - "text": "CCI-000044", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230341r743978_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230341r743978_rule", - "version": "RHEL-08-020019", - "time": "2021-12-17T10:30:22", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000044", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-32985r743977_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:187", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:22", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230342", - "title": "RHEL 8 must log user name information when unsuccessful logon attempts occur.", - "desc": "By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\n\nRHEL 8 can utilize the \"pam_faillock.so\" for this purpose. Note that manual changes to the listed files may be overwritten by the \"authselect\" program.\n\nFrom \"Pam_Faillock\" man pages: Note that the default directory that \"pam_faillock\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \"dir\" option.\n\nIn RHEL 8.2 the \"/etc/security/faillock.conf\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \"local_users_only\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\n\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:188", - "label": "check" - }, - { - "data": "Configure the operating system to log user name information when unsuccessful logon attempts occur.\n\nAdd/Modify the appropriate sections of the \"/etc/pam.d/system-auth\" and \"/etc/pam.d/password-auth\" files to match the following lines:\n\nauth required pam_faillock.so preauth dir=/var/log/faillock silent audit deny=3 even_deny_root fail_interval=900 unlock_time=0\nauth required pam_faillock.so authfail dir=/var/log/faillock unlock_time=0\naccount required pam_faillock.so\n\nThe \"sssd\" service must be restarted for the changes to take effect. To restart the \"sssd\" service, run the following command:\n\n$ sudo systemctl restart sssd.service", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000044" - ], - "nist": [ - "AC-7 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\\n\\nRHEL 8 can utilize the \\\"pam_faillock.so\\\" for this purpose. Note that manual changes to the listed files may be overwritten by the \\\"authselect\\\" program.\\n\\nFrom \\\"Pam_Faillock\\\" man pages: Note that the default directory that \\\"pam_faillock\\\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \\\"dir\\\" option.\\n\\nIn RHEL 8.2 the \\\"/etc/security/faillock.conf\\\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \\\"local_users_only\\\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\\n\\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230342", - "group_title": "SRG-OS-000021-GPOS-00005", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230342r646872_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:188", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32986r567773_fix", - "fixtext_fixref": "F-32986r567773_fix", - "ident": { - "text": "CCI-000044", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230342r646872_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230342r646872_rule", - "version": "RHEL-08-020020", - "time": "2021-12-17T10:30:22", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000044", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-32986r567773_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:188", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:22", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230343", - "title": "RHEL 8 must log user name information when unsuccessful logon attempts occur.", - "desc": "By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\n\nIn RHEL 8.2 the \"/etc/security/faillock.conf\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \"local_users_only\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\n\nFrom \"faillock.conf\" man pages: Note that the default directory that \"pam_faillock\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \"dir\" option.\n\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:189", - "label": "check" - }, - { - "data": "Configure the operating system to log user name information when unsuccessful logon attempts occur.\n\nAdd/Modify the \"/etc/security/faillock.conf\" file to match the following line:\n\naudit", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000044" - ], - "nist": [ - "AC-7 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\\n\\nIn RHEL 8.2 the \\\"/etc/security/faillock.conf\\\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \\\"local_users_only\\\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\\n\\nFrom \\\"faillock.conf\\\" man pages: Note that the default directory that \\\"pam_faillock\\\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \\\"dir\\\" option.\\n\\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230343", - "group_title": "SRG-OS-000021-GPOS-00005", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230343r743981_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:189", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32987r743980_fix", - "fixtext_fixref": "F-32987r743980_fix", - "ident": { - "text": "CCI-000044", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230343r743981_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230343r743981_rule", - "version": "RHEL-08-020021", - "time": "2021-12-17T10:30:22", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000044", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-32987r743980_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:189", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:22", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230344", - "title": "RHEL 8 must include root when automatically locking an account until the locked account is released by an administrator when three unsuccessful logon attempts occur during a 15-minute time period.", - "desc": "By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\n\nRHEL 8 can utilize the \"pam_faillock.so\" for this purpose. Note that manual changes to the listed files may be overwritten by the \"authselect\" program.\n\nFrom \"Pam_Faillock\" man pages: Note that the default directory that \"pam_faillock\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \"dir\" option.\n\nIn RHEL 8.2 the \"/etc/security/faillock.conf\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \"local_users_only\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\n\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:190", - "label": "check" - }, - { - "data": "Configure the operating system to include root when locking an account after three unsuccessful logon attempts occur in 15 minutes.\n\nAdd/Modify the appropriate sections of the \"/etc/pam.d/system-auth\" and \"/etc/pam.d/password-auth\" files to match the following lines:\n\nauth required pam_faillock.so preauth dir=/var/log/faillock silent audit deny=3 even_deny_root fail_interval=900 unlock_time=0\nauth required pam_faillock.so authfail dir=/var/log/faillock unlock_time=0\naccount required pam_faillock.so\n\nThe \"sssd\" service must be restarted for the changes to take effect. To restart the \"sssd\" service, run the following command:\n\n$ sudo systemctl restart sssd.service", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000044" - ], - "nist": [ - "AC-7 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\\n\\nRHEL 8 can utilize the \\\"pam_faillock.so\\\" for this purpose. Note that manual changes to the listed files may be overwritten by the \\\"authselect\\\" program.\\n\\nFrom \\\"Pam_Faillock\\\" man pages: Note that the default directory that \\\"pam_faillock\\\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \\\"dir\\\" option.\\n\\nIn RHEL 8.2 the \\\"/etc/security/faillock.conf\\\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \\\"local_users_only\\\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\\n\\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230344", - "group_title": "SRG-OS-000021-GPOS-00005", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230344r646874_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:190", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32988r567779_fix", - "fixtext_fixref": "F-32988r567779_fix", - "ident": { - "text": "CCI-000044", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230344r646874_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230344r646874_rule", - "version": "RHEL-08-020022", - "time": "2021-12-17T10:30:22", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000044", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-32988r567779_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:190", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:22", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230345", - "title": "RHEL 8 must include root when automatically locking an account until the locked account is released by an administrator when three unsuccessful logon attempts occur during a 15-minute time period.", - "desc": "By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\n\nIn RHEL 8.2 the \"/etc/security/faillock.conf\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \"local_users_only\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\n\nFrom \"faillock.conf\" man pages: Note that the default directory that \"pam_faillock\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \"dir\" option.\n\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:191", - "label": "check" - }, - { - "data": "Configure the operating system to include root when locking an account after three unsuccessful logon attempts occur in 15 minutes.\n\nAdd/Modify the \"/etc/security/faillock.conf\" file to match the following line:\n\neven_deny_root", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000044" - ], - "nist": [ - "AC-7 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\\n\\nIn RHEL 8.2 the \\\"/etc/security/faillock.conf\\\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \\\"local_users_only\\\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\\n\\nFrom \\\"faillock.conf\\\" man pages: Note that the default directory that \\\"pam_faillock\\\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \\\"dir\\\" option.\\n\\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230345", - "group_title": "SRG-OS-000021-GPOS-00005", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230345r743984_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:191", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32989r743983_fix", - "fixtext_fixref": "F-32989r743983_fix", - "ident": { - "text": "CCI-000044", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230345r743984_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230345r743984_rule", - "version": "RHEL-08-020023", - "time": "2021-12-17T10:30:22", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000044", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-32989r743983_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:191", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:22", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230346", - "title": "RHEL 8 must limit the number of concurrent sessions to ten for all accounts and/or account types.", - "desc": "Operating system management includes the ability to control the number of users and user sessions that utilize an operating system. Limiting the number of allowed users and sessions per user is helpful in reducing the risks related to DoS attacks.\n\nThis requirement addresses concurrent sessions for information system accounts and does not address concurrent sessions by single users via multiple system accounts. The maximum number of concurrent sessions should be defined based on mission needs and the operational environment for each system.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:192", - "label": "check" - }, - { - "data": "Configure the operating system to limit the number of concurrent sessions to \"10\" for all accounts and/or account types.\n\nAdd the following line to the top of the /etc/security/limits.conf or in a \".conf\" file defined in /etc/security/limits.d/:\n\n* hard maxlogins 10", - "label": "fix" - } - ], - "impact": 0.3, - "refs": [], - "tags": { - "cci": [ - "CCI-000054" - ], - "nist": [ - "AC-10" - ], - "severity": "low", - "description": "{\"VulnDiscussion\":\"Operating system management includes the ability to control the number of users and user sessions that utilize an operating system. Limiting the number of allowed users and sessions per user is helpful in reducing the risks related to DoS attacks.\\n\\nThis requirement addresses concurrent sessions for information system accounts and does not address concurrent sessions by single users via multiple system accounts. The maximum number of concurrent sessions should be defined based on mission needs and the operational environment for each system.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230346", - "group_title": "SRG-OS-000027-GPOS-00008", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230346r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:192", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32990r619863_fix", - "fixtext_fixref": "F-32990r619863_fix", - "ident": { - "text": "CCI-000054", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230346r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230346r627750_rule", - "version": "RHEL-08-020024", - "time": "2021-12-17T10:30:22", - "weight": "10.0", - "severity": "low", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000054", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-32990r619863_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:192", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:22", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230348", - "title": "RHEL 8 must enable a user session lock until that user re-establishes access using established identification and authentication procedures for command line sessions.", - "desc": "A session lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not want to log out because of the temporary nature of the absence.\n\nThe session lock is implemented at the point where session activity can be determined. Rather than be forced to wait for a period of time to expire before the user session can be locked, RHEL 8 needs to provide users with the ability to manually invoke a session lock so users can secure their session if it is necessary to temporarily vacate the immediate physical vicinity.\n\nTmux is a terminal multiplexer that enables a number of terminals to be created, accessed, and controlled from a single screen. Red Hat endorses tmux as the recommended session controlling package.\n\nSatisfies: SRG-OS-000028-GPOS-00009, SRG-OS-000030-GPOS-00011", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:193", - "label": "check" - }, - { - "data": "Configure the operating system to enable a user to initiate a session lock via tmux.\n\nCreate a global configuration file \"/etc/tmux.conf\" and add the following line:\n\nset -g lock-command vlock", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000056" - ], - "nist": [ - "AC-11 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"A session lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not want to log out because of the temporary nature of the absence.\\n\\nThe session lock is implemented at the point where session activity can be determined. Rather than be forced to wait for a period of time to expire before the user session can be locked, RHEL 8 needs to provide users with the ability to manually invoke a session lock so users can secure their session if it is necessary to temporarily vacate the immediate physical vicinity.\\n\\nTmux is a terminal multiplexer that enables a number of terminals to be created, accessed, and controlled from a single screen. Red Hat endorses tmux as the recommended session controlling package.\\n\\nSatisfies: SRG-OS-000028-GPOS-00009, SRG-OS-000030-GPOS-00011\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230348", - "group_title": "SRG-OS-000028-GPOS-00009", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230348r743987_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:193", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32992r743986_fix", - "fixtext_fixref": "F-32992r743986_fix", - "ident": { - "text": "CCI-000056", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230348r743987_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230348r743987_rule", - "version": "RHEL-08-020040", - "time": "2021-12-17T10:30:22", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000056", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-32992r743986_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:193", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:22", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230349", - "title": "RHEL 8 must ensure session control is automatically started at shell initialization.", - "desc": "A session lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not want to log out because of the temporary nature of the absence.\n\nThe session lock is implemented at the point where session activity can be determined. Rather than be forced to wait for a period of time to expire before the user session can be locked, RHEL 8 needs to provide users with the ability to manually invoke a session lock so users can secure their session if it is necessary to temporarily vacate the immediate physical vicinity.\n\nTmux is a terminal multiplexer that enables a number of terminals to be created, accessed, and controlled from a single screen. Red Hat endorses tmux as the recommended session controlling package.\n\nSatisfies: SRG-OS-000028-GPOS-00009, SRG-OS-000030-GPOS-00011", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:194", - "label": "check" - }, - { - "data": "Configure the operating system to initialize the tmux terminal multiplexer as each shell is called by adding the following line to the end of the \"/etc/bashrc\" configuration file:\n\n[ -n \"$PS1\" -a -z \"$TMUX\" ] && exec tmux\n\nThis setting will take effect at next logon.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000056" - ], - "nist": [ - "AC-11 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"A session lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not want to log out because of the temporary nature of the absence.\\n\\nThe session lock is implemented at the point where session activity can be determined. Rather than be forced to wait for a period of time to expire before the user session can be locked, RHEL 8 needs to provide users with the ability to manually invoke a session lock so users can secure their session if it is necessary to temporarily vacate the immediate physical vicinity.\\n\\nTmux is a terminal multiplexer that enables a number of terminals to be created, accessed, and controlled from a single screen. Red Hat endorses tmux as the recommended session controlling package.\\n\\nSatisfies: SRG-OS-000028-GPOS-00009, SRG-OS-000030-GPOS-00011\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230349", - "group_title": "SRG-OS-000028-GPOS-00009", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230349r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:194", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32993r567794_fix", - "fixtext_fixref": "F-32993r567794_fix", - "ident": { - "text": "CCI-000056", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230349r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230349r627750_rule", - "version": "RHEL-08-020041", - "time": "2021-12-17T10:30:22", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000056", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-32993r567794_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:194", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:22", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230350", - "title": "RHEL 8 must prevent users from disabling session control mechanisms.", - "desc": "A session lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not want to log out because of the temporary nature of the absence.\n\nThe session lock is implemented at the point where session activity can be determined. Rather than be forced to wait for a period of time to expire before the user session can be locked, RHEL 8 needs to provide users with the ability to manually invoke a session lock so users can secure their session if it is necessary to temporarily vacate the immediate physical vicinity.\n\nTmux is a terminal multiplexer that enables a number of terminals to be created, accessed, and controlled from a single screen. Red Hat endorses tmux as the recommended session controlling package.\n\nSatisfies: SRG-OS-000028-GPOS-00009, SRG-OS-000030-GPOS-00011", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:195", - "label": "check" - }, - { - "data": "Configure the operating system to prevent users from disabling the tmux terminal multiplexer by editing the \"/etc/shells\" configuration file to remove any instances of tmux.", - "label": "fix" - } - ], - "impact": 0.3, - "refs": [], - "tags": { - "cci": [ - "CCI-000056" - ], - "nist": [ - "AC-11 b" - ], - "severity": "low", - "description": "{\"VulnDiscussion\":\"A session lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not want to log out because of the temporary nature of the absence.\\n\\nThe session lock is implemented at the point where session activity can be determined. Rather than be forced to wait for a period of time to expire before the user session can be locked, RHEL 8 needs to provide users with the ability to manually invoke a session lock so users can secure their session if it is necessary to temporarily vacate the immediate physical vicinity.\\n\\nTmux is a terminal multiplexer that enables a number of terminals to be created, accessed, and controlled from a single screen. Red Hat endorses tmux as the recommended session controlling package.\\n\\nSatisfies: SRG-OS-000028-GPOS-00009, SRG-OS-000030-GPOS-00011\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230350", - "group_title": "SRG-OS-000028-GPOS-00009", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230350r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:195", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-32994r567797_fix", - "fixtext_fixref": "F-32994r567797_fix", - "ident": { - "text": "CCI-000056", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230350r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230350r627750_rule", - "version": "RHEL-08-020042", - "time": "2021-12-17T10:30:22", - "weight": "10.0", - "severity": "low", - "cdf:result": "pass", - "cdf:ident": { - "text": "CCI-000056", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-32994r567797_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:195", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:22", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230356", - "title": "RHEL 8 must ensure a password complexity module is enabled.", - "desc": "Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. \"pwquality\" enforces complex password construction configuration and has the ability to limit brute-force attacks on the system.\n\nRHEL 8 utilizes \"pwquality\" as a mechanism to enforce password complexity. This is set in both:\n/etc/pam.d/password-auth\n/etc/pam.d/system-auth\n\nNote the value of \"retry\" set in these configuration files should be between \"1\" and \"3\". Manual changes to the listed files may be overwritten by the \"authselect\" program.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:196", - "label": "check" - }, - { - "data": "Configure the operating system to use \"pwquality\" to enforce password complexity rules.\n\nAdd the following line to both \"/etc/pam.d/password-auth\" and \"/etc/pam.d/system-auth\" (or modify the line to have the required value):\n\npassword required pam_pwquality.so retry=3", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000192" - ], - "nist": [ - "IA-5 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. \\\"pwquality\\\" enforces complex password construction configuration and has the ability to limit brute-force attacks on the system.\\n\\nRHEL 8 utilizes \\\"pwquality\\\" as a mechanism to enforce password complexity. This is set in both:\\n/etc/pam.d/password-auth\\n/etc/pam.d/system-auth\\n\\nNote the value of \\\"retry\\\" set in these configuration files should be between \\\"1\\\" and \\\"3\\\". Manual changes to the listed files may be overwritten by the \\\"authselect\\\" program.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230356", - "group_title": "SRG-OS-000069-GPOS-00037", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230356r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:196", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33000r567815_fix", - "fixtext_fixref": "F-33000r567815_fix", - "ident": { - "text": "CCI-000192", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230356r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230356r627750_rule", - "version": "RHEL-08-020100", - "time": "2021-12-17T10:30:22", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000192", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33000r567815_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:196", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:22", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230357", - "title": "RHEL 8 must enforce password complexity by requiring that at least one uppercase character be used.", - "desc": "Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\n\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\n\nRHEL 8 utilizes pwquality as a mechanism to enforce password complexity. Note that in order to require uppercase characters, without degrading the \"minlen\" value, the credit value must be expressed as a negative number in \"/etc/security/pwquality.conf\".", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:197", - "label": "check" - }, - { - "data": "Configure the operating system to enforce password complexity by requiring that at least one uppercase character be used by setting the \"ucredit\" option.\n\nAdd the following line to /etc/security/pwquality.conf (or modify the line to have the required value):\n\nucredit = -1", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000192" - ], - "nist": [ - "IA-5 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\\n\\nRHEL 8 utilizes pwquality as a mechanism to enforce password complexity. Note that in order to require uppercase characters, without degrading the \\\"minlen\\\" value, the credit value must be expressed as a negative number in \\\"/etc/security/pwquality.conf\\\".\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230357", - "group_title": "SRG-OS-000069-GPOS-00037", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230357r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:197", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33001r567818_fix", - "fixtext_fixref": "F-33001r567818_fix", - "ident": { - "text": "CCI-000192", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230357r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230357r627750_rule", - "version": "RHEL-08-020110", - "time": "2021-12-17T10:30:22", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000192", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33001r567818_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:197", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:22", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230358", - "title": "RHEL 8 must enforce password complexity by requiring that at least one lower-case character be used.", - "desc": "Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\n\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\n\nRHEL 8 utilizes pwquality as a mechanism to enforce password complexity. Note that in order to require lower-case characters without degrading the \"minlen\" value, the credit value must be expressed as a negative number in \"/etc/security/pwquality.conf\".", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:198", - "label": "check" - }, - { - "data": "Configure the operating system to enforce password complexity by requiring that at least one lower-case character be used by setting the \"lcredit\" option.\n\nAdd the following line to /etc/security/pwquality.conf (or modify the line to have the required value):\n\nlcredit = -1", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000193" - ], - "nist": [ - "IA-5 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\\n\\nRHEL 8 utilizes pwquality as a mechanism to enforce password complexity. Note that in order to require lower-case characters without degrading the \\\"minlen\\\" value, the credit value must be expressed as a negative number in \\\"/etc/security/pwquality.conf\\\".\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230358", - "group_title": "SRG-OS-000070-GPOS-00038", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230358r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:198", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33002r567821_fix", - "fixtext_fixref": "F-33002r567821_fix", - "ident": { - "text": "CCI-000193", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230358r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230358r627750_rule", - "version": "RHEL-08-020120", - "time": "2021-12-17T10:30:22", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000193", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33002r567821_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:198", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:22", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230359", - "title": "RHEL 8 must enforce password complexity by requiring that at least one numeric character be used.", - "desc": "Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\n\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\n\nRHEL 8 utilizes \"pwquality\" as a mechanism to enforce password complexity. Note that in order to require numeric characters, without degrading the minlen value, the credit value must be expressed as a negative number in \"/etc/security/pwquality.conf\".", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:199", - "label": "check" - }, - { - "data": "Configure the operating system to enforce password complexity by requiring that at least one numeric character be used by setting the \"dcredit\" option.\n\nAdd the following line to /etc/security/pwquality.conf (or modify the line to have the required value):\n\ndcredit = -1", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000194" - ], - "nist": [ - "IA-5 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\\n\\nRHEL 8 utilizes \\\"pwquality\\\" as a mechanism to enforce password complexity. Note that in order to require numeric characters, without degrading the minlen value, the credit value must be expressed as a negative number in \\\"/etc/security/pwquality.conf\\\".\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230359", - "group_title": "SRG-OS-000071-GPOS-00039", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230359r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:199", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33003r567824_fix", - "fixtext_fixref": "F-33003r567824_fix", - "ident": { - "text": "CCI-000194", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230359r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230359r627750_rule", - "version": "RHEL-08-020130", - "time": "2021-12-17T10:30:22", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000194", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33003r567824_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:199", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:22", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230360", - "title": "RHEL 8 must require the maximum number of repeating characters of the same character class be limited to four when passwords are changed.", - "desc": "Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\n\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\n\nRHEL 8 utilizes \"pwquality\" as a mechanism to enforce password complexity. The \"maxclassrepeat\" option sets the maximum number of allowed same consecutive characters in the same class in the new password.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:200", - "label": "check" - }, - { - "data": "Configure the operating system to require the change of the number of repeating characters of the same character class when passwords are changed by setting the \"maxclassrepeat\" option.\n\nAdd the following line to \"/etc/security/pwquality.conf\" conf (or modify the line to have the required value):\n\nmaxclassrepeat = 4", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000195" - ], - "nist": [ - "IA-5 (1) (b)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\\n\\nRHEL 8 utilizes \\\"pwquality\\\" as a mechanism to enforce password complexity. The \\\"maxclassrepeat\\\" option sets the maximum number of allowed same consecutive characters in the same class in the new password.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230360", - "group_title": "SRG-OS-000072-GPOS-00040", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230360r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:200", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33004r567827_fix", - "fixtext_fixref": "F-33004r567827_fix", - "ident": { - "text": "CCI-000195", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230360r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230360r627750_rule", - "version": "RHEL-08-020140", - "time": "2021-12-17T10:30:22", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000195", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33004r567827_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:200", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:22", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230361", - "title": "RHEL 8 must require the maximum number of repeating characters be limited to three when passwords are changed.", - "desc": "Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\n\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\n\nRHEL 8 utilizes \"pwquality\" as a mechanism to enforce password complexity. The \"maxrepeat\" option sets the maximum number of allowed same consecutive characters in a new password.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:201", - "label": "check" - }, - { - "data": "Configure the operating system to require the change of the number of repeating consecutive characters when passwords are changed by setting the \"maxrepeat\" option.\n\nAdd the following line to \"/etc/security/pwquality.conf conf\" (or modify the line to have the required value):\n\nmaxrepeat = 3", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000195" - ], - "nist": [ - "IA-5 (1) (b)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\\n\\nRHEL 8 utilizes \\\"pwquality\\\" as a mechanism to enforce password complexity. The \\\"maxrepeat\\\" option sets the maximum number of allowed same consecutive characters in a new password.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230361", - "group_title": "SRG-OS-000072-GPOS-00040", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230361r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:201", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33005r567830_fix", - "fixtext_fixref": "F-33005r567830_fix", - "ident": { - "text": "CCI-000195", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230361r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230361r627750_rule", - "version": "RHEL-08-020150", - "time": "2021-12-17T10:30:22", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000195", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33005r567830_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:201", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:22", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230362", - "title": "RHEL 8 must require the change of at least four character classes when passwords are changed.", - "desc": "Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\n\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\n\nRHEL 8 utilizes \"pwquality\" as a mechanism to enforce password complexity. The \"minclass\" option sets the minimum number of required classes of characters for the new password (digits, uppercase, lowercase, others).", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:202", - "label": "check" - }, - { - "data": "Configure the operating system to require the change of at least four character classes when passwords are changed by setting the \"minclass\" option.\n\nAdd the following line to \"/etc/security/pwquality.conf conf\" (or modify the line to have the required value):\n\nminclass = 4", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000195" - ], - "nist": [ - "IA-5 (1) (b)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\\n\\nRHEL 8 utilizes \\\"pwquality\\\" as a mechanism to enforce password complexity. The \\\"minclass\\\" option sets the minimum number of required classes of characters for the new password (digits, uppercase, lowercase, others).\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230362", - "group_title": "SRG-OS-000072-GPOS-00040", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230362r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:202", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33006r567833_fix", - "fixtext_fixref": "F-33006r567833_fix", - "ident": { - "text": "CCI-000195", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230362r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230362r627750_rule", - "version": "RHEL-08-020160", - "time": "2021-12-17T10:30:22", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000195", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33006r567833_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:202", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:22", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230363", - "title": "RHEL 8 must require the change of at least 8 characters when passwords are changed.", - "desc": "Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\n\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\n\nRHEL 8 utilizes \"pwquality\" as a mechanism to enforce password complexity. The \"difok\" option sets the number of characters in a password that must not be present in the old password.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:203", - "label": "check" - }, - { - "data": "Configure the operating system to require the change of at least eight of the total number of characters when passwords are changed by setting the \"difok\" option.\n\nAdd the following line to \"/etc/security/pwquality.conf\" (or modify the line to have the required value):\n\ndifok = 8", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000195" - ], - "nist": [ - "IA-5 (1) (b)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\\n\\nRHEL 8 utilizes \\\"pwquality\\\" as a mechanism to enforce password complexity. The \\\"difok\\\" option sets the number of characters in a password that must not be present in the old password.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230363", - "group_title": "SRG-OS-000072-GPOS-00040", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230363r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:203", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33007r567836_fix", - "fixtext_fixref": "F-33007r567836_fix", - "ident": { - "text": "CCI-000195", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230363r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230363r627750_rule", - "version": "RHEL-08-020170", - "time": "2021-12-17T10:30:22", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000195", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33007r567836_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:203", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:22", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230364", - "title": "RHEL 8 passwords must have a 24 hours/1 day minimum password lifetime restriction in /etc/shadow.", - "desc": "Enforcing a minimum password lifetime helps to prevent repeated password changes to defeat the password reuse or history enforcement requirement. If users are allowed to immediately and continually change their password, the password could be repeatedly changed in a short period of time to defeat the organization's policy regarding password reuse.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:204", - "label": "check" - }, - { - "data": "Configure non-compliant accounts to enforce a 24 hours/1 day minimum password lifetime:\n\n$ sudo chage -m 1 [user]", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000198" - ], - "nist": [ - "IA-5 (1) (d)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Enforcing a minimum password lifetime helps to prevent repeated password changes to defeat the password reuse or history enforcement requirement. If users are allowed to immediately and continually change their password, the password could be repeatedly changed in a short period of time to defeat the organization's policy regarding password reuse.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230364", - "group_title": "SRG-OS-000075-GPOS-00043", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230364r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:204", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33008r567839_fix", - "fixtext_fixref": "F-33008r567839_fix", - "ident": { - "text": "CCI-000198", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230364r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230364r627750_rule", - "version": "RHEL-08-020180", - "time": "2021-12-17T10:30:22", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000198", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33008r567839_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:204", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:22", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230365", - "title": "RHEL 8 passwords for new users or password changes must have a 24 hours/1 day minimum password lifetime restriction in /etc/logins.def.", - "desc": "Enforcing a minimum password lifetime helps to prevent repeated password changes to defeat the password reuse or history enforcement requirement. If users are allowed to immediately and continually change their password, the password could be repeatedly changed in a short period of time to defeat the organization's policy regarding password reuse.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:205", - "label": "check" - }, - { - "data": "Configure the operating system to enforce 24 hours/1 day as the minimum password lifetime.\n\nAdd the following line in \"/etc/login.defs\" (or modify the line to have the required value):\n\nPASS_MIN_DAYS 1", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000198" - ], - "nist": [ - "IA-5 (1) (d)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Enforcing a minimum password lifetime helps to prevent repeated password changes to defeat the password reuse or history enforcement requirement. If users are allowed to immediately and continually change their password, the password could be repeatedly changed in a short period of time to defeat the organization's policy regarding password reuse.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230365", - "group_title": "SRG-OS-000075-GPOS-00043", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230365r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:205", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33009r567842_fix", - "fixtext_fixref": "F-33009r567842_fix", - "ident": { - "text": "CCI-000198", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230365r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230365r627750_rule", - "version": "RHEL-08-020190", - "time": "2021-12-17T10:30:23", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000198", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33009r567842_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:205", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:23", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230366", - "title": "RHEL 8 user account passwords must have a 60-day maximum password lifetime restriction.", - "desc": "Any password, no matter how complex, can eventually be cracked. Therefore, passwords need to be changed periodically. If RHEL 8 does not limit the lifetime of passwords and force users to change their passwords, there is the risk that RHEL 8 passwords could be compromised.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:206", - "label": "check" - }, - { - "data": "Configure RHEL 8 to enforce a 60-day maximum password lifetime.\n\nAdd, or modify the following line in the \"/etc/login.defs\" file:\n\nPASS_MAX_DAYS 60", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000199" - ], - "nist": [ - "IA-5 (1) (d)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Any password, no matter how complex, can eventually be cracked. Therefore, passwords need to be changed periodically. If RHEL 8 does not limit the lifetime of passwords and force users to change their passwords, there is the risk that RHEL 8 passwords could be compromised.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230366", - "group_title": "SRG-OS-000076-GPOS-00044", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230366r646878_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:206", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33010r567845_fix", - "fixtext_fixref": "F-33010r567845_fix", - "ident": { - "text": "CCI-000199", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230366r646878_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230366r646878_rule", - "version": "RHEL-08-020200", - "time": "2021-12-17T10:30:23", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000199", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33010r567845_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:206", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:23", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230367", - "title": "RHEL 8 user account passwords must be configured so that existing passwords are restricted to a 60-day maximum lifetime.", - "desc": "Any password, no matter how complex, can eventually be cracked. Therefore, passwords need to be changed periodically. If RHEL 8 does not limit the lifetime of passwords and force users to change their passwords, there is the risk that RHEL 8 passwords could be compromised.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:207", - "label": "check" - }, - { - "data": "Configure non-compliant accounts to enforce a 60-day maximum password lifetime restriction.\n\n$ sudo chage -M 60 [user]", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000199" - ], - "nist": [ - "IA-5 (1) (d)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Any password, no matter how complex, can eventually be cracked. Therefore, passwords need to be changed periodically. If RHEL 8 does not limit the lifetime of passwords and force users to change their passwords, there is the risk that RHEL 8 passwords could be compromised.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230367", - "group_title": "SRG-OS-000076-GPOS-00044", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230367r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:207", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33011r567848_fix", - "fixtext_fixref": "F-33011r567848_fix", - "ident": { - "text": "CCI-000199", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230367r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230367r627750_rule", - "version": "RHEL-08-020210", - "time": "2021-12-17T10:30:23", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000199", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33011r567848_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:207", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:23", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230368", - "title": "RHEL 8 passwords must be prohibited from reuse for a minimum of five generations.", - "desc": "Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. If the information system or application allows the user to reuse their password consecutively when that password has exceeded its defined lifetime, the end result is a password that is not changed per policy requirements.\n\nRHEL 8 utilizes \"pwquality\" consecutively as a mechanism to enforce password complexity. This is set in both:\n/etc/pam.d/password-auth\n/etc/pam.d/system-auth.\n\nNote that manual changes to the listed files may be overwritten by the \"authselect\" program.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:208", - "label": "check" - }, - { - "data": "Configure the operating system to prohibit password reuse for a minimum of five generations.\n\nAdd the following line in \"/etc/pam.d/system-auth\" and \"/etc/pam.d/password-auth\" (or modify the line to have the required value):\n\npassword required pam_pwhistory.so use_authtok remember=5 retry=3", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000200" - ], - "nist": [ - "IA-5 (1) (e)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. If the information system or application allows the user to reuse their password consecutively when that password has exceeded its defined lifetime, the end result is a password that is not changed per policy requirements.\\n\\nRHEL 8 utilizes \\\"pwquality\\\" consecutively as a mechanism to enforce password complexity. This is set in both:\\n/etc/pam.d/password-auth\\n/etc/pam.d/system-auth.\\n\\nNote that manual changes to the listed files may be overwritten by the \\\"authselect\\\" program.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230368", - "group_title": "SRG-OS-000077-GPOS-00045", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230368r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:208", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33012r567851_fix", - "fixtext_fixref": "F-33012r567851_fix", - "ident": { - "text": "CCI-000200", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230368r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230368r627750_rule", - "version": "RHEL-08-020220", - "time": "2021-12-17T10:30:24", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000200", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33012r567851_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:208", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:24", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230369", - "title": "RHEL 8 passwords must have a minimum of 15 characters.", - "desc": "The shorter the password, the lower the number of possible combinations that need to be tested before the password is compromised.\n\nPassword complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. Password length is one factor of several that helps to determine strength and how long it takes to crack a password. Use of more characters in a password helps to increase exponentially the time and/or resources required to compromise the password.\n\nRHEL 8 utilizes \"pwquality\" as a mechanism to enforce password complexity. Configurations are set in the \"etc/security/pwquality.conf\" file.\n\nThe \"minlen\", sometimes noted as minimum length, acts as a \"score\" of complexity based on the credit components of the \"pwquality\" module. By setting the credit components to a negative value, not only will those components be required, they will not count towards the total \"score\" of \"minlen\". This will enable \"minlen\" to require a 15-character minimum.\n\nThe DoD minimum password requirement is 15 characters.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:209", - "label": "check" - }, - { - "data": "Configure operating system to enforce a minimum 15-character password length.\n\nAdd the following line to \"/etc/security/pwquality.conf\" (or modify the line to have the required value):\n\nminlen = 15", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000205" - ], - "nist": [ - "IA-5 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"The shorter the password, the lower the number of possible combinations that need to be tested before the password is compromised.\\n\\nPassword complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. Password length is one factor of several that helps to determine strength and how long it takes to crack a password. Use of more characters in a password helps to increase exponentially the time and/or resources required to compromise the password.\\n\\nRHEL 8 utilizes \\\"pwquality\\\" as a mechanism to enforce password complexity. Configurations are set in the \\\"etc/security/pwquality.conf\\\" file.\\n\\nThe \\\"minlen\\\", sometimes noted as minimum length, acts as a \\\"score\\\" of complexity based on the credit components of the \\\"pwquality\\\" module. By setting the credit components to a negative value, not only will those components be required, they will not count towards the total \\\"score\\\" of \\\"minlen\\\". This will enable \\\"minlen\\\" to require a 15-character minimum.\\n\\nThe DoD minimum password requirement is 15 characters.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230369", - "group_title": "SRG-OS-000078-GPOS-00046", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230369r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:209", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33013r567854_fix", - "fixtext_fixref": "F-33013r567854_fix", - "ident": { - "text": "CCI-000205", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230369r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230369r627750_rule", - "version": "RHEL-08-020230", - "time": "2021-12-17T10:30:24", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000205", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33013r567854_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:209", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:24", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230370", - "title": "RHEL 8 passwords for new users must have a minimum of 15 characters.", - "desc": "The shorter the password, the lower the number of possible combinations that need to be tested before the password is compromised.\n\nPassword complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. Password length is one factor of several that helps to determine strength and how long it takes to crack a password. Use of more characters in a password helps to increase exponentially the time and/or resources required to compromise the password.\n\nThe DoD minimum password requirement is 15 characters.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:210", - "label": "check" - }, - { - "data": "Configure operating system to enforce a minimum 15-character password length for new user accounts.\n\nAdd, or modify the following line in the \"/etc/login.defs\" file:\n\nPASS_MIN_LEN 15", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000205" - ], - "nist": [ - "IA-5 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"The shorter the password, the lower the number of possible combinations that need to be tested before the password is compromised.\\n\\nPassword complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. Password length is one factor of several that helps to determine strength and how long it takes to crack a password. Use of more characters in a password helps to increase exponentially the time and/or resources required to compromise the password.\\n\\nThe DoD minimum password requirement is 15 characters.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230370", - "group_title": "SRG-OS-000078-GPOS-00046", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230370r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:210", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33014r567857_fix", - "fixtext_fixref": "F-33014r567857_fix", - "ident": { - "text": "CCI-000205", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230370r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230370r627750_rule", - "version": "RHEL-08-020231", - "time": "2021-12-17T10:30:24", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000205", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33014r567857_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:210", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:24", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230373", - "title": "RHEL 8 account identifiers (individuals, groups, roles, and devices) must be disabled after 35 days of inactivity.", - "desc": "Inactive identifiers pose a risk to systems and applications because attackers may exploit an inactive identifier and potentially obtain undetected access to the system. Owners of inactive accounts will not notice if unauthorized access to their user account has been obtained.\n\nRHEL 8 needs to track periods of inactivity and disable application identifiers after 35 days of inactivity.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:211", - "label": "check" - }, - { - "data": "Configure RHEL 8 to disable account identifiers after 35 days of inactivity after the password expiration. \n\nRun the following command to change the configuration for useradd:\n\n$ sudo useradd -D -f 35\n\nDoD recommendation is 35 days, but a lower value is acceptable. The value \"-1\" will disable this feature, and \"0\" will disable the account immediately after the password expires.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000795" - ], - "nist": [ - "IA-4 e" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Inactive identifiers pose a risk to systems and applications because attackers may exploit an inactive identifier and potentially obtain undetected access to the system. Owners of inactive accounts will not notice if unauthorized access to their user account has been obtained.\\n\\nRHEL 8 needs to track periods of inactivity and disable application identifiers after 35 days of inactivity.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230373", - "group_title": "SRG-OS-000118-GPOS-00060", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230373r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:211", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33017r567866_fix", - "fixtext_fixref": "F-33017r567866_fix", - "ident": { - "text": "CCI-000795", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230373r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230373r627750_rule", - "version": "RHEL-08-020260", - "time": "2021-12-17T10:30:24", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000795", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33017r567866_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:211", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:24", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230375", - "title": "All RHEL 8 passwords must contain at least one special character.", - "desc": "Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\n\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\n\nRHEL 8 utilizes \"pwquality\" as a mechanism to enforce password complexity. Note that to require special characters without degrading the \"minlen\" value, the credit value must be expressed as a negative number in \"/etc/security/pwquality.conf\".", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:212", - "label": "check" - }, - { - "data": "Configure the operating system to enforce password complexity by requiring that at least one special character be used by setting the \"ocredit\" option.\n\nAdd the following line to /etc/security/pwquality.conf (or modify the line to have the required value):\n\nocredit = -1", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001619" - ], - "nist": [ - "IA-5 (1) (a)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\\n\\nRHEL 8 utilizes \\\"pwquality\\\" as a mechanism to enforce password complexity. Note that to require special characters without degrading the \\\"minlen\\\" value, the credit value must be expressed as a negative number in \\\"/etc/security/pwquality.conf\\\".\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230375", - "group_title": "SRG-OS-000266-GPOS-00101", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230375r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:212", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33019r567872_fix", - "fixtext_fixref": "F-33019r567872_fix", - "ident": { - "text": "CCI-001619", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230375r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230375r627750_rule", - "version": "RHEL-08-020280", - "time": "2021-12-17T10:30:24", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-001619", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33019r567872_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:212", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:24", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230377", - "title": "RHEL 8 must prevent the use of dictionary words for passwords.", - "desc": "If RHEL 8 allows the user to select passwords based on dictionary words, this increases the chances of password compromise by increasing the opportunity for successful guesses, and brute-force attacks.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:214", - "label": "check" - }, - { - "data": "Configure RHEL 8 to prevent the use of dictionary words for passwords.\n\nAdd or update the following line in the \"/etc/security/pwquality.conf\" file or a configuration file in the /etc/pwquality.conf.d/ directory to contain the \"dictcheck\" parameter:\n\ndictcheck=1", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"If RHEL 8 allows the user to select passwords based on dictionary words, this increases the chances of password compromise by increasing the opportunity for successful guesses, and brute-force attacks.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230377", - "group_title": "SRG-OS-000480-GPOS-00225", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230377r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:214", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33021r567878_fix", - "fixtext_fixref": "F-33021r567878_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230377r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230377r627750_rule", - "version": "RHEL-08-020300", - "time": "2021-12-17T10:30:24", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33021r567878_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:214", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:24", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230378", - "title": "RHEL 8 must enforce a delay of at least four seconds between logon prompts following a failed logon attempt.", - "desc": "Configuring the operating system to implement organization-wide security implementation guides and security checklists verifies compliance with federal standards and establishes a common security baseline across the DoD that reflects the most restrictive security posture consistent with operational requirements.\n\nConfiguration settings are the set of parameters that can be changed in hardware, software, or firmware components of the system that affect the security posture and/or functionality of the system. Security-related parameters are those parameters impacting the security state of the system, including the parameters required to satisfy other security control requirements. Security-related parameters include, for example, registry settings; account, file, and directory permission settings; and settings for functions, ports, protocols, services, and remote connections.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:215", - "label": "check" - }, - { - "data": "Configure the operating system to enforce a delay of at least four seconds between logon prompts following a failed console logon attempt.\n\nModify the \"/etc/login.defs\" file to set the \"FAIL_DELAY\" parameter to \"4\" or greater:\n\nFAIL_DELAY 4", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Configuring the operating system to implement organization-wide security implementation guides and security checklists verifies compliance with federal standards and establishes a common security baseline across the DoD that reflects the most restrictive security posture consistent with operational requirements.\\n\\nConfiguration settings are the set of parameters that can be changed in hardware, software, or firmware components of the system that affect the security posture and/or functionality of the system. Security-related parameters are those parameters impacting the security state of the system, including the parameters required to satisfy other security control requirements. Security-related parameters include, for example, registry settings; account, file, and directory permission settings; and settings for functions, ports, protocols, services, and remote connections.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230378", - "group_title": "SRG-OS-000480-GPOS-00226", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230378r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:215", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33022r567881_fix", - "fixtext_fixref": "F-33022r567881_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230378r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230378r627750_rule", - "version": "RHEL-08-020310", - "time": "2021-12-17T10:30:24", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33022r567881_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:215", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:24", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230380", - "title": "RHEL 8 must not allow accounts configured with blank or null passwords.", - "desc": "If an account has an empty password, anyone could log on and run commands with the privileges of that account. Accounts with empty passwords should never be used in operational environments.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:216", - "label": "check" - }, - { - "data": "Edit the following line in \"etc/ssh/sshd_config\" to prevent logons with empty passwords.\n\nPermitEmptyPasswords no\n\nThe SSH daemon must be restarted for the changes to take effect. To restart the SSH daemon, run the following command:\n\n$ sudo systemctl restart sshd.service", - "label": "fix" - } - ], - "impact": 0.7, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "high", - "description": "{\"VulnDiscussion\":\"If an account has an empty password, anyone could log on and run commands with the privileges of that account. Accounts with empty passwords should never be used in operational environments.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230380", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230380r743993_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:216", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33024r743992_fix", - "fixtext_fixref": "F-33024r743992_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230380r743993_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230380r743993_rule", - "version": "RHEL-08-020330", - "time": "2021-12-17T10:30:24", - "weight": "10.0", - "severity": "high", - "cdf:result": "pass", - "cdf:ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33024r743992_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:216", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:24", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230382", - "title": "RHEL 8 must display the date and time of the last successful account logon upon an SSH logon.", - "desc": "Providing users with feedback on when account accesses via SSH last occurred facilitates user recognition and reporting of unauthorized account use.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:218", - "label": "check" - }, - { - "data": "Configure SSH to provide users with feedback on when account accesses last occurred by setting the required configuration options in \"/etc/pam.d/sshd\" or in the \"sshd_config\" file used by the system (\"/etc/ssh/sshd_config\" will be used in the example) (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor).\n\nModify the \"PrintLastLog\" line in \"/etc/ssh/sshd_config\" to match the following:\n\nPrintLastLog yes\n\nThe SSH service must be restarted for changes to \"sshd_config\" to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Providing users with feedback on when account accesses via SSH last occurred facilitates user recognition and reporting of unauthorized account use.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230382", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230382r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:218", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33026r567893_fix", - "fixtext_fixref": "F-33026r567893_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230382r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230382r627750_rule", - "version": "RHEL-08-020350", - "time": "2021-12-17T10:30:24", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33026r567893_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:218", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:24", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230383", - "title": "RHEL 8 must define default permissions for all authenticated users in such a way that the user can only read and modify their own files.", - "desc": "Setting the most restrictive default permissions ensures that when new accounts are created, they do not have unnecessary access.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:219", - "label": "check" - }, - { - "data": "Configure the operating system to define default permissions for all authenticated users in such a way that the user can only read and modify their own files.\n\nAdd or edit the line for the \"UMASK\" parameter in \"/etc/login.defs\" file to \"077\":\n\nUMASK 077", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Setting the most restrictive default permissions ensures that when new accounts are created, they do not have unnecessary access.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230383", - "group_title": "SRG-OS-000480-GPOS-00228", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230383r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:219", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33027r567896_fix", - "fixtext_fixref": "F-33027r567896_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230383r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230383r627750_rule", - "version": "RHEL-08-020351", - "time": "2021-12-17T10:30:24", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33027r567896_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:219", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:24", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230386", - "title": "The RHEL 8 audit system must be configured to audit the execution of privileged functions and prevent all software from executing at higher privilege levels than users executing the software.", - "desc": "Misuse of privileged functions, either intentionally or unintentionally by authorized users, or by unauthorized external entities that have compromised information system accounts, is a serious and ongoing concern and can have significant adverse impacts on organizations. Auditing the use of privileged functions is one way to detect such misuse and identify the risk from insider threats and the advanced persistent threat.\n\nSatisfies: SRG-OS-000326-GPOS-00126, SRG-OS-000327-GPOS-00127", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:220", - "label": "check" - }, - { - "data": "Configure RHEL 8 to audit the execution of the \"execve\" system call.\n\nAdd or update the following file system rules to \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S execve -C uid!=euid -F euid=0 -k execpriv \n-a always,exit -F arch=b64 -S execve -C uid!=euid -F euid=0 -k execpriv\n\n-a always,exit -F arch=b32 -S execve -C gid!=egid -F egid=0 -k execpriv \n-a always,exit -F arch=b64 -S execve -C gid!=egid -F egid=0 -k execpriv \n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-002233" - ], - "nist": [ - "AC-6 (8)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Misuse of privileged functions, either intentionally or unintentionally by authorized users, or by unauthorized external entities that have compromised information system accounts, is a serious and ongoing concern and can have significant adverse impacts on organizations. Auditing the use of privileged functions is one way to detect such misuse and identify the risk from insider threats and the advanced persistent threat.\\n\\nSatisfies: SRG-OS-000326-GPOS-00126, SRG-OS-000327-GPOS-00127\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230386", - "group_title": "SRG-OS-000326-GPOS-00126", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230386r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:220", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33030r567905_fix", - "fixtext_fixref": "F-33030r567905_fix", - "ident": { - "text": "CCI-002233", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230386r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230386r627750_rule", - "version": "RHEL-08-030000", - "time": "2021-12-17T10:30:24", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-002233", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33030r567905_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:220", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:24", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230388", - "title": "The RHEL 8 System Administrator (SA) and Information System Security Officer (ISSO) (at a minimum) must be alerted of an audit processing failure event.", - "desc": "It is critical for the appropriate personnel to be aware if a system is at risk of failing to process audit logs as required. Without this notification, the security personnel may be unaware of an impending failure of the audit capability, and system operation may be adversely affected.\n\nAudit processing failures include software/hardware errors, failures in the audit capturing mechanisms, and audit storage capacity being reached or exceeded.\n\nThis requirement applies to each audit data storage repository (i.e., distinct information system component where audit records are stored), the centralized audit storage capacity of organizations (i.e., all audit data storage repositories combined), or both.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:222", - "label": "check" - }, - { - "data": "Configure \"auditd\" service to notify the SA and ISSO in the event of an audit processing failure. \n\nEdit the following line in \"/etc/audit/auditd.conf\" to ensure that administrators are notified via email for those situations:\n\naction_mail_acct = root", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000139" - ], - "nist": [ - "AU-5 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"It is critical for the appropriate personnel to be aware if a system is at risk of failing to process audit logs as required. Without this notification, the security personnel may be unaware of an impending failure of the audit capability, and system operation may be adversely affected.\\n\\nAudit processing failures include software/hardware errors, failures in the audit capturing mechanisms, and audit storage capacity being reached or exceeded.\\n\\nThis requirement applies to each audit data storage repository (i.e., distinct information system component where audit records are stored), the centralized audit storage capacity of organizations (i.e., all audit data storage repositories combined), or both.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230388", - "group_title": "SRG-OS-000046-GPOS-00022", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230388r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:222", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33032r567911_fix", - "fixtext_fixref": "F-33032r567911_fix", - "ident": { - "text": "CCI-000139", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230388r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230388r627750_rule", - "version": "RHEL-08-030020", - "time": "2021-12-17T10:30:24", - "weight": "10.0", - "severity": "medium", - "cdf:result": "pass", - "cdf:ident": { - "text": "CCI-000139", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33032r567911_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:222", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:24", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230390", - "title": "The RHEL 8 System must take appropriate action when an audit processing failure occurs.", - "desc": "It is critical for the appropriate personnel to be aware if a system is at risk of failing to process audit logs as required. Without this notification, the security personnel may be unaware of an impending failure of the audit capability, and system operation may be adversely affected.\n\nAudit processing failures include software/hardware errors, failures in the audit capturing mechanisms, and audit storage capacity being reached or exceeded.\n\nThis requirement applies to each audit data storage repository (i.e., distinct information system component where audit records are stored), the centralized audit storage capacity of organizations (i.e., all audit data storage repositories combined), or both.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:223", - "label": "check" - }, - { - "data": "Configure RHEL 8 to shut down by default upon audit failure (unless availability is an overriding concern).\n\nAdd or update the following line (depending on configuration \"disk_error_action\" can be set to \"SYSLOG\" or \"SINGLE\" depending on configuration) in \"/etc/audit/auditd.conf\" file:\n\ndisk_error_action = HALT\n\nIf availability has been determined to be more important, and this decision is documented with the ISSO, configure the operating system to notify system administration staff and ISSO staff in the event of an audit processing failure by setting the \"disk_error_action\" to \"SYSLOG\".", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000140" - ], - "nist": [ - "AU-5 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"It is critical for the appropriate personnel to be aware if a system is at risk of failing to process audit logs as required. Without this notification, the security personnel may be unaware of an impending failure of the audit capability, and system operation may be adversely affected.\\n\\nAudit processing failures include software/hardware errors, failures in the audit capturing mechanisms, and audit storage capacity being reached or exceeded.\\n\\nThis requirement applies to each audit data storage repository (i.e., distinct information system component where audit records are stored), the centralized audit storage capacity of organizations (i.e., all audit data storage repositories combined), or both.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230390", - "group_title": "SRG-OS-000047-GPOS-00023", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230390r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:223", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33034r567917_fix", - "fixtext_fixref": "F-33034r567917_fix", - "ident": { - "text": "CCI-000140", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230390r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230390r627750_rule", - "version": "RHEL-08-030040", - "time": "2021-12-17T10:30:24", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000140", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33034r567917_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:223", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:24", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230391", - "title": "The RHEL 8 System Administrator (SA) and Information System Security Officer (ISSO) (at a minimum) must be alerted when the audit storage volume is full.", - "desc": "It is critical that when RHEL 8 is at risk of failing to process audit logs as required, it takes action to mitigate the failure. Audit processing failures include software/hardware errors; failures in the audit capturing mechanisms; and audit storage capacity being reached or exceeded. Responses to audit failure depend upon the nature of the failure mode.\n\nWhen availability is an overriding concern, other approved actions in response to an audit failure are as follows:\n\n1) If the failure was caused by the lack of audit record storage capacity, RHEL 8 must continue generating audit records if possible (automatically restarting the audit service if necessary) and overwriting the oldest audit records in a first-in-first-out manner.\n\n2) If audit records are sent to a centralized collection server and communication with this server is lost or the server fails, RHEL 8 must queue audit records locally until communication is restored or until the audit records are retrieved manually. Upon restoration of the connection to the centralized collection server, action should be taken to synchronize the local audit data with the collection server.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:224", - "label": "check" - }, - { - "data": "Configure RHEL 8 to notify the System Administrator (SA) and Information System Security Officer (ISSO) when the audit storage volume is full by configuring the \"max_log_file_action\" parameter in the \"/etc/audit/auditd.conf\" file with the a value of \"syslog\" or \"keep_logs\":\n\nmax_log_file_action = syslog", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000140" - ], - "nist": [ - "AU-5 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"It is critical that when RHEL 8 is at risk of failing to process audit logs as required, it takes action to mitigate the failure. Audit processing failures include software/hardware errors; failures in the audit capturing mechanisms; and audit storage capacity being reached or exceeded. Responses to audit failure depend upon the nature of the failure mode.\\n\\nWhen availability is an overriding concern, other approved actions in response to an audit failure are as follows:\\n\\n1) If the failure was caused by the lack of audit record storage capacity, RHEL 8 must continue generating audit records if possible (automatically restarting the audit service if necessary) and overwriting the oldest audit records in a first-in-first-out manner.\\n\\n2) If audit records are sent to a centralized collection server and communication with this server is lost or the server fails, RHEL 8 must queue audit records locally until communication is restored or until the audit records are retrieved manually. Upon restoration of the connection to the centralized collection server, action should be taken to synchronize the local audit data with the collection server.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230391", - "group_title": "SRG-OS-000047-GPOS-00023", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230391r743998_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:224", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33035r743997_fix", - "fixtext_fixref": "F-33035r743997_fix", - "ident": { - "text": "CCI-000140", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230391r743998_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230391r743998_rule", - "version": "RHEL-08-030050", - "time": "2021-12-17T10:30:24", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000140", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33035r743997_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:224", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:24", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230392", - "title": "The RHEL 8 audit system must take appropriate action when the audit storage volume is full.", - "desc": "It is critical that when RHEL 8 is at risk of failing to process audit logs as required, it takes action to mitigate the failure. Audit processing failures include software/hardware errors; failures in the audit capturing mechanisms; and audit storage capacity being reached or exceeded. Responses to audit failure depend upon the nature of the failure mode.\n\nWhen availability is an overriding concern, other approved actions in response to an audit failure are as follows: \n\n1) If the failure was caused by the lack of audit record storage capacity, RHEL 8 must continue generating audit records if possible (automatically restarting the audit service if necessary) and overwriting the oldest audit records in a first-in-first-out manner.\n\n2) If audit records are sent to a centralized collection server and communication with this server is lost or the server fails, RHEL 8 must queue audit records locally until communication is restored or until the audit records are retrieved manually. Upon restoration of the connection to the centralized collection server, action should be taken to synchronize the local audit data with the collection server.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:225", - "label": "check" - }, - { - "data": "Configure RHEL 8 to shut down by default upon audit failure (unless availability is an overriding concern).\n\nAdd or update the following line (depending on configuration \"disk_full_action\" can be set to \"SYSLOG\" or \"SINGLE\" depending on configuration) in \"/etc/audit/auditd.conf\" file:\n\ndisk_full_action = HALT\n\nIf availability has been determined to be more important, and this decision is documented with the ISSO, configure the operating system to notify system administration staff and ISSO staff in the event of an audit processing failure by setting the \"disk_full_action\" to \"SYSLOG\".", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000140" - ], - "nist": [ - "AU-5 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"It is critical that when RHEL 8 is at risk of failing to process audit logs as required, it takes action to mitigate the failure. Audit processing failures include software/hardware errors; failures in the audit capturing mechanisms; and audit storage capacity being reached or exceeded. Responses to audit failure depend upon the nature of the failure mode.\\n\\nWhen availability is an overriding concern, other approved actions in response to an audit failure are as follows: \\n\\n1) If the failure was caused by the lack of audit record storage capacity, RHEL 8 must continue generating audit records if possible (automatically restarting the audit service if necessary) and overwriting the oldest audit records in a first-in-first-out manner.\\n\\n2) If audit records are sent to a centralized collection server and communication with this server is lost or the server fails, RHEL 8 must queue audit records locally until communication is restored or until the audit records are retrieved manually. Upon restoration of the connection to the centralized collection server, action should be taken to synchronize the local audit data with the collection server.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230392", - "group_title": "SRG-OS-000047-GPOS-00023", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230392r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:225", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33036r567923_fix", - "fixtext_fixref": "F-33036r567923_fix", - "ident": { - "text": "CCI-000140", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230392r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230392r627750_rule", - "version": "RHEL-08-030060", - "time": "2021-12-17T10:30:24", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000140", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33036r567923_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:225", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:24", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230393", - "title": "The RHEL 8 audit system must audit local events.", - "desc": "Without establishing what type of events occurred, the source of events, where events occurred, and the outcome of events, it would be difficult to establish, correlate, and investigate the events leading up to an outage or attack.\n\nAudit record content that may be necessary to satisfy this requirement includes, for example, time stamps, source and destination addresses, user/process identifiers, event descriptions, success/fail indications, filenames involved, and access control or flow control rules invoked.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:226", - "label": "check" - }, - { - "data": "Configure RHEL 8 to audit local events on the system.\n\nAdd or update the following line in \"/etc/audit/auditd.conf\" file:\n\nlocal_events = yes", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without establishing what type of events occurred, the source of events, where events occurred, and the outcome of events, it would be difficult to establish, correlate, and investigate the events leading up to an outage or attack.\\n\\nAudit record content that may be necessary to satisfy this requirement includes, for example, time stamps, source and destination addresses, user/process identifiers, event descriptions, success/fail indications, filenames involved, and access control or flow control rules invoked.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230393", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230393r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:226", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33037r567926_fix", - "fixtext_fixref": "F-33037r567926_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230393r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230393r627750_rule", - "version": "RHEL-08-030061", - "time": "2021-12-17T10:30:24", - "weight": "10.0", - "severity": "medium", - "cdf:result": "pass", - "cdf:ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33037r567926_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:226", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:24", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230394", - "title": "RHEL 8 must label all off-loaded audit logs before sending them to the central log server.", - "desc": "Without establishing what type of events occurred, the source of events, where events occurred, and the outcome of events, it would be difficult to establish, correlate, and investigate the events leading up to an outage or attack.\n\nAudit record content that may be necessary to satisfy this requirement includes, for example, time stamps, source and destination addresses, user/process identifiers, event descriptions, success/fail indications, filenames involved, and access control or flow control rules invoked.\n\nEnriched logging is needed to determine who, what, and when events occur on a system. Without this, determining root cause of an event will be much more difficult.\n\nWhen audit logs are not labeled before they are sent to a central log server, the audit data will not be able to be analyzed and tied back to the correct system.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:227", - "label": "check" - }, - { - "data": "Edit the /etc/audit/auditd.conf file and add or update the \"name_format\" option:\n\nname_format = hostname\n\nThe audit daemon must be restarted for changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001851" - ], - "nist": [ - "AU-4 (1)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without establishing what type of events occurred, the source of events, where events occurred, and the outcome of events, it would be difficult to establish, correlate, and investigate the events leading up to an outage or attack.\\n\\nAudit record content that may be necessary to satisfy this requirement includes, for example, time stamps, source and destination addresses, user/process identifiers, event descriptions, success/fail indications, filenames involved, and access control or flow control rules invoked.\\n\\nEnriched logging is needed to determine who, what, and when events occur on a system. Without this, determining root cause of an event will be much more difficult.\\n\\nWhen audit logs are not labeled before they are sent to a central log server, the audit data will not be able to be analyzed and tied back to the correct system.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230394", - "group_title": "SRG-OS-000342-GPOS-00133", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230394r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:227", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33038r567929_fix", - "fixtext_fixref": "F-33038r567929_fix", - "ident": { - "text": "CCI-001851", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230394r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230394r627750_rule", - "version": "RHEL-08-030062", - "time": "2021-12-17T10:30:24", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-001851", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33038r567929_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:227", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:24", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230395", - "title": "RHEL 8 must resolve audit information before writing to disk.", - "desc": "Without establishing what type of events occurred, the source of events, where events occurred, and the outcome of events, it would be difficult to establish, correlate, and investigate the events leading up to an outage or attack.\n\nAudit record content that may be necessary to satisfy this requirement includes, for example, time stamps, source and destination addresses, user/process identifiers, event descriptions, success/fail indications, filenames involved, and access control or flow control rules invoked.\n\nEnriched logging aids in making sense of who, what, and when events occur on a system. Without this, determining root cause of an event will be much more difficult.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:228", - "label": "check" - }, - { - "data": "Edit the /etc/audit/auditd.conf file and add or update the \"log_format\" option:\n\nlog_format = ENRICHED\n\nThe audit daemon must be restarted for changes to take effect.", - "label": "fix" - } - ], - "impact": 0.3, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "low", - "description": "{\"VulnDiscussion\":\"Without establishing what type of events occurred, the source of events, where events occurred, and the outcome of events, it would be difficult to establish, correlate, and investigate the events leading up to an outage or attack.\\n\\nAudit record content that may be necessary to satisfy this requirement includes, for example, time stamps, source and destination addresses, user/process identifiers, event descriptions, success/fail indications, filenames involved, and access control or flow control rules invoked.\\n\\nEnriched logging aids in making sense of who, what, and when events occur on a system. Without this, determining root cause of an event will be much more difficult.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230395", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230395r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:228", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33039r567932_fix", - "fixtext_fixref": "F-33039r567932_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230395r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230395r627750_rule", - "version": "RHEL-08-030063", - "time": "2021-12-17T10:30:25", - "weight": "10.0", - "severity": "low", - "cdf:result": "pass", - "cdf:ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33039r567932_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:228", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:25", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230396", - "title": "RHEL 8 audit logs must have a mode of 0600 or less permissive to prevent unauthorized read access.", - "desc": "Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\n\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.\n\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029, SRG-OS-000206-GPOS-00084", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:229", - "label": "check" - }, - { - "data": "Configure the audit log to be protected from unauthorized read access by configuring the log group in the /etc/audit/auditd.conf file:\n\nlog_group = root", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000162" - ], - "nist": [ - "AU-9 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\\n\\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.\\n\\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029, SRG-OS-000206-GPOS-00084\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230396", - "group_title": "SRG-OS-000057-GPOS-00027", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230396r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:229", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33040r567935_fix", - "fixtext_fixref": "F-33040r567935_fix", - "ident": { - "text": "CCI-000162", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230396r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230396r627750_rule", - "version": "RHEL-08-030070", - "time": "2021-12-17T10:30:25", - "weight": "10.0", - "severity": "medium", - "cdf:result": "pass", - "cdf:ident": { - "text": "CCI-000162", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33040r567935_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:229", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:25", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230397", - "title": "RHEL 8 audit logs must be owned by root to prevent unauthorized read access.", - "desc": "Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\n\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.\n\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029, SRG-OS-000206-GPOS-00084", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:230", - "label": "check" - }, - { - "data": "Configure the audit log to be protected from unauthorized read access, by setting the correct owner as \"root\" with the following command:\n\n$ sudo chown root [audit_log_file]\n\nReplace \"[audit_log_file]\" to the correct audit log path, by default this location is \"/var/log/audit/audit.log\".", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000162" - ], - "nist": [ - "AU-9 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\\n\\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.\\n\\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029, SRG-OS-000206-GPOS-00084\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230397", - "group_title": "SRG-OS-000057-GPOS-00027", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230397r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:230", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33041r567938_fix", - "fixtext_fixref": "F-33041r567938_fix", - "ident": { - "text": "CCI-000162", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230397r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230397r627750_rule", - "version": "RHEL-08-030080", - "time": "2021-12-17T10:30:25", - "weight": "10.0", - "severity": "medium", - "cdf:result": "pass", - "cdf:ident": { - "text": "CCI-000162", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33041r567938_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:230", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:25", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230398", - "title": "RHEL 8 audit logs must be group-owned by root to prevent unauthorized read access.", - "desc": "Unauthorized disclosure of audit records can reveal system and configuration data to attackers, thus compromising its confidentiality.\n\nAudit information includes all information (e.g., audit records, audit settings, audit reports) needed to successfully audit RHEL 8 activity.\n\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:231", - "label": "check" - }, - { - "data": "Configure the audit log to be owned by root by configuring the log group in the /etc/audit/auditd.conf file:\n\nlog_group = root", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000162" - ], - "nist": [ - "AU-9 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Unauthorized disclosure of audit records can reveal system and configuration data to attackers, thus compromising its confidentiality.\\n\\nAudit information includes all information (e.g., audit records, audit settings, audit reports) needed to successfully audit RHEL 8 activity.\\n\\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230398", - "group_title": "SRG-OS-000057-GPOS-00027", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230398r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:231", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33042r567941_fix", - "fixtext_fixref": "F-33042r567941_fix", - "ident": { - "text": "CCI-000162", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230398r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230398r627750_rule", - "version": "RHEL-08-030090", - "time": "2021-12-17T10:30:25", - "weight": "10.0", - "severity": "medium", - "cdf:result": "pass", - "cdf:ident": { - "text": "CCI-000162", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33042r567941_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:231", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:25", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230399", - "title": "RHEL 8 audit log directory must be owned by root to prevent unauthorized read access.", - "desc": "Unauthorized disclosure of audit records can reveal system and configuration data to attackers, thus compromising its confidentiality.\n\nAudit information includes all information (e.g., audit records, audit settings, audit reports) needed to successfully audit RHEL 8 activity.\n\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:232", - "label": "check" - }, - { - "data": "Configure the audit log to be protected from unauthorized read access, by setting the correct owner as \"root\" with the following command:\n\n$ sudo chown root [audit_log_directory]\n\nReplace \"[audit_log_directory]\" with the correct audit log directory path, by default this location is usually \"/var/log/audit\".", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000162" - ], - "nist": [ - "AU-9 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Unauthorized disclosure of audit records can reveal system and configuration data to attackers, thus compromising its confidentiality.\\n\\nAudit information includes all information (e.g., audit records, audit settings, audit reports) needed to successfully audit RHEL 8 activity.\\n\\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230399", - "group_title": "SRG-OS-000057-GPOS-00027", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230399r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:232", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33043r567944_fix", - "fixtext_fixref": "F-33043r567944_fix", - "ident": { - "text": "CCI-000162", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230399r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230399r627750_rule", - "version": "RHEL-08-030100", - "time": "2021-12-17T10:30:25", - "weight": "10.0", - "severity": "medium", - "cdf:result": "pass", - "cdf:ident": { - "text": "CCI-000162", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33043r567944_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:232", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:25", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230400", - "title": "RHEL 8 audit log directory must be group-owned by root to prevent unauthorized read access.", - "desc": "Unauthorized disclosure of audit records can reveal system and configuration data to attackers, thus compromising its confidentiality.\n\nAudit information includes all information (e.g., audit records, audit settings, audit reports) needed to successfully audit RHEL 8 activity.\n\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:233", - "label": "check" - }, - { - "data": "Configure the audit log to be protected from unauthorized read access by setting the correct group-owner as \"root\" with the following command:\n\n$ sudo chgrp root [audit_log_directory]\n\nReplace \"[audit_log_directory]\" with the correct audit log directory path, by default this location is usually \"/var/log/audit\".", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000162" - ], - "nist": [ - "AU-9 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Unauthorized disclosure of audit records can reveal system and configuration data to attackers, thus compromising its confidentiality.\\n\\nAudit information includes all information (e.g., audit records, audit settings, audit reports) needed to successfully audit RHEL 8 activity.\\n\\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230400", - "group_title": "SRG-OS-000057-GPOS-00027", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230400r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:233", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33044r567947_fix", - "fixtext_fixref": "F-33044r567947_fix", - "ident": { - "text": "CCI-000162", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230400r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230400r627750_rule", - "version": "RHEL-08-030110", - "time": "2021-12-17T10:30:25", - "weight": "10.0", - "severity": "medium", - "cdf:result": "pass", - "cdf:ident": { - "text": "CCI-000162", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33044r567947_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:233", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:25", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230401", - "title": "RHEL 8 audit log directory must have a mode of 0700 or less permissive to prevent unauthorized read access.", - "desc": "Unauthorized disclosure of audit records can reveal system and configuration data to attackers, thus compromising its confidentiality.\n\nAudit information includes all information (e.g., audit records, audit settings, audit reports) needed to successfully audit RHEL 8 system activity.\n\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:234", - "label": "check" - }, - { - "data": "Configure the audit log directory to be protected from unauthorized read access by setting the correct permissive mode with the following command:\n\n$ sudo chmod 0700 [audit_log_directory]\n\nReplace \"[audit_log_directory]\" to the correct audit log directory path, by default this location is \"/var/log/audit\".", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000162" - ], - "nist": [ - "AU-9 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Unauthorized disclosure of audit records can reveal system and configuration data to attackers, thus compromising its confidentiality.\\n\\nAudit information includes all information (e.g., audit records, audit settings, audit reports) needed to successfully audit RHEL 8 system activity.\\n\\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230401", - "group_title": "SRG-OS-000057-GPOS-00027", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230401r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:234", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33045r567950_fix", - "fixtext_fixref": "F-33045r567950_fix", - "ident": { - "text": "CCI-000162", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230401r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230401r627750_rule", - "version": "RHEL-08-030120", - "time": "2021-12-17T10:30:25", - "weight": "10.0", - "severity": "medium", - "cdf:result": "pass", - "cdf:ident": { - "text": "CCI-000162", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33045r567950_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:234", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:25", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230402", - "title": "RHEL 8 audit system must protect auditing rules from unauthorized change.", - "desc": "Unauthorized disclosure of audit records can reveal system and configuration data to attackers, thus compromising its confidentiality.\n\nAudit information includes all information (e.g., audit records, audit settings, audit reports) needed to successfully audit RHEL 8 system activity.\n\nIn immutable mode, unauthorized users cannot execute changes to the audit system to potentially hide malicious activity and then put the audit rules back. A system reboot would be noticeable and a system administrator could then investigate the unauthorized changes.\n\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:235", - "label": "check" - }, - { - "data": "Configure the audit system to set the audit rules to be immutable by adding the following line to \"/etc/audit/rules.d/audit.rules\"\n\n-e 2\n\nNote: Once set, the system must be rebooted for auditing to be changed. It is recommended to add this option as the last step in securing the system.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000162" - ], - "nist": [ - "AU-9 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Unauthorized disclosure of audit records can reveal system and configuration data to attackers, thus compromising its confidentiality.\\n\\nAudit information includes all information (e.g., audit records, audit settings, audit reports) needed to successfully audit RHEL 8 system activity.\\n\\nIn immutable mode, unauthorized users cannot execute changes to the audit system to potentially hide malicious activity and then put the audit rules back. A system reboot would be noticeable and a system administrator could then investigate the unauthorized changes.\\n\\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230402", - "group_title": "SRG-OS-000057-GPOS-00027", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230402r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:235", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33046r567953_fix", - "fixtext_fixref": "F-33046r567953_fix", - "ident": { - "text": "CCI-000162", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230402r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230402r627750_rule", - "version": "RHEL-08-030121", - "time": "2021-12-17T10:30:25", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000162", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33046r567953_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:235", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:25", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230403", - "title": "RHEL 8 audit system must protect logon UIDs from unauthorized change.", - "desc": "Unauthorized disclosure of audit records can reveal system and configuration data to attackers, thus compromising its confidentiality.\n\nAudit information includes all information (e.g., audit records, audit settings, audit reports) needed to successfully audit RHEL 8 system activity.\n\nIn immutable mode, unauthorized users cannot execute changes to the audit system to potentially hide malicious activity and then put the audit rules back. A system reboot would be noticeable and a system administrator could then investigate the unauthorized changes.\n\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:236", - "label": "check" - }, - { - "data": "Configure the audit system to set the logon UIDs to be immutable by adding the following line to \"/etc/audit/rules.d/audit.rules\"\n\n--loginuid-immutable", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000162" - ], - "nist": [ - "AU-9 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Unauthorized disclosure of audit records can reveal system and configuration data to attackers, thus compromising its confidentiality.\\n\\nAudit information includes all information (e.g., audit records, audit settings, audit reports) needed to successfully audit RHEL 8 system activity.\\n\\nIn immutable mode, unauthorized users cannot execute changes to the audit system to potentially hide malicious activity and then put the audit rules back. A system reboot would be noticeable and a system administrator could then investigate the unauthorized changes.\\n\\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230403", - "group_title": "SRG-OS-000057-GPOS-00027", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230403r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:236", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33047r567956_fix", - "fixtext_fixref": "F-33047r567956_fix", - "ident": { - "text": "CCI-000162", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230403r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230403r627750_rule", - "version": "RHEL-08-030122", - "time": "2021-12-17T10:30:25", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000162", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33047r567956_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:236", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:25", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230404", - "title": "RHEL 8 must generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/shadow.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000004-GPOS-00004, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000304-GPOS-00121, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000470-GPOS-00214, SRG-OS-000471-GPOS-00215, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000304-GPOS-00121, SRG-OS-000466-GPOS-00210, SRG-OS-000476-GPOS-00221", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:237", - "label": "check" - }, - { - "data": "Configure RHEL 8 to generate audit records for all account creations, modifications, disabling, and termination events that affect \"/etc/shadow\".\n\nAdd or update the following file system rule to \"/etc/audit/rules.d/audit.rules\":\n\n-w /etc/shadow -p wa -k identity\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000004-GPOS-00004, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000304-GPOS-00121, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000470-GPOS-00214, SRG-OS-000471-GPOS-00215, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000304-GPOS-00121, SRG-OS-000466-GPOS-00210, SRG-OS-000476-GPOS-00221\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230404", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230404r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:237", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33048r567959_fix", - "fixtext_fixref": "F-33048r567959_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230404r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230404r627750_rule", - "version": "RHEL-08-030130", - "time": "2021-12-17T10:30:25", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33048r567959_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:237", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:25", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230405", - "title": "RHEL 8 must generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/security/opasswd.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000004-GPOS-00004, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000304-GPOS-00121, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000470-GPOS-00214, SRG-OS-000471-GPOS-00215, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000304-GPOS-00121, SRG-OS-000476-GPOS-00221", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:238", - "label": "check" - }, - { - "data": "Configure RHEL 8 to generate audit records for all account creations, modifications, disabling, and termination events that affect \"/etc/security/opasswd\".\n\nAdd or update the following file system rule to \"/etc/audit/rules.d/audit.rules\":\n\n-w /etc/security/opasswd -p wa -k identity\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000004-GPOS-00004, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000304-GPOS-00121, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000470-GPOS-00214, SRG-OS-000471-GPOS-00215, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000304-GPOS-00121, SRG-OS-000476-GPOS-00221\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230405", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230405r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:238", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33049r567962_fix", - "fixtext_fixref": "F-33049r567962_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230405r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230405r627750_rule", - "version": "RHEL-08-030140", - "time": "2021-12-17T10:30:25", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33049r567962_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:238", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:25", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230406", - "title": "RHEL 8 must generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/passwd.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000004-GPOS-00004, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000304-GPOS-00121, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000470-GPOS-00214, SRG-OS-000471-GPOS-00215, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000304-GPOS-00121, SRG-OS-000466-GPOS-00210, SRG-OS-000476-GPOS-00221", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:239", - "label": "check" - }, - { - "data": "Configure RHEL 8 to generate audit records for all account creations, modifications, disabling, and termination events that affect \"/etc/passwd\".\n\nAdd or update the following file system rule to \"/etc/audit/rules.d/audit.rules\":\n\n-w /etc/passwd -p wa -k identity\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000004-GPOS-00004, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000304-GPOS-00121, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000470-GPOS-00214, SRG-OS-000471-GPOS-00215, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000304-GPOS-00121, SRG-OS-000466-GPOS-00210, SRG-OS-000476-GPOS-00221\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230406", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230406r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:239", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33050r567965_fix", - "fixtext_fixref": "F-33050r567965_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230406r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230406r627750_rule", - "version": "RHEL-08-030150", - "time": "2021-12-17T10:30:25", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33050r567965_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:239", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:25", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230407", - "title": "RHEL 8 must generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/gshadow.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000004-GPOS-00004, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000304-GPOS-00121, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000470-GPOS-00214, SRG-OS-000471-GPOS-00215, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000304-GPOS-00121, SRG-OS-000466-GPOS-00210, SRG-OS-000476-GPOS-00221", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:240", - "label": "check" - }, - { - "data": "Configure RHEL 8 to generate audit records for all account creations, modifications, disabling, and termination events that affect \"/etc/gshadow\".\n\nAdd or update the following file system rule to \"/etc/audit/rules.d/audit.rules\":\n\n-w /etc/gshadow -p wa -k identity\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000004-GPOS-00004, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000304-GPOS-00121, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000470-GPOS-00214, SRG-OS-000471-GPOS-00215, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000304-GPOS-00121, SRG-OS-000466-GPOS-00210, SRG-OS-000476-GPOS-00221\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230407", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230407r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:240", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33051r567968_fix", - "fixtext_fixref": "F-33051r567968_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230407r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230407r627750_rule", - "version": "RHEL-08-030160", - "time": "2021-12-17T10:30:25", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33051r567968_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:240", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:25", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230408", - "title": "RHEL 8 must generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/group.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000004-GPOS-00004, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000304-GPOS-00121, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000470-GPOS-00214, SRG-OS-000471-GPOS-00215, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000304-GPOS-00121, CCI-002884, SRG-OS-000466-GPOS-00210, SRG-OS-000476-GPOS-00221", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:241", - "label": "check" - }, - { - "data": "Configure RHEL 8 to generate audit records for all account creations, modifications, disabling, and termination events that affect \"/etc/group\".\n\nAdd or update the following file system rule to \"/etc/audit/rules.d/audit.rules\":\n\n-w /etc/group -p wa -k identity\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000004-GPOS-00004, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000304-GPOS-00121, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000470-GPOS-00214, SRG-OS-000471-GPOS-00215, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000304-GPOS-00121, CCI-002884, SRG-OS-000466-GPOS-00210, SRG-OS-000476-GPOS-00221\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230408", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230408r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:241", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33052r567971_fix", - "fixtext_fixref": "F-33052r567971_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230408r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230408r627750_rule", - "version": "RHEL-08-030170", - "time": "2021-12-17T10:30:25", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33052r567971_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:241", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:25", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230409", - "title": "RHEL 8 must generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/sudoers.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000004-GPOS-00004, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000304-GPOS-00121, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000470-GPOS-00214, SRG-OS-000471-GPOS-00215, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000304-GPOS-00121, CCI-002884, SRG-OS-000466-GPOS-00210, SRG-OS-000476-GPOS-00221", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:242", - "label": "check" - }, - { - "data": "Configure RHEL 8 to generate audit records for all account creations, modifications, disabling, and termination events that affect \"/etc/sudoers\".\n\nAdd or update the following file system rule to \"/etc/audit/rules.d/audit.rules\":\n\n-w /etc/sudoers -p wa -k identity\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000004-GPOS-00004, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000304-GPOS-00121, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000470-GPOS-00214, SRG-OS-000471-GPOS-00215, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000304-GPOS-00121, CCI-002884, SRG-OS-000466-GPOS-00210, SRG-OS-000476-GPOS-00221\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230409", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230409r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:242", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33053r567974_fix", - "fixtext_fixref": "F-33053r567974_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230409r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230409r627750_rule", - "version": "RHEL-08-030171", - "time": "2021-12-17T10:30:25", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33053r567974_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:242", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:25", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230410", - "title": "RHEL 8 must generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/sudoers.d/.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000004-GPOS-00004, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000304-GPOS-00121, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000470-GPOS-00214, SRG-OS-000471-GPOS-00215, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000304-GPOS-00121, CCI-002884, SRG-OS-000466-GPOS-00210, SRG-OS-000476-GPOS-00221", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:243", - "label": "check" - }, - { - "data": "Configure RHEL 8 to generate audit records for all account creations, modifications, disabling, and termination events that affect \"/etc/sudoers.d/\".\n\nAdd or update the following file system rule to \"/etc/audit/rules.d/audit.rules\":\n\n-w /etc/sudoers.d/ -p wa -k identity\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000004-GPOS-00004, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000304-GPOS-00121, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000470-GPOS-00214, SRG-OS-000471-GPOS-00215, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000304-GPOS-00121, CCI-002884, SRG-OS-000466-GPOS-00210, SRG-OS-000476-GPOS-00221\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230410", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230410r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:243", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33054r567977_fix", - "fixtext_fixref": "F-33054r567977_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230410r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230410r627750_rule", - "version": "RHEL-08-030172", - "time": "2021-12-17T10:30:25", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33054r567977_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:243", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:25", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230411", - "title": "The RHEL 8 audit package must be installed.", - "desc": "Without establishing what type of events occurred, the source of events, where events occurred, and the outcome of events, it would be difficult to establish, correlate, and investigate the events leading up to an outage or attack.\n\nAudit record content that may be necessary to satisfy this requirement includes, for example, time stamps, source and destination addresses, user/process identifiers, event descriptions, success/fail indications, filenames involved, and access control or flow control rules invoked.\n\nAssociating event types with detected events in RHEL 8 audit logs provides a means of investigating an attack, recognizing resource utilization or capacity thresholds, or identifying an improperly configured RHEL 8 system.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000038-GPOS-00016, SRG-OS-000039-GPOS-00017, SRG-OS-000040-GPOS-00018, SRG-OS-000041-GPOS-00019, SRG-OS-000042-GPOS-00021, SRG-OS-000051-GPOS-00024, SRG-OS-000054-GPOS-00025, SRG-OS-000122-GPOS-00063, SRG-OS-000254-GPOS-00095, SRG-OS-000255-GPOS-00096, SRG-OS-000337-GPOS-00129, SRG-OS-000348-GPOS-00136, SRG-OS-000349-GPOS-00137, SRG-OS-000350-GPOS-00138, SRG-OS-000351-GPOS-00139, SRG-OS-000352-GPOS-00140, SRG-OS-000353-GPOS-00141, SRG-OS-000354-GPOS-00142, SRG-OS-000358-GPOS-00145, SRG-OS-000365-GPOS-00152, SRG-OS-000392-GPOS-00172, SRG-OS-000475-GPOS-00220", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:244", - "label": "check" - }, - { - "data": "Configure the audit service to produce audit records containing the information needed to establish when (date and time) an event occurred.\n\nInstall the audit service (if the audit service is not already installed) with the following command:\n\n$ sudo yum install audit", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without establishing what type of events occurred, the source of events, where events occurred, and the outcome of events, it would be difficult to establish, correlate, and investigate the events leading up to an outage or attack.\\n\\nAudit record content that may be necessary to satisfy this requirement includes, for example, time stamps, source and destination addresses, user/process identifiers, event descriptions, success/fail indications, filenames involved, and access control or flow control rules invoked.\\n\\nAssociating event types with detected events in RHEL 8 audit logs provides a means of investigating an attack, recognizing resource utilization or capacity thresholds, or identifying an improperly configured RHEL 8 system.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000038-GPOS-00016, SRG-OS-000039-GPOS-00017, SRG-OS-000040-GPOS-00018, SRG-OS-000041-GPOS-00019, SRG-OS-000042-GPOS-00021, SRG-OS-000051-GPOS-00024, SRG-OS-000054-GPOS-00025, SRG-OS-000122-GPOS-00063, SRG-OS-000254-GPOS-00095, SRG-OS-000255-GPOS-00096, SRG-OS-000337-GPOS-00129, SRG-OS-000348-GPOS-00136, SRG-OS-000349-GPOS-00137, SRG-OS-000350-GPOS-00138, SRG-OS-000351-GPOS-00139, SRG-OS-000352-GPOS-00140, SRG-OS-000353-GPOS-00141, SRG-OS-000354-GPOS-00142, SRG-OS-000358-GPOS-00145, SRG-OS-000365-GPOS-00152, SRG-OS-000392-GPOS-00172, SRG-OS-000475-GPOS-00220\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230411", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230411r744000_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:244", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33055r646880_fix", - "fixtext_fixref": "F-33055r646880_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230411r744000_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230411r744000_rule", - "version": "RHEL-08-030180", - "time": "2021-12-17T10:30:25", - "weight": "10.0", - "severity": "medium", - "cdf:result": "pass", - "cdf:ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33055r646880_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:244", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:25", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230412", - "title": "Successful/unsuccessful uses of the su command in RHEL 8 must generate an audit record.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"su\" command allows a user to run commands with a substitute user and group ID.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000064-GPOS-0003, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000466-GPOS-00210", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:245", - "label": "check" - }, - { - "data": "Configure RHEL 8 to generate audit records when successful/unsuccessful attempts to use the \"su\" command occur by adding or updating the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F path=/usr/bin/su -F perm=x -F auid>=1000 -F auid!=unset -k privileged-priv_change\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"su\\\" command allows a user to run commands with a substitute user and group ID.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000064-GPOS-0003, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000466-GPOS-00210\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230412", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230412r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:245", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33056r567983_fix", - "fixtext_fixref": "F-33056r567983_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230412r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230412r627750_rule", - "version": "RHEL-08-030190", - "time": "2021-12-17T10:30:25", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33056r567983_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:245", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:25", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230413", - "title": "The RHEL 8 audit system must be configured to audit any usage of the lremovexattr system call.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). \"Lremovexattr\" is a system call that removes extended attributes. This is used for removal of extended attributes from symbolic links.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000462-GPOS-00206, SRG-OS-000463-GPOS-00207, SRG-OS-000468-GPOS-00212, SRG-OS-000471-GPOS-00215, SRG-OS-000474-GPOS-00219, SRG-OS-000466-GPOS-00210", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:246", - "label": "check" - }, - { - "data": "Configure RHEL 8 to audit the execution of the \"lremovexattr\" system call, by adding or updating the following lines to \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S lremovexattr -F auid>=1000 -F auid!=unset -k perm_mod\n-a always,exit -F arch=b64 -S lremovexattr -F auid>=1000 -F auid!=unset -k perm_mod\n\n-a always,exit -F arch=b32 -S lremovexattr -F auid=0 -k perm_mod\n-a always,exit -F arch=b64 -S lremovexattr -F auid=0 -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). \\\"Lremovexattr\\\" is a system call that removes extended attributes. This is used for removal of extended attributes from symbolic links.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000462-GPOS-00206, SRG-OS-000463-GPOS-00207, SRG-OS-000468-GPOS-00212, SRG-OS-000471-GPOS-00215, SRG-OS-000474-GPOS-00219, SRG-OS-000466-GPOS-00210\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230413", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230413r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:246", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33057r567986_fix", - "fixtext_fixref": "F-33057r567986_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230413r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230413r627750_rule", - "version": "RHEL-08-030200", - "time": "2021-12-17T10:30:25", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33057r567986_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:246", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:25", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230414", - "title": "The RHEL 8 audit system must be configured to audit any usage of the removexattr system call.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). \"Removexattr\" is a system call that removes extended attributes.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000462-GPOS-00206, SRG-OS-000463-GPOS-00207, SRG-OS-000468-GPOS-00212, SRG-OS-000471-GPOS-00215, SRG-OS-000474-GPOS-00219, SRG-OS-000466-GPOS-00210", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:247", - "label": "check" - }, - { - "data": "Configure RHEL 8 to audit the execution of the \"removexattr\" system call, by adding or updating the following lines to \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S removexattr -F auid>=1000 -F auid!=unset -k perm_mod\n-a always,exit -F arch=b64 -S removexattr -F auid>=1000 -F auid!=unset -k perm_mod\n\n-a always,exit -F arch=b32 -S removexattr -F auid=0 -k perm_mod\n-a always,exit -F arch=b64 -S removexattr -F auid=0 -k perm_mod \n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). \\\"Removexattr\\\" is a system call that removes extended attributes.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000462-GPOS-00206, SRG-OS-000463-GPOS-00207, SRG-OS-000468-GPOS-00212, SRG-OS-000471-GPOS-00215, SRG-OS-000474-GPOS-00219, SRG-OS-000466-GPOS-00210\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230414", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230414r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:247", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33058r567989_fix", - "fixtext_fixref": "F-33058r567989_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230414r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230414r627750_rule", - "version": "RHEL-08-030210", - "time": "2021-12-17T10:30:25", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33058r567989_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:247", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:25", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230415", - "title": "The RHEL 8 audit system must be configured to audit any usage of the lsetxattr system call.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). \"Lsetxattr\" is a system call used to set an extended attribute value. This is used to set extended attributes on a symbolic link.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000462-GPOS-00206, SRG-OS-000463-GPOS-00207, SRG-OS-000468-GPOS-00212, SRG-OS-000471-GPOS-00215, SRG-OS-000474-GPOS-00219", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:248", - "label": "check" - }, - { - "data": "Configure RHEL 8 to audit the execution of the \"lsetxattr\" system call, by adding or updating the following lines to \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S lsetxattr -F auid>=1000 -F auid!=unset -k perm_mod\n-a always,exit -F arch=b64 -S lsetxattr -F auid>=1000 -F auid!=unset -k perm_mod\n\n-a always,exit -F arch=b32 -S lsetxattr -F auid=0 -k perm_mod \n-a always,exit -F arch=b64 -S lsetxattr -F auid=0 -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). \\\"Lsetxattr\\\" is a system call used to set an extended attribute value. This is used to set extended attributes on a symbolic link.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000462-GPOS-00206, SRG-OS-000463-GPOS-00207, SRG-OS-000468-GPOS-00212, SRG-OS-000471-GPOS-00215, SRG-OS-000474-GPOS-00219\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230415", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230415r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:248", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33059r567992_fix", - "fixtext_fixref": "F-33059r567992_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230415r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230415r627750_rule", - "version": "RHEL-08-030220", - "time": "2021-12-17T10:30:25", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33059r567992_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:248", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:25", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230416", - "title": "The RHEL 8 audit system must be configured to audit any usage of the fsetxattr system call.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). \"Fsetxattr\" is a system call used to set an extended attribute value. This is used to set extended attributes on a file.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The auid representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000462-GPOS-00206, SRG-OS-000463-GPOS-00207, SRG-OS-000468-GPOS-00212, SRG-OS-000471-GPOS-00215, SRG-OS-000474-GPOS-00219", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:249", - "label": "check" - }, - { - "data": "Configure RHEL 8 to audit the execution of the \"fsetxattr\" system call, by adding or updating the following lines to \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S fsetxattr -F auid>=1000 -F auid!=unset -k perm_mod\n-a always,exit -F arch=b64 -S fsetxattr -F auid>=1000 -F auid!=unset -k perm_mod\n\n-a always,exit -F arch=b32 -S fsetxattr -F auid=0 -k perm_mod\n-a always,exit -F arch=b64 -S fsetxattr -F auid=0 -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). \\\"Fsetxattr\\\" is a system call used to set an extended attribute value. This is used to set extended attributes on a file.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The auid representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000462-GPOS-00206, SRG-OS-000463-GPOS-00207, SRG-OS-000468-GPOS-00212, SRG-OS-000471-GPOS-00215, SRG-OS-000474-GPOS-00219\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230416", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230416r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:249", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33060r567995_fix", - "fixtext_fixref": "F-33060r567995_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230416r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230416r627750_rule", - "version": "RHEL-08-030230", - "time": "2021-12-17T10:30:26", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33060r567995_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:249", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:26", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230417", - "title": "The RHEL 8 audit system must be configured to audit any usage of the fremovexattr system call.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). \"Fremovexattr\" is a system call that removes extended attributes. This is used for removal of extended attributes from a file.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000462-GPOS-00206, SRG-OS-000463-GPOS-00207, SRG-OS-000471-GPOS-00215, SRG-OS-000474-GPOS-00219, SRG-OS-000466-GPOS-00210", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:250", - "label": "check" - }, - { - "data": "Configure RHEL 8 to audit the execution of the \"fremovexattr\" system call by adding or updating the following lines to \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S fremovexattr -F auid>=1000 -F auid!=unset -k perm_mod\n-a always,exit -F arch=b64 -S fremovexattr -F auid>=1000 -F auid!=unset -k perm_mod\n\n-a always,exit -F arch=b32 -S fremovexattr -F auid=0 -k perm_mod\n-a always,exit -F arch=b64 -S fremovexattr -F auid=0 -k perm_mod \n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). \\\"Fremovexattr\\\" is a system call that removes extended attributes. This is used for removal of extended attributes from a file.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000462-GPOS-00206, SRG-OS-000463-GPOS-00207, SRG-OS-000471-GPOS-00215, SRG-OS-000474-GPOS-00219, SRG-OS-000466-GPOS-00210\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230417", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230417r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:250", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33061r567998_fix", - "fixtext_fixref": "F-33061r567998_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230417r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230417r627750_rule", - "version": "RHEL-08-030240", - "time": "2021-12-17T10:30:26", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33061r567998_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:250", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:26", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230418", - "title": "Successful/unsuccessful uses of the chage command in RHEL 8 must generate an audit record.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"chage\" command is used to change or view user password expiry information.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000468-GPOS-00212, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:251", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \"chage\" command by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/bin/chage -F perm=x -F auid>=1000 -F auid!=unset -k privileged-chage\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"chage\\\" command is used to change or view user password expiry information.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000468-GPOS-00212, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230418", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230418r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:251", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33062r568001_fix", - "fixtext_fixref": "F-33062r568001_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230418r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230418r627750_rule", - "version": "RHEL-08-030250", - "time": "2021-12-17T10:30:26", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33062r568001_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:251", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:26", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230419", - "title": "Successful/unsuccessful uses of the chcon command in RHEL 8 must generate an audit record.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"chcon\" command is used to change file SELinux security context.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000468-GPOS-00212, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:252", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"chcon\" command by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/bin/chcon -F perm=x -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"chcon\\\" command is used to change file SELinux security context.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000468-GPOS-00212, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230419", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230419r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:252", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33063r568004_fix", - "fixtext_fixref": "F-33063r568004_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230419r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230419r627750_rule", - "version": "RHEL-08-030260", - "time": "2021-12-17T10:30:26", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33063r568004_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:252", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:26", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230420", - "title": "The RHEL 8 audit system must be configured to audit any usage of the setxattr system call.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). \"Setxattr\" is a system call used to set an extended attribute value.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:253", - "label": "check" - }, - { - "data": "Configure RHEL 8 to audit the execution of the \"setxattr\" system call, by adding or updating the following lines to \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S setxattr -F auid>=1000 -F auid!=unset -k perm_mod\n-a always,exit -F arch=b64 -S setxattr -F auid>=1000 -F auid!=unset -k perm_mod\n\n-a always,exit -F arch=b32 -S setxattr -F auid=0 -k perm_mod\n-a always,exit -F arch=b64 -S setxattr -F auid=0 -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). \\\"Setxattr\\\" is a system call used to set an extended attribute value.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230420", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230420r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:253", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33064r568007_fix", - "fixtext_fixref": "F-33064r568007_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230420r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230420r627750_rule", - "version": "RHEL-08-030270", - "time": "2021-12-17T10:30:26", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33064r568007_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:253", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:26", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230421", - "title": "Successful/unsuccessful uses of the ssh-agent in RHEL 8 must generate an audit record.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"ssh-agent\" is a program to hold private keys used for public key authentication.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:254", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"ssh-agent\" by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/bin/ssh-agent -F perm=x -F auid>=1000 -F auid!=unset -k privileged-ssh\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"ssh-agent\\\" is a program to hold private keys used for public key authentication.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230421", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230421r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:254", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33065r568010_fix", - "fixtext_fixref": "F-33065r568010_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230421r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230421r627750_rule", - "version": "RHEL-08-030280", - "time": "2021-12-17T10:30:26", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33065r568010_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:254", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:26", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230422", - "title": "Successful/unsuccessful uses of the passwd command in RHEL 8 must generate an audit record.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"passwd\" command is used to change passwords for user accounts.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:255", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \"passwd\" command by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/bin/passwd -F perm=x -F auid>=1000 -F auid!=unset -k privileged-passwd\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"passwd\\\" command is used to change passwords for user accounts.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230422", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230422r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:255", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33066r568013_fix", - "fixtext_fixref": "F-33066r568013_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230422r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230422r627750_rule", - "version": "RHEL-08-030290", - "time": "2021-12-17T10:30:26", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33066r568013_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:255", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:26", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230423", - "title": "Successful/unsuccessful uses of the mount command in RHEL 8 must generate an audit record.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"mount\" command is used to mount a filesystem.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:256", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"mount\" command by adding or updating the following rules in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/bin/mount -F perm=x -F auid>=1000 -F auid!=unset -k privileged-mount\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"mount\\\" command is used to mount a filesystem.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230423", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230423r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:256", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33067r568016_fix", - "fixtext_fixref": "F-33067r568016_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230423r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230423r627750_rule", - "version": "RHEL-08-030300", - "time": "2021-12-17T10:30:26", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33067r568016_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:256", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:26", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230424", - "title": "Successful/unsuccessful uses of the umount command in RHEL 8 must generate an audit record.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"umount\" command is used to unmount a filesystem.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:257", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"umount\" command by adding or updating the following rules in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/bin/umount -F perm=x -F auid>=1000 -F auid!=unset -k privileged-mount\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"umount\\\" command is used to unmount a filesystem.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230424", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230424r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:257", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33068r568019_fix", - "fixtext_fixref": "F-33068r568019_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230424r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230424r627750_rule", - "version": "RHEL-08-030301", - "time": "2021-12-17T10:30:26", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33068r568019_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:257", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:26", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230425", - "title": "Successful/unsuccessful uses of the mount syscall in RHEL 8 must generate an audit record.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"mount\" syscall is used to mount a filesystem.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:258", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"mount\" syscall by adding or updating the following rules in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F arch=b32 -S mount -F auid>=1000 -F auid!=unset -k privileged-mount\n-a always,exit -F arch=b64 -S mount -F auid>=1000 -F auid!=unset -k privileged-mount\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"mount\\\" syscall is used to mount a filesystem.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230425", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230425r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:258", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33069r568022_fix", - "fixtext_fixref": "F-33069r568022_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230425r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230425r627750_rule", - "version": "RHEL-08-030302", - "time": "2021-12-17T10:30:26", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33069r568022_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:258", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:26", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230426", - "title": "Successful/unsuccessful uses of the unix_update in RHEL 8 must generate an audit record.", - "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. \"Unix_update\" is a helper program for the \"pam_unix\" module that updates the password for a given user. It is not intended to be run directly from the command line and logs a security violation if done so.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:259", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \"unix_update\" by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/sbin/unix_update -F perm=x -F auid>=1000 -F auid!=unset -k privileged-unix-update\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. \\\"Unix_update\\\" is a helper program for the \\\"pam_unix\\\" module that updates the password for a given user. It is not intended to be run directly from the command line and logs a security violation if done so.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230426", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230426r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:259", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33070r568025_fix", - "fixtext_fixref": "F-33070r568025_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230426r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230426r627750_rule", - "version": "RHEL-08-030310", - "time": "2021-12-17T10:30:26", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33070r568025_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:259", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:26", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230427", - "title": "Successful/unsuccessful uses of postdrop in RHEL 8 must generate an audit record.", - "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. The \"postdrop\" command creates a file in the maildrop directory and copies its standard input to the file.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:260", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \"postdrop\" by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/sbin/postdrop -F perm=x -F auid>=1000 -F auid!=unset -k privileged-unix-update\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. The \\\"postdrop\\\" command creates a file in the maildrop directory and copies its standard input to the file.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230427", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230427r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:260", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33071r568028_fix", - "fixtext_fixref": "F-33071r568028_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230427r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230427r627750_rule", - "version": "RHEL-08-030311", - "time": "2021-12-17T10:30:26", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33071r568028_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:260", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:26", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230428", - "title": "Successful/unsuccessful uses of postqueue in RHEL 8 must generate an audit record.", - "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. The \"postqueue\" command implements the Postfix user interface for queue management.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:261", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \"postqueue\" by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/sbin/postqueue -F perm=x -F auid>=1000 -F auid!=unset -k privileged-unix-update\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. The \\\"postqueue\\\" command implements the Postfix user interface for queue management.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230428", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230428r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:261", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33072r568031_fix", - "fixtext_fixref": "F-33072r568031_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230428r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230428r627750_rule", - "version": "RHEL-08-030312", - "time": "2021-12-17T10:30:26", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33072r568031_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:261", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:26", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230429", - "title": "Successful/unsuccessful uses of semanage in RHEL 8 must generate an audit record.", - "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. The \"semanage\" command is used to configure certain elements of SELinux policy without requiring modification to or recompilation from policy sources.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:262", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \"semanage\" by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/sbin/semanage -F perm=x -F auid>=1000 -F auid!=unset -k privileged-unix-update\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. The \\\"semanage\\\" command is used to configure certain elements of SELinux policy without requiring modification to or recompilation from policy sources.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230429", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230429r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:262", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33073r568034_fix", - "fixtext_fixref": "F-33073r568034_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230429r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230429r627750_rule", - "version": "RHEL-08-030313", - "time": "2021-12-17T10:30:26", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33073r568034_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:262", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:26", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230430", - "title": "Successful/unsuccessful uses of setfiles in RHEL 8 must generate an audit record.", - "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. The \"setfiles\" command is primarily used to initialize the security context fields (extended attributes) on one or more filesystems (or parts of them). Usually it is initially run as part of the SELinux installation process (a step commonly known as labeling).\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:263", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \"setfiles\" by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/sbin/setfiles -F perm=x -F auid>=1000 -F auid!=unset -k privileged-unix-update\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. The \\\"setfiles\\\" command is primarily used to initialize the security context fields (extended attributes) on one or more filesystems (or parts of them). Usually it is initially run as part of the SELinux installation process (a step commonly known as labeling).\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230430", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230430r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:263", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33074r568037_fix", - "fixtext_fixref": "F-33074r568037_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230430r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230430r627750_rule", - "version": "RHEL-08-030314", - "time": "2021-12-17T10:30:26", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33074r568037_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:263", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:26", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230431", - "title": "Successful/unsuccessful uses of userhelper in RHEL 8 must generate an audit record.", - "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. The \"userhelper\" command is not intended to be run interactively. \"Userhelper\" provides a basic interface to change a user's password, gecos information, and shell. The main difference between this program and its traditional equivalents (passwd, chfn, chsh) is that prompts are written to standard out to make it easy for a graphical user interface wrapper to interface to it as a child process.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:264", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \"userhelper\" by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/sbin/userhelper -F perm=x -F auid>=1000 -F auid!=unset -k privileged-unix-update\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. The \\\"userhelper\\\" command is not intended to be run interactively. \\\"Userhelper\\\" provides a basic interface to change a user's password, gecos information, and shell. The main difference between this program and its traditional equivalents (passwd, chfn, chsh) is that prompts are written to standard out to make it easy for a graphical user interface wrapper to interface to it as a child process.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230431", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230431r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:264", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33075r568040_fix", - "fixtext_fixref": "F-33075r568040_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230431r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230431r627750_rule", - "version": "RHEL-08-030315", - "time": "2021-12-17T10:30:26", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33075r568040_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:264", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:26", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230432", - "title": "Successful/unsuccessful uses of setsebool in RHEL 8 must generate an audit record.", - "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. The \"setsebool\" command sets the current state of a particular SELinux boolean or a list of booleans to a given value.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:265", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \"setsebool\" by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/sbin/setsebool -F perm=x -F auid>=1000 -F auid!=unset -k privileged-unix-update\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. The \\\"setsebool\\\" command sets the current state of a particular SELinux boolean or a list of booleans to a given value.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230432", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230432r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:265", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33076r568043_fix", - "fixtext_fixref": "F-33076r568043_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230432r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230432r627750_rule", - "version": "RHEL-08-030316", - "time": "2021-12-17T10:30:26", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33076r568043_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:265", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:26", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230433", - "title": "Successful/unsuccessful uses of unix_chkpwd in RHEL 8 must generate an audit record.", - "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. The \"unix_chkpwd\" command is a helper program for the pam_unix module that verifies the password of the current user. It also checks password and account expiration dates in shadow. It is not intended to be run directly from the command line and logs a security violation if done so.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:266", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \"unix_chkpwd\" by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/sbin/unix_chkpwd -F perm=x -F auid>=1000 -F auid!=unset -k privileged-unix-update\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. The \\\"unix_chkpwd\\\" command is a helper program for the pam_unix module that verifies the password of the current user. It also checks password and account expiration dates in shadow. It is not intended to be run directly from the command line and logs a security violation if done so.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230433", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230433r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:266", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33077r568046_fix", - "fixtext_fixref": "F-33077r568046_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230433r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230433r627750_rule", - "version": "RHEL-08-030317", - "time": "2021-12-17T10:30:26", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33077r568046_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:266", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:26", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230434", - "title": "Successful/unsuccessful uses of the ssh-keysign in RHEL 8 must generate an audit record.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"ssh-keysign\" program is an SSH helper program for host-based authentication.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:267", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"ssh-keysign\" by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/libexec/openssh/ssh-keysign -F perm=x -F auid>=1000 -F auid!=unset -k privileged-ssh\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"ssh-keysign\\\" program is an SSH helper program for host-based authentication.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230434", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230434r744002_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:267", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33078r744001_fix", - "fixtext_fixref": "F-33078r744001_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230434r744002_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230434r744002_rule", - "version": "RHEL-08-030320", - "time": "2021-12-17T10:30:26", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33078r744001_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:267", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:26", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230435", - "title": "Successful/unsuccessful uses of the setfacl command in RHEL 8 must generate an audit record.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"setfacl\" command is used to set file access control lists.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:268", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"setfacl\" command by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/bin/setfacl -F perm=x -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"setfacl\\\" command is used to set file access control lists.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230435", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230435r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:268", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33079r568052_fix", - "fixtext_fixref": "F-33079r568052_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230435r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230435r627750_rule", - "version": "RHEL-08-030330", - "time": "2021-12-17T10:30:26", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33079r568052_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:268", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:26", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230436", - "title": "Successful/unsuccessful uses of the pam_timestamp_check command in RHEL 8 must generate an audit record.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"pam_timestamp_check\" command is used to check if the default timestamp is valid.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:269", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \"pam_timestamp_check\" command by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/sbin/pam_timestamp_check -F perm=x -F auid>=1000 -F auid!=unset -k privileged-pam_timestamp_check\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"pam_timestamp_check\\\" command is used to check if the default timestamp is valid.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230436", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230436r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:269", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33080r568055_fix", - "fixtext_fixref": "F-33080r568055_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230436r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230436r627750_rule", - "version": "RHEL-08-030340", - "time": "2021-12-17T10:30:26", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33080r568055_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:269", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:26", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230437", - "title": "Successful/unsuccessful uses of the newgrp command in RHEL 8 must generate an audit record.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"newgrp\" command is used to change the current group ID during a login session.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:270", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"newgrp\" command by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/bin/newgrp -F perm=x -F auid>=1000 -F auid!=unset -k priv_cmd\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"newgrp\\\" command is used to change the current group ID during a login session.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230437", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230437r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:270", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33081r568058_fix", - "fixtext_fixref": "F-33081r568058_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230437r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230437r627750_rule", - "version": "RHEL-08-030350", - "time": "2021-12-17T10:30:26", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33081r568058_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:270", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:26", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230438", - "title": "Successful/unsuccessful uses of the init_module command in RHEL 8 must generate an audit record.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"init_module\" command is used to load a kernel module.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:271", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"init_module\" command by adding or updating the following rules in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F arch=b32 -S init_module -F auid>=1000 -F auid!=unset -k module_chng\n-a always,exit -F arch=b64 -S init_module -F auid>=1000 -F auid!=unset -k module_chng\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"init_module\\\" command is used to load a kernel module.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230438", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230438r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:271", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33082r568061_fix", - "fixtext_fixref": "F-33082r568061_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230438r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230438r627750_rule", - "version": "RHEL-08-030360", - "time": "2021-12-17T10:30:27", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33082r568061_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:271", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:27", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230439", - "title": "Successful/unsuccessful uses of the rename command in RHEL 8 must generate an audit record.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"rename\" command will rename the specified files by replacing the first occurrence of expression in their name by replacement.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:272", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"rename\" command by adding or updating the following rules in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F arch=b32 -S rename -F auid>=1000 -F auid!=unset -k delete\n-a always,exit -F arch=b64 -S rename -F auid>=1000 -F auid!=unset -k delete\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"rename\\\" command will rename the specified files by replacing the first occurrence of expression in their name by replacement.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230439", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230439r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:272", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33083r568064_fix", - "fixtext_fixref": "F-33083r568064_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230439r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230439r627750_rule", - "version": "RHEL-08-030361", - "time": "2021-12-17T10:30:27", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33083r568064_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:272", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:27", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230440", - "title": "Successful/unsuccessful uses of the renameat command in RHEL 8 must generate an audit record.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"renameat\" command renames a file, moving it between directories if required.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:273", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"renameat\" command by adding or updating the following rules in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F arch=b32 -S renameat -F auid>=1000 -F auid!=unset -k delete\n-a always,exit -F arch=b64 -S renameat -F auid>=1000 -F auid!=unset -k delete\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"renameat\\\" command renames a file, moving it between directories if required.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230440", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230440r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:273", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33084r568067_fix", - "fixtext_fixref": "F-33084r568067_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230440r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230440r627750_rule", - "version": "RHEL-08-030362", - "time": "2021-12-17T10:30:27", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33084r568067_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:273", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:27", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230441", - "title": "Successful/unsuccessful uses of the rmdir command in RHEL 8 must generate an audit record.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"rmdir\" command removes empty directories.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:274", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"rmdir\" command by adding or updating the following rules in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F arch=b32 -S rmdir -F auid>=1000 -F auid!=unset -k delete\n-a always,exit -F arch=b64 -S rmdir -F auid>=1000 -F auid!=unset -k delete\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"rmdir\\\" command removes empty directories.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230441", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230441r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:274", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33085r568070_fix", - "fixtext_fixref": "F-33085r568070_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230441r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230441r627750_rule", - "version": "RHEL-08-030363", - "time": "2021-12-17T10:30:27", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33085r568070_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:274", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:27", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230442", - "title": "Successful/unsuccessful uses of the unlink command in RHEL 8 must generate an audit record.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"unlink\" command deletes a name from the filesystem. If that name was the last link to a file and no processes have the file open, the file is deleted and the space it was using is made available for reuse. \n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:275", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"unlink\" command by adding or updating the following rules in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F arch=b32 -S unlink -F auid>=1000 -F auid!=unset -k delete\n-a always,exit -F arch=b64 -S unlink -F auid>=1000 -F auid!=unset -k delete\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"unlink\\\" command deletes a name from the filesystem. If that name was the last link to a file and no processes have the file open, the file is deleted and the space it was using is made available for reuse. \\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230442", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230442r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:275", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33086r568073_fix", - "fixtext_fixref": "F-33086r568073_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230442r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230442r627750_rule", - "version": "RHEL-08-030364", - "time": "2021-12-17T10:30:27", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33086r568073_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:275", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:27", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230443", - "title": "Successful/unsuccessful uses of the unlinkat command in RHEL 8 must generate an audit record.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"unlinkat\" system call operates in exactly the same way as either \"unlink\" or \"rmdir\" except for the differences described in the manual page.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:276", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"unlinkat\" command by adding or updating the following rules in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F arch=b32 -S unlinkat -F auid>=1000 -F auid!=unset -k delete\n-a always,exit -F arch=b64 -S unlinkat -F auid>=1000 -F auid!=unset -k delete\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"unlinkat\\\" system call operates in exactly the same way as either \\\"unlink\\\" or \\\"rmdir\\\" except for the differences described in the manual page.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230443", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230443r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:276", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33087r568076_fix", - "fixtext_fixref": "F-33087r568076_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230443r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230443r627750_rule", - "version": "RHEL-08-030365", - "time": "2021-12-17T10:30:27", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33087r568076_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:276", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:27", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230444", - "title": "Successful/unsuccessful uses of the gpasswd command in RHEL 8 must generate an audit record.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"gpasswd\" command is used to administer /etc/group and /etc/gshadow. Every group can have administrators, members and a password.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:277", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \"gpasswd\" command by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/bin/gpasswd -F perm=x -F auid>=1000 -F auid!=unset -k privileged-gpasswd\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"gpasswd\\\" command is used to administer /etc/group and /etc/gshadow. Every group can have administrators, members and a password.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230444", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230444r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:277", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33088r568079_fix", - "fixtext_fixref": "F-33088r568079_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230444r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230444r627750_rule", - "version": "RHEL-08-030370", - "time": "2021-12-17T10:30:27", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33088r568079_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:277", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:27", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230445", - "title": "Successful/unsuccessful uses of the finit_module command in RHEL 8 must generate an audit record.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"finit_module\" command is used to load a kernel module.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:278", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"finit_module\" command by adding or updating the following rules in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F arch=b32 -S finit_module -F auid>=1000 -F auid!=unset -k module_chng\n-a always,exit -F arch=b64 -S finit_module -F auid>=1000 -F auid!=unset -k module_chng\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"finit_module\\\" command is used to load a kernel module.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230445", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230445r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:278", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33089r568082_fix", - "fixtext_fixref": "F-33089r568082_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230445r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230445r627750_rule", - "version": "RHEL-08-030380", - "time": "2021-12-17T10:30:27", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33089r568082_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:278", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:27", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230446", - "title": "Successful/unsuccessful uses of the delete_module command in RHEL 8 must generate an audit record.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"delete_module\" command is used to unload a kernel module.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:279", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"delete_module\" command by adding or updating the following rules in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F arch=b32 -S delete_module -F auid>=1000 -F auid!=unset -k module_chng\n-a always,exit -F arch=b64 -S delete_module -F auid>=1000 -F auid!=unset -k module_chng\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"delete_module\\\" command is used to unload a kernel module.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230446", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230446r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:279", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33090r568085_fix", - "fixtext_fixref": "F-33090r568085_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230446r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230446r627750_rule", - "version": "RHEL-08-030390", - "time": "2021-12-17T10:30:27", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33090r568085_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:279", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:27", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230447", - "title": "Successful/unsuccessful uses of the crontab command in RHEL 8 must generate an audit record.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"crontab\" command is used to maintain crontab files for individual users. Crontab is the program used to install, remove, or list the tables used to drive the cron daemon. This is similar to the task scheduler used in other operating systems.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:280", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \"crontab\" command by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/bin/crontab -F perm=x -F auid>=1000 -F auid!=unset -k privileged-crontab\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"crontab\\\" command is used to maintain crontab files for individual users. Crontab is the program used to install, remove, or list the tables used to drive the cron daemon. This is similar to the task scheduler used in other operating systems.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230447", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230447r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:280", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33091r568088_fix", - "fixtext_fixref": "F-33091r568088_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230447r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230447r627750_rule", - "version": "RHEL-08-030400", - "time": "2021-12-17T10:30:27", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33091r568088_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:280", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:27", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230448", - "title": "Successful/unsuccessful uses of the chsh command in RHEL 8 must generate an audit record.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"chsh\" command is used to change the login shell.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:281", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"chsh\" command by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/bin/chsh -F perm=x -F auid>=1000 -F auid!=unset -k priv_cmd\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"chsh\\\" command is used to change the login shell.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230448", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230448r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:281", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33092r568091_fix", - "fixtext_fixref": "F-33092r568091_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230448r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230448r627750_rule", - "version": "RHEL-08-030410", - "time": "2021-12-17T10:30:27", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33092r568091_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:281", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:27", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230449", - "title": "Successful/unsuccessful uses of the truncate command in RHEL 8 must generate an audit record.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"truncate\" and \"ftruncate\" functions are used to truncate a file to a specified length. \n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:282", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"truncate\" command by adding or updating the following rules in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F arch=b32 -S truncate -F exit=-EPERM -F auid>=1000 -F auid!=unset -k perm_access\n-a always,exit -F arch=b64 -S truncate -F exit=-EPERM -F auid>=1000 -F auid!=unset -k perm_access\n\n-a always,exit -F arch=b32 -S truncate -F exit=-EACCES -F auid>=1000 -F auid!=unset -k perm_access\n-a always,exit -F arch=b64 -S truncate -F exit=-EACCES -F auid>=1000 -F auid!=unset -k perm_access\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"truncate\\\" and \\\"ftruncate\\\" functions are used to truncate a file to a specified length. \\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230449", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230449r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:282", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33093r568094_fix", - "fixtext_fixref": "F-33093r568094_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230449r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230449r627750_rule", - "version": "RHEL-08-030420", - "time": "2021-12-17T10:30:27", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33093r568094_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:282", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:27", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230450", - "title": "Successful/unsuccessful uses of the openat system call in RHEL 8 must generate an audit record.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"openat\" system call opens a file specified by a relative pathname.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:283", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"openat\" command by adding or updating the following rules in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F arch=b32 -S openat -F exit=-EPERM -F auid>=1000 -F auid!=unset -k perm_access\n-a always,exit -F arch=b64 -S openat -F exit=-EPERM -F auid>=1000 -F auid!=unset -k perm_access\n\n-a always,exit -F arch=b32 -S openat -F exit=-EACCES -F auid>=1000 -F auid!=unset -k perm_access\n-a always,exit -F arch=b64 -S openat -F exit=-EACCES -F auid>=1000 -F auid!=unset -k perm_access\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"openat\\\" system call opens a file specified by a relative pathname.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230450", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230450r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:283", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33094r568097_fix", - "fixtext_fixref": "F-33094r568097_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230450r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230450r627750_rule", - "version": "RHEL-08-030430", - "time": "2021-12-17T10:30:27", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33094r568097_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:283", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:27", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230451", - "title": "Successful/unsuccessful uses of the open system call in RHEL 8 must generate an audit record.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"open system\" call opens a file specified by a pathname. If the specified file does not exist, it may optionally be created by \"open\".\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:284", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"open\" system call by adding or updating the following rules in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F arch=b32 -S open -F exit=-EPERM -F auid>=1000 -F auid!=unset -k perm_access\n-a always,exit -F arch=b64 -S open -F exit=-EPERM -F auid>=1000 -F auid!=unset -k perm_access\n\n-a always,exit -F arch=b32 -S open -F exit=-EACCES -F auid>=1000 -F auid!=unset -k perm_access\n-a always,exit -F arch=b64 -S open -F exit=-EACCES -F auid>=1000 -F auid!=unset -k perm_access\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"open system\\\" call opens a file specified by a pathname. If the specified file does not exist, it may optionally be created by \\\"open\\\".\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230451", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230451r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:284", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33095r568100_fix", - "fixtext_fixref": "F-33095r568100_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230451r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230451r627750_rule", - "version": "RHEL-08-030440", - "time": "2021-12-17T10:30:27", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33095r568100_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:284", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:27", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230452", - "title": "Successful/unsuccessful uses of the open_by_handle_at system call in RHEL 8 must generate an audit record.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"name_to_handle_at\" and \"open_by_handle_at\" system calls split the functionality of openat into two parts: \"name_to_handle_at\" returns an opaque handle that corresponds to a specified file; \"open_by_handle_at\" opens the file corresponding to a handle returned by a previous call to \"name_to_handle_at\" and returns an open file descriptor.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:285", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"open_by_handle_at\" system call by adding or updating the following rules in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F arch=b32 -S open_by_handle_at -F exit=-EPERM -F auid>=1000 -F auid!=unset -k perm_access\n-a always,exit -F arch=b64 -S open_by_handle_at -F exit=-EPERM -F auid>=1000 -F auid!=unset -k perm_access\n\n-a always,exit -F arch=b32 -S open_by_handle_at -F exit=-EACCES -F auid>=1000 -F auid!=unset -k perm_access\n-a always,exit -F arch=b64 -S open_by_handle_at -F exit=-EACCES -F auid>=1000 -F auid!=unset -k perm_access\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"name_to_handle_at\\\" and \\\"open_by_handle_at\\\" system calls split the functionality of openat into two parts: \\\"name_to_handle_at\\\" returns an opaque handle that corresponds to a specified file; \\\"open_by_handle_at\\\" opens the file corresponding to a handle returned by a previous call to \\\"name_to_handle_at\\\" and returns an open file descriptor.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230452", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230452r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:285", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33096r568103_fix", - "fixtext_fixref": "F-33096r568103_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230452r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230452r627750_rule", - "version": "RHEL-08-030450", - "time": "2021-12-17T10:30:27", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33096r568103_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:285", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:27", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230453", - "title": "Successful/unsuccessful uses of the ftruncate command in RHEL 8 must generate an audit record.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"truncate\" and \"ftruncate\" functions are used to truncate a file to a specified length.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:286", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"ftruncate\" command by adding or updating the following rules in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F arch=b32 -S ftruncate -F exit=-EPERM -F auid>=1000 -F auid!=unset -k perm_access\n-a always,exit -F arch=b64 -S ftruncate -F exit=-EPERM -F auid>=1000 -F auid!=unset -k perm_access\n\n-a always,exit -F arch=b32 -S ftruncate -F exit=-EACCES -F auid>=1000 -F auid!=unset -k perm_access\n-a always,exit -F arch=b64 -S ftruncate -F exit=-EACCES -F auid>=1000 -F auid!=unset -k perm_access\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"truncate\\\" and \\\"ftruncate\\\" functions are used to truncate a file to a specified length.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230453", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230453r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:286", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33097r568106_fix", - "fixtext_fixref": "F-33097r568106_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230453r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230453r627750_rule", - "version": "RHEL-08-030460", - "time": "2021-12-17T10:30:27", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33097r568106_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:286", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:27", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230454", - "title": "Successful/unsuccessful uses of the creat system call in RHEL 8 must generate an audit record.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"creat\" system call is used to open and possibly create a file or device.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:287", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"creat\" system call by adding or updating the following rules in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F arch=b32 -S creat -F exit=-EPERM -F auid>=1000 -F auid!=unset -k perm_access\n-a always,exit -F arch=b64 -S creat -F exit=-EPERM -F auid>=1000 -F auid!=unset -k perm_access\n\n-a always,exit -F arch=b32 -S creat -F exit=-EACCES -F auid>=1000 -F auid!=unset -k perm_access\n-a always,exit -F arch=b64 -S creat -F exit=-EACCES -F auid>=1000 -F auid!=unset -k perm_access\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"creat\\\" system call is used to open and possibly create a file or device.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230454", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230454r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:287", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33098r568109_fix", - "fixtext_fixref": "F-33098r568109_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230454r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230454r627750_rule", - "version": "RHEL-08-030470", - "time": "2021-12-17T10:30:27", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33098r568109_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:287", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:27", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230455", - "title": "Successful/unsuccessful uses of the chown command in RHEL 8 must generate an audit record.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"chown\" command is used to change file owner and group.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033, SRG-OS-000466-GPOS-00210", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:288", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"chown\" command by adding or updating the following line to \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S chown -F auid>=1000 -F auid!=unset -k perm_mod\n-a always,exit -F arch=b64 -S chown -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"chown\\\" command is used to change file owner and group.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033, SRG-OS-000466-GPOS-00210\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230455", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230455r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:288", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33099r568112_fix", - "fixtext_fixref": "F-33099r568112_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230455r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230455r627750_rule", - "version": "RHEL-08-030480", - "time": "2021-12-17T10:30:27", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33099r568112_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:288", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:27", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230456", - "title": "Successful/unsuccessful uses of the chmod command in RHEL 8 must generate an audit record.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"chmod\" command changes the file mode bits of each given file according to mode, which can be either a symbolic representation of changes to make, or an octal number representing the bit pattern for the new mode bits.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033, SRG-OS-000466-GPOS-00210", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:289", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"chmod\" command by adding or updating the following line to \"/etc/audit/rules.d/audit.rules\": \n\n-a always,exit -F arch=b32 -S chmod -F auid>=1000 -F auid!=unset -k perm_mod\n-a always,exit -F arch=b64 -S chmod -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"chmod\\\" command changes the file mode bits of each given file according to mode, which can be either a symbolic representation of changes to make, or an octal number representing the bit pattern for the new mode bits.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033, SRG-OS-000466-GPOS-00210\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230456", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230456r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:289", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33100r568115_fix", - "fixtext_fixref": "F-33100r568115_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230456r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230456r627750_rule", - "version": "RHEL-08-030490", - "time": "2021-12-17T10:30:28", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33100r568115_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:289", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:28", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230457", - "title": "Successful/unsuccessful uses of the lchown system call in RHEL 8 must generate an audit record.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"lchown\" system call is used to change the ownership of the file specified by a path, which does not dereference symbolic links.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033, SRG-OS-000466-GPOS-00210", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:290", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"lchown\" system call by adding or updating the following lines to \"/etc/audit/rules.d/audit.rules\": \n\n-a always,exit -F arch=b32 -S lchown -F auid>=1000 -F auid!=unset -k perm_mod\n-a always,exit -F arch=b64 -S lchown -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"lchown\\\" system call is used to change the ownership of the file specified by a path, which does not dereference symbolic links.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033, SRG-OS-000466-GPOS-00210\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230457", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230457r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:290", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33101r568118_fix", - "fixtext_fixref": "F-33101r568118_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230457r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230457r627750_rule", - "version": "RHEL-08-030500", - "time": "2021-12-17T10:30:28", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33101r568118_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:290", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:28", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230458", - "title": "Successful/unsuccessful uses of the fchownat system call in RHEL 8 must generate an audit record.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"fchownat\" system call is used to change ownership of a file relative to a directory file descriptor.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033, SRG-OS-000466-GPOS-00210", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:291", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"fchownat\" system call by adding or updating the following lines to \"/etc/audit/rules.d/audit.rules\": \n\n-a always,exit -F arch=b32 -S fchownat -F auid>=1000 -F auid!=unset -k perm_mod\n-a always,exit -F arch=b64 -S fchownat -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"fchownat\\\" system call is used to change ownership of a file relative to a directory file descriptor.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033, SRG-OS-000466-GPOS-00210\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230458", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230458r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:291", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33102r568121_fix", - "fixtext_fixref": "F-33102r568121_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230458r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230458r627750_rule", - "version": "RHEL-08-030510", - "time": "2021-12-17T10:30:28", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33102r568121_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:291", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:28", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230459", - "title": "Successful/unsuccessful uses of the fchown system call in RHEL 8 must generate an audit record.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"fchown\" system call is used to change the ownership of a file referred to by the open file descriptor.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033, SRG-OS-000466-GPOS-00210", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:292", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"fchown\" system call by adding or updating the following line to \"/etc/audit/rules.d/audit.rules\": \n\n-a always,exit -F arch=b32 -S fchown -F auid>=1000 -F auid!=unset -k perm_mod\n-a always,exit -F arch=b64 -S fchown -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"fchown\\\" system call is used to change the ownership of a file referred to by the open file descriptor.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033, SRG-OS-000466-GPOS-00210\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230459", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230459r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:292", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33103r568124_fix", - "fixtext_fixref": "F-33103r568124_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230459r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230459r627750_rule", - "version": "RHEL-08-030520", - "time": "2021-12-17T10:30:28", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33103r568124_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:292", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:28", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230460", - "title": "Successful/unsuccessful uses of the fchmodat system call in RHEL 8 must generate an audit record.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"fchmodat\" system call is used to change permissions of a file relative to a directory file descriptor.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033, SRG-OS-000466-GPOS-00210", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:293", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"fchmodat\" system call by adding or updating the following lines to \"/etc/audit/rules.d/audit.rules\": \n\n-a always,exit -F arch=b32 -S fchmodat -F auid>=1000 -F auid!=unset -k perm_mod\n-a always,exit -F arch=b64 -S fchmodat -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"fchmodat\\\" system call is used to change permissions of a file relative to a directory file descriptor.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033, SRG-OS-000466-GPOS-00210\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230460", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230460r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:293", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33104r568127_fix", - "fixtext_fixref": "F-33104r568127_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230460r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230460r627750_rule", - "version": "RHEL-08-030530", - "time": "2021-12-17T10:30:28", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33104r568127_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:293", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:28", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230461", - "title": "Successful/unsuccessful uses of the fchmod system call in RHEL 8 must generate an audit record.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"fchmod\" system call is used to change permissions of a file.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033, SRG-OS-000466-GPOS-00210", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:294", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"fchmod\" system call by adding or updating the following line to \"/etc/audit/rules.d/audit.rules\": \n\n-a always,exit -F arch=b32 -S fchmod -F auid>=1000 -F auid!=unset -k perm_mod\n-a always,exit -F arch=b64 -S fchmod -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"fchmod\\\" system call is used to change permissions of a file.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033, SRG-OS-000466-GPOS-00210\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230461", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230461r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:294", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33105r568130_fix", - "fixtext_fixref": "F-33105r568130_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230461r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230461r627750_rule", - "version": "RHEL-08-030540", - "time": "2021-12-17T10:30:28", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33105r568130_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:294", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:28", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230462", - "title": "Successful/unsuccessful uses of the sudo command in RHEL 8 must generate an audit record.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"sudo\" command allows a permitted user to execute a command as the superuser or another user, as specified by the security policy.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000466-GPOS-00210", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:295", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"sudo\" command by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/bin/sudo -F perm=x -F auid>=1000 -F auid!=unset -k priv_cmd\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"sudo\\\" command allows a permitted user to execute a command as the superuser or another user, as specified by the security policy.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000466-GPOS-00210\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230462", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230462r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:295", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33106r568133_fix", - "fixtext_fixref": "F-33106r568133_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230462r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230462r627750_rule", - "version": "RHEL-08-030550", - "time": "2021-12-17T10:30:28", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33106r568133_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:295", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:28", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230463", - "title": "Successful/unsuccessful uses of the usermod command in RHEL 8 must generate an audit record.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"usermod\" command modifies the system account files to reflect the changes that are specified on the command line.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000466-GPOS-00210", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:296", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \"usermod\" command by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/sbin/usermod -F perm=x -F auid>=1000 -F auid!=unset -k privileged-usermod\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"usermod\\\" command modifies the system account files to reflect the changes that are specified on the command line.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000466-GPOS-00210\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230463", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230463r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:296", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33107r568136_fix", - "fixtext_fixref": "F-33107r568136_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230463r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230463r627750_rule", - "version": "RHEL-08-030560", - "time": "2021-12-17T10:30:28", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33107r568136_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:296", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:28", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230464", - "title": "Successful/unsuccessful uses of the chacl command in RHEL 8 must generate an audit record.", - "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"chacl\" command is used to change the access control list of a file or directory.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000466-GPOS-00210", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:297", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"chacl\" command by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/bin/chacl -F perm=x -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"chacl\\\" command is used to change the access control list of a file or directory.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000466-GPOS-00210\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230464", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230464r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:297", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33108r568139_fix", - "fixtext_fixref": "F-33108r568139_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230464r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230464r627750_rule", - "version": "RHEL-08-030570", - "time": "2021-12-17T10:30:28", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33108r568139_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:297", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:28", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230465", - "title": "Successful/unsuccessful uses of the kmod command in RHEL 8 must generate an audit record.", - "desc": "Without the capability to generate audit records, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"kmod\" command is used to control Linux Kernel modules.\n\nThe list of audited events is the set of events for which audits are to be generated. This set of events is typically a subset of the list of all events for which the system is capable of generating audit records.\n\nDoD has defined the list of events for which RHEL 8 will provide an audit record generation capability as the following:\n\n1) Successful and unsuccessful attempts to access, modify, or delete privileges, security objects, security levels, or categories of information (e.g., classification levels);\n\n2) Access actions, such as successful and unsuccessful logon attempts, privileged activities or other system-level access, starting and ending time for user access to the system, concurrent logons from different workstations, successful and unsuccessful accesses to objects, all program initiations, and all direct access to the information system;\n\n3) All account creations, modifications, disabling, and terminations; and \n\n4) All kernel module load, unload, and restart actions.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000471-GPOS-00216, SRG-OS-000477-GPOS-00222", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:298", - "label": "check" - }, - { - "data": "Configure RHEL 8 to audit the execution of the module management program \"kmod\" by adding or updating the following line to \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F path=/usr/bin/kmod -F perm=x -F auid>=1000 -F auid!=unset -k modules\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without the capability to generate audit records, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"kmod\\\" command is used to control Linux Kernel modules.\\n\\nThe list of audited events is the set of events for which audits are to be generated. This set of events is typically a subset of the list of all events for which the system is capable of generating audit records.\\n\\nDoD has defined the list of events for which RHEL 8 will provide an audit record generation capability as the following:\\n\\n1) Successful and unsuccessful attempts to access, modify, or delete privileges, security objects, security levels, or categories of information (e.g., classification levels);\\n\\n2) Access actions, such as successful and unsuccessful logon attempts, privileged activities or other system-level access, starting and ending time for user access to the system, concurrent logons from different workstations, successful and unsuccessful accesses to objects, all program initiations, and all direct access to the information system;\\n\\n3) All account creations, modifications, disabling, and terminations; and \\n\\n4) All kernel module load, unload, and restart actions.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000471-GPOS-00216, SRG-OS-000477-GPOS-00222\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230465", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230465r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:298", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33109r568142_fix", - "fixtext_fixref": "F-33109r568142_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230465r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230465r627750_rule", - "version": "RHEL-08-030580", - "time": "2021-12-17T10:30:28", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33109r568142_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:298", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:28", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230467", - "title": "Successful/unsuccessful modifications to the lastlog file in RHEL 8 must generate an audit record.", - "desc": "Without the capability to generate audit records, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nThe list of audited events is the set of events for which audits are to be generated. This set of events is typically a subset of the list of all events for which the system is capable of generating audit records.\n\nDoD has defined the list of events for which RHEL 8 will provide an audit record generation capability as the following:\n\n1) Successful and unsuccessful attempts to access, modify, or delete privileges, security objects, security levels, or categories of information (e.g., classification levels);\n\n2) Access actions, such as successful and unsuccessful logon attempts, privileged activities or other system-level access, starting and ending time for user access to the system, concurrent logons from different workstations, successful and unsuccessful accesses to objects, all program initiations, and all direct access to the information system;\n\n3) All account creations, modifications, disabling, and terminations; and \n\n4) All kernel module load, unload, and restart actions.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000473-GPOS-00218", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:299", - "label": "check" - }, - { - "data": "Configure the audit system to generate an audit event for any successful/unsuccessful modifications to the \"lastlog\" file by adding or updating the following rules in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-w /var/log/lastlog -p wa -k logins\n\nThe audit daemon must be restarted for the changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000169" - ], - "nist": [ - "AU-12 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without the capability to generate audit records, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nThe list of audited events is the set of events for which audits are to be generated. This set of events is typically a subset of the list of all events for which the system is capable of generating audit records.\\n\\nDoD has defined the list of events for which RHEL 8 will provide an audit record generation capability as the following:\\n\\n1) Successful and unsuccessful attempts to access, modify, or delete privileges, security objects, security levels, or categories of information (e.g., classification levels);\\n\\n2) Access actions, such as successful and unsuccessful logon attempts, privileged activities or other system-level access, starting and ending time for user access to the system, concurrent logons from different workstations, successful and unsuccessful accesses to objects, all program initiations, and all direct access to the information system;\\n\\n3) All account creations, modifications, disabling, and terminations; and \\n\\n4) All kernel module load, unload, and restart actions.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000473-GPOS-00218\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230467", - "group_title": "SRG-OS-000062-GPOS-00031", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230467r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:299", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33111r568148_fix", - "fixtext_fixref": "F-33111r568148_fix", - "ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230467r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230467r627750_rule", - "version": "RHEL-08-030600", - "time": "2021-12-17T10:30:28", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000169", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33111r568148_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:299", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:28", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230471", - "title": "RHEL 8 must allow only the Information System Security Manager (ISSM) (or individuals or roles appointed by the ISSM) to select which auditable events are to be audited.", - "desc": "Without the capability to restrict the roles and individuals that can select which events are audited, unauthorized personnel may be able to prevent the auditing of critical events. Misconfigured audits may degrade the system's performance by overwhelming the audit log. Misconfigured audits may also make it more difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:303", - "label": "check" - }, - { - "data": "Configure the files in directory \"/etc/audit/rules.d/\" and the \"/etc/audit/auditd.conf\" file to have a mode of \"0640\" with the following commands:\n\n$ sudo chmod 0640 /etc/audit/rules.d/audit.rules\n$ sudo chmod 0640 /etc/audit/rules.d/[customrulesfile].rules\n$ sudo chmod 0640 /etc/audit/auditd.conf", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000171" - ], - "nist": [ - "AU-12 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without the capability to restrict the roles and individuals that can select which events are audited, unauthorized personnel may be able to prevent the auditing of critical events. Misconfigured audits may degrade the system's performance by overwhelming the audit log. Misconfigured audits may also make it more difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230471", - "group_title": "SRG-OS-000063-GPOS-00032", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230471r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:303", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33115r568160_fix", - "fixtext_fixref": "F-33115r568160_fix", - "ident": { - "text": "CCI-000171", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230471r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230471r627750_rule", - "version": "RHEL-08-030610", - "time": "2021-12-17T10:30:28", - "weight": "10.0", - "severity": "medium", - "cdf:result": "pass", - "cdf:ident": { - "text": "CCI-000171", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33115r568160_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:303", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:28", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230472", - "title": "RHEL 8 audit tools must have a mode of 0755 or less permissive.", - "desc": "Protecting audit information also includes identifying and protecting the tools used to view and manipulate log data. Therefore, protecting audit tools is necessary to prevent unauthorized operation on audit information.\n\nRHEL 8 systems providing tools to interface with audit information will leverage user permissions and roles identifying the user accessing the tools, and the corresponding rights the user enjoys, to make access decisions regarding the access to audit tools.\n\nAudit tools include, but are not limited to, vendor-provided and open source audit tools needed to successfully view and manipulate audit information system activity and records. Audit tools include custom queries and report generators.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:304", - "label": "check" - }, - { - "data": "Configure the audit tools to be protected from unauthorized access by setting the correct permissive mode using the following command:\n\n$ sudo chmod 0755 [audit_tool]\n\nReplace \"[audit_tool]\" with the audit tool that does not have the correct permissive mode.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001493" - ], - "nist": [ - "AU-9 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Protecting audit information also includes identifying and protecting the tools used to view and manipulate log data. Therefore, protecting audit tools is necessary to prevent unauthorized operation on audit information.\\n\\nRHEL 8 systems providing tools to interface with audit information will leverage user permissions and roles identifying the user accessing the tools, and the corresponding rights the user enjoys, to make access decisions regarding the access to audit tools.\\n\\nAudit tools include, but are not limited to, vendor-provided and open source audit tools needed to successfully view and manipulate audit information system activity and records. Audit tools include custom queries and report generators.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230472", - "group_title": "SRG-OS-000256-GPOS-00097", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230472r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:304", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33116r568163_fix", - "fixtext_fixref": "F-33116r568163_fix", - "ident": { - "text": "CCI-001493", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230472r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230472r627750_rule", - "version": "RHEL-08-030620", - "time": "2021-12-17T10:30:28", - "weight": "10.0", - "severity": "medium", - "cdf:result": "pass", - "cdf:ident": { - "text": "CCI-001493", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33116r568163_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:304", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:28", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230473", - "title": "RHEL 8 audit tools must be owned by root.", - "desc": "Protecting audit information also includes identifying and protecting the tools used to view and manipulate log data. Therefore, protecting audit tools is necessary to prevent unauthorized operation on audit information.\n\nRHEL 8 systems providing tools to interface with audit information will leverage user permissions and roles identifying the user accessing the tools, and the corresponding rights the user enjoys, to make access decisions regarding the access to audit tools.\n\nAudit tools include, but are not limited to, vendor-provided and open source audit tools needed to successfully view and manipulate audit information system activity and records. Audit tools include custom queries and report generators.\n\nSatisfies: SRG-OS-000256-GPOS-00097, SRG-OS-000257-GPOS-00098, SRG-OS-000258-GPOS-00099", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:305", - "label": "check" - }, - { - "data": "Configure the audit tools to be owned by \"root\", by running the following command:\n\n$ sudo chown root [audit_tool]\n\nReplace \"[audit_tool]\" with each audit tool not owned by \"root\".", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001493" - ], - "nist": [ - "AU-9 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Protecting audit information also includes identifying and protecting the tools used to view and manipulate log data. Therefore, protecting audit tools is necessary to prevent unauthorized operation on audit information.\\n\\nRHEL 8 systems providing tools to interface with audit information will leverage user permissions and roles identifying the user accessing the tools, and the corresponding rights the user enjoys, to make access decisions regarding the access to audit tools.\\n\\nAudit tools include, but are not limited to, vendor-provided and open source audit tools needed to successfully view and manipulate audit information system activity and records. Audit tools include custom queries and report generators.\\n\\nSatisfies: SRG-OS-000256-GPOS-00097, SRG-OS-000257-GPOS-00098, SRG-OS-000258-GPOS-00099\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230473", - "group_title": "SRG-OS-000256-GPOS-00097", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230473r744008_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:305", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33117r568166_fix", - "fixtext_fixref": "F-33117r568166_fix", - "ident": { - "text": "CCI-001493", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230473r744008_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230473r744008_rule", - "version": "RHEL-08-030630", - "time": "2021-12-17T10:30:28", - "weight": "10.0", - "severity": "medium", - "cdf:result": "pass", - "cdf:ident": { - "text": "CCI-001493", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33117r568166_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:305", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:28", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230474", - "title": "RHEL 8 audit tools must be group-owned by root.", - "desc": "Protecting audit information also includes identifying and protecting the tools used to view and manipulate log data. Therefore, protecting audit tools is necessary to prevent unauthorized operation on audit information.\n\nRHEL 8 systems providing tools to interface with audit information will leverage user permissions and roles identifying the user accessing the tools, and the corresponding rights the user enjoys, to make access decisions regarding the access to audit tools.\n\nAudit tools include, but are not limited to, vendor-provided and open source audit tools needed to successfully view and manipulate audit information system activity and records. Audit tools include custom queries and report generators.\n\nSatisfies: SRG-OS-000256-GPOS-00097, SRG-OS-000257-GPOS-00098, SRG-OS-000258-GPOS-00099", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:306", - "label": "check" - }, - { - "data": "Configure the audit tools to be group-owned by \"root\", by running the following command:\n\n$ sudo chgrp root [audit_tool]\n\nReplace \"[audit_tool]\" with each audit tool not group-owned by \"root\".", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001493" - ], - "nist": [ - "AU-9 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Protecting audit information also includes identifying and protecting the tools used to view and manipulate log data. Therefore, protecting audit tools is necessary to prevent unauthorized operation on audit information.\\n\\nRHEL 8 systems providing tools to interface with audit information will leverage user permissions and roles identifying the user accessing the tools, and the corresponding rights the user enjoys, to make access decisions regarding the access to audit tools.\\n\\nAudit tools include, but are not limited to, vendor-provided and open source audit tools needed to successfully view and manipulate audit information system activity and records. Audit tools include custom queries and report generators.\\n\\nSatisfies: SRG-OS-000256-GPOS-00097, SRG-OS-000257-GPOS-00098, SRG-OS-000258-GPOS-00099\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230474", - "group_title": "SRG-OS-000256-GPOS-00097", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230474r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:306", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33118r568169_fix", - "fixtext_fixref": "F-33118r568169_fix", - "ident": { - "text": "CCI-001493", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230474r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230474r627750_rule", - "version": "RHEL-08-030640", - "time": "2021-12-17T10:30:28", - "weight": "10.0", - "severity": "medium", - "cdf:result": "pass", - "cdf:ident": { - "text": "CCI-001493", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33118r568169_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:306", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:28", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230477", - "title": "RHEL 8 must have the packages required for offloading audit logs installed.", - "desc": "Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\n\nOff-loading is a common process in information systems with limited audit storage capacity.\n\nRHEL 8 installation media provides \"rsyslogd\". \"rsyslogd\" is a system utility providing support for message logging. Support for both internet and UNIX domain sockets enables this utility to support both local and remote logging. Couple this utility with \"gnutls\" (which is a secure communications library implementing the SSL, TLS and DTLS protocols), and you have a method to securely encrypt and off-load auditing.\n\nRsyslog provides three ways to forward message: the traditional UDP transport, which is extremely lossy but standard; the plain TCP based transport, which loses messages only during certain situations but is widely available; and the RELP transport, which does not lose messages but is currently available only as part of the rsyslogd 3.15.0 and above.\nExamples of each configuration:\nUDP *.* @remotesystemname\nTCP *.* @@remotesystemname\nRELP *.* :omrelp:remotesystemname:2514\nNote that a port number was given as there is no standard port for RELP.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:412", - "label": "check" - }, - { - "data": "Configure the operating system to offload audit logs by installing the required packages with the following command:\n\n$ sudo yum install rsyslog", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\\n\\nOff-loading is a common process in information systems with limited audit storage capacity.\\n\\nRHEL 8 installation media provides \\\"rsyslogd\\\". \\\"rsyslogd\\\" is a system utility providing support for message logging. Support for both internet and UNIX domain sockets enables this utility to support both local and remote logging. Couple this utility with \\\"gnutls\\\" (which is a secure communications library implementing the SSL, TLS and DTLS protocols), and you have a method to securely encrypt and off-load auditing.\\n\\nRsyslog provides three ways to forward message: the traditional UDP transport, which is extremely lossy but standard; the plain TCP based transport, which loses messages only during certain situations but is widely available; and the RELP transport, which does not lose messages but is currently available only as part of the rsyslogd 3.15.0 and above.\\nExamples of each configuration:\\nUDP *.* @remotesystemname\\nTCP *.* @@remotesystemname\\nRELP *.* :omrelp:remotesystemname:2514\\nNote that a port number was given as there is no standard port for RELP.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230477", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230477r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:412", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33121r568178_fix", - "fixtext_fixref": "F-33121r568178_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230477r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230477r627750_rule", - "version": "RHEL-08-030670", - "time": "2021-12-17T10:30:28", - "weight": "10.0", - "severity": "medium", - "cdf:result": "pass", - "cdf:ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33121r568178_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:412", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:28", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230478", - "title": "RHEL 8 must have the packages required for encrypting offloaded audit logs installed.", - "desc": "Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\n\nOff-loading is a common process in information systems with limited audit storage capacity.\n\nRHEL 8 installation media provides \"rsyslogd\". \"rsyslogd\" is a system utility providing support for message logging. Support for both internet and UNIX domain sockets enables this utility to support both local and remote logging. Couple this utility with \"rsyslog-gnutls\" (which is a secure communications library implementing the SSL, TLS and DTLS protocols), and you have a method to securely encrypt and off-load auditing.\n\nRsyslog provides three ways to forward message: the traditional UDP transport, which is extremely lossy but standard; the plain TCP based transport, which loses messages only during certain situations but is widely available; and the RELP transport, which does not lose messages but is currently available only as part of the rsyslogd 3.15.0 and above.\nExamples of each configuration:\nUDP *.* @remotesystemname\nTCP *.* @@remotesystemname\nRELP *.* :omrelp:remotesystemname:2514\nNote that a port number was given as there is no standard port for RELP.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:307", - "label": "check" - }, - { - "data": "Configure the operating system to encrypt offloaded audit logs by installing the required packages with the following command:\n\n$ sudo yum install rsyslog-gnutls", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\\n\\nOff-loading is a common process in information systems with limited audit storage capacity.\\n\\nRHEL 8 installation media provides \\\"rsyslogd\\\". \\\"rsyslogd\\\" is a system utility providing support for message logging. Support for both internet and UNIX domain sockets enables this utility to support both local and remote logging. Couple this utility with \\\"rsyslog-gnutls\\\" (which is a secure communications library implementing the SSL, TLS and DTLS protocols), and you have a method to securely encrypt and off-load auditing.\\n\\nRsyslog provides three ways to forward message: the traditional UDP transport, which is extremely lossy but standard; the plain TCP based transport, which loses messages only during certain situations but is widely available; and the RELP transport, which does not lose messages but is currently available only as part of the rsyslogd 3.15.0 and above.\\nExamples of each configuration:\\nUDP *.* @remotesystemname\\nTCP *.* @@remotesystemname\\nRELP *.* :omrelp:remotesystemname:2514\\nNote that a port number was given as there is no standard port for RELP.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230478", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230478r744011_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:307", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33122r744010_fix", - "fixtext_fixref": "F-33122r744010_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230478r744011_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230478r744011_rule", - "version": "RHEL-08-030680", - "time": "2021-12-17T10:30:28", - "weight": "10.0", - "severity": "medium", - "cdf:result": "pass", - "cdf:ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33122r744010_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:307", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:28", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230480", - "title": "RHEL 8 must take appropriate action when the internal event queue is full.", - "desc": "Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\n\nOff-loading is a common process in information systems with limited audit storage capacity.\n\nRHEL 8 installation media provides \"rsyslogd\". \"rsyslogd\" is a system utility providing support for message logging. Support for both internet and UNIX domain sockets enables this utility to support both local and remote logging. Couple this utility with \"gnutls\" (which is a secure communications library implementing the SSL, TLS and DTLS protocols), and you have a method to securely encrypt and off-load auditing.\n\nSatisfies: SRG-OS-000342-GPOS-00133, SRG-OS-000479-GPOS-00224", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:308", - "label": "check" - }, - { - "data": "Edit the /etc/audit/auditd.conf file and add or update the \"overflow_action\" option:\n\noverflow_action = syslog\n\nThe audit daemon must be restarted for changes to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001851" - ], - "nist": [ - "AU-4 (1)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\\n\\nOff-loading is a common process in information systems with limited audit storage capacity.\\n\\nRHEL 8 installation media provides \\\"rsyslogd\\\". \\\"rsyslogd\\\" is a system utility providing support for message logging. Support for both internet and UNIX domain sockets enables this utility to support both local and remote logging. Couple this utility with \\\"gnutls\\\" (which is a secure communications library implementing the SSL, TLS and DTLS protocols), and you have a method to securely encrypt and off-load auditing.\\n\\nSatisfies: SRG-OS-000342-GPOS-00133, SRG-OS-000479-GPOS-00224\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230480", - "group_title": "SRG-OS-000342-GPOS-00133", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230480r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:308", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33124r568187_fix", - "fixtext_fixref": "F-33124r568187_fix", - "ident": { - "text": "CCI-001851", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230480r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230480r627750_rule", - "version": "RHEL-08-030700", - "time": "2021-12-17T10:30:30", - "weight": "10.0", - "severity": "medium", - "cdf:result": "pass", - "cdf:ident": { - "text": "CCI-001851", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33124r568187_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:308", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:30", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230483", - "title": "RHEL 8 must take action when allocated audit record storage volume reaches 75 percent of the repository maximum audit record storage capacity.", - "desc": "If security personnel are not notified immediately when storage volume reaches 75 percent utilization, they are unable to plan for audit record storage capacity expansion.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:309", - "label": "check" - }, - { - "data": "Configure the operating system to initiate an action to notify the SA and ISSO (at a minimum) when allocated audit record storage volume reaches 75 percent of the repository maximum audit record storage capacity by adding/modifying the following line in the /etc/audit/auditd.conf file.\n\nspace_left = 25%\n\nNote: Option names and values in the auditd.conf file are case insensitive.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001855" - ], - "nist": [ - "AU-5 (1)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"If security personnel are not notified immediately when storage volume reaches 75 percent utilization, they are unable to plan for audit record storage capacity expansion.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230483", - "group_title": "SRG-OS-000343-GPOS-00134", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230483r744014_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:309", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33127r744013_fix", - "fixtext_fixref": "F-33127r744013_fix", - "ident": { - "text": "CCI-001855", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230483r744014_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230483r744014_rule", - "version": "RHEL-08-030730", - "time": "2021-12-17T10:30:31", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-001855", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33127r744013_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:309", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:31", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230485", - "title": "RHEL 8 must disable the chrony daemon from acting as a server.", - "desc": "Inaccurate time stamps make it more difficult to correlate events and can lead to an inaccurate analysis. Determining the correct time a particular event occurred on a system is critical when conducting forensic analysis and investigating system events. Sources outside the configured acceptable allowance (drift) may be inaccurate.\n\nMinimizing the exposure of the server functionality of the chrony daemon diminishes the attack surface.\n\nRHEL 8 utilizes the \"timedatectl\" command to view the status of the \"systemd-timesyncd.service\". The \"timedatectl\" status will display the local time, UTC, and the offset from UTC.\n\nNote that USNO offers authenticated NTP service to DoD and U.S. Government agencies operating on the NIPR and SIPR networks. Visit https://www.usno.navy.mil/USNO/time/ntp/dod-customers for more information.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:310", - "label": "check" - }, - { - "data": "Configure the operating system to disable the chrony daemon from acting as a server by adding/modifying the following line in the /etc/chrony.conf file.\n\nport 0", - "label": "fix" - } - ], - "impact": 0.3, - "refs": [], - "tags": { - "cci": [ - "CCI-000381" - ], - "nist": [ - "CM-7 a" - ], - "severity": "low", - "description": "{\"VulnDiscussion\":\"Inaccurate time stamps make it more difficult to correlate events and can lead to an inaccurate analysis. Determining the correct time a particular event occurred on a system is critical when conducting forensic analysis and investigating system events. Sources outside the configured acceptable allowance (drift) may be inaccurate.\\n\\nMinimizing the exposure of the server functionality of the chrony daemon diminishes the attack surface.\\n\\nRHEL 8 utilizes the \\\"timedatectl\\\" command to view the status of the \\\"systemd-timesyncd.service\\\". The \\\"timedatectl\\\" status will display the local time, UTC, and the offset from UTC.\\n\\nNote that USNO offers authenticated NTP service to DoD and U.S. Government agencies operating on the NIPR and SIPR networks. Visit https://www.usno.navy.mil/USNO/time/ntp/dod-customers for more information.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230485", - "group_title": "SRG-OS-000095-GPOS-00049", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230485r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:310", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33129r568202_fix", - "fixtext_fixref": "F-33129r568202_fix", - "ident": { - "text": "CCI-000381", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230485r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230485r627750_rule", - "version": "RHEL-08-030741", - "time": "2021-12-17T10:30:31", - "weight": "10.0", - "severity": "low", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000381", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33129r568202_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:310", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:31", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230486", - "title": "RHEL 8 must disable network management of the chrony daemon.", - "desc": "Inaccurate time stamps make it more difficult to correlate events and can lead to an inaccurate analysis. Determining the correct time a particular event occurred on a system is critical when conducting forensic analysis and investigating system events. Sources outside the configured acceptable allowance (drift) may be inaccurate.\n\nNot exposing the management interface of the chrony daemon on the network diminishes the attack space.\n\nRHEL 8 utilizes the \"timedatectl\" command to view the status of the \"systemd-timesyncd.service\". The \"timedatectl\" status will display the local time, UTC, and the offset from UTC.\n\nNote that USNO offers authenticated NTP service to DoD and U.S. Government agencies operating on the NIPR and SIPR networks. Visit https://www.usno.navy.mil/USNO/time/ntp/dod-customers for more information.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:311", - "label": "check" - }, - { - "data": "Configure the operating system disable network management of the chrony daemon by adding/modifying the following line in the /etc/chrony.conf file.\n\ncmdport 0", - "label": "fix" - } - ], - "impact": 0.3, - "refs": [], - "tags": { - "cci": [ - "CCI-000381" - ], - "nist": [ - "CM-7 a" - ], - "severity": "low", - "description": "{\"VulnDiscussion\":\"Inaccurate time stamps make it more difficult to correlate events and can lead to an inaccurate analysis. Determining the correct time a particular event occurred on a system is critical when conducting forensic analysis and investigating system events. Sources outside the configured acceptable allowance (drift) may be inaccurate.\\n\\nNot exposing the management interface of the chrony daemon on the network diminishes the attack space.\\n\\nRHEL 8 utilizes the \\\"timedatectl\\\" command to view the status of the \\\"systemd-timesyncd.service\\\". The \\\"timedatectl\\\" status will display the local time, UTC, and the offset from UTC.\\n\\nNote that USNO offers authenticated NTP service to DoD and U.S. Government agencies operating on the NIPR and SIPR networks. Visit https://www.usno.navy.mil/USNO/time/ntp/dod-customers for more information.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230486", - "group_title": "SRG-OS-000095-GPOS-00049", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230486r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:311", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33130r568205_fix", - "fixtext_fixref": "F-33130r568205_fix", - "ident": { - "text": "CCI-000381", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230486r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230486r627750_rule", - "version": "RHEL-08-030742", - "time": "2021-12-17T10:30:31", - "weight": "10.0", - "severity": "low", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000381", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33130r568205_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:311", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:31", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230487", - "title": "RHEL 8 must not have the telnet-server package installed.", - "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\n\nExamples of non-essential capabilities include, but are not limited to, games, software packages, tools, and demonstration software not related to requirements or providing a wide array of functionality not required for every mission, but which cannot be disabled.\n\nVerify the operating system is configured to disable non-essential capabilities. The most secure way of ensuring a non-essential capability is disabled is to not have the capability installed.\n\nThe telnet service provides an unencrypted remote access service that does not provide for the confidentiality and integrity of user passwords or the remote session.\n\nIf a privileged user were to log on using this service, the privileged user password could be compromised.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:312", - "label": "check" - }, - { - "data": "Configure the operating system to disable non-essential capabilities by removing the telnet-server package from the system with the following command:\n\n$ sudo yum remove telnet-server", - "label": "fix" - } - ], - "impact": 0.7, - "refs": [], - "tags": { - "cci": [ - "CCI-000381" - ], - "nist": [ - "CM-7 a" - ], - "severity": "high", - "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\\n\\nExamples of non-essential capabilities include, but are not limited to, games, software packages, tools, and demonstration software not related to requirements or providing a wide array of functionality not required for every mission, but which cannot be disabled.\\n\\nVerify the operating system is configured to disable non-essential capabilities. The most secure way of ensuring a non-essential capability is disabled is to not have the capability installed.\\n\\nThe telnet service provides an unencrypted remote access service that does not provide for the confidentiality and integrity of user passwords or the remote session.\\n\\nIf a privileged user were to log on using this service, the privileged user password could be compromised.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230487", - "group_title": "SRG-OS-000095-GPOS-00049", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230487r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:312", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33131r568208_fix", - "fixtext_fixref": "F-33131r568208_fix", - "ident": { - "text": "CCI-000381", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230487r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230487r627750_rule", - "version": "RHEL-08-040000", - "time": "2021-12-17T10:30:31", - "weight": "10.0", - "severity": "high", - "cdf:result": "pass", - "cdf:ident": { - "text": "CCI-000381", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33131r568208_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:312", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:31", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230488", - "title": "RHEL 8 must not have any automated bug reporting tools installed.", - "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\n\nExamples of non-essential capabilities include, but are not limited to, games, software packages, tools, and demonstration software not related to requirements or providing a wide array of functionality not required for every mission, but which cannot be disabled.\n\nVerify the operating system is configured to disable non-essential capabilities. The most secure way of ensuring a non-essential capability is disabled is to not have the capability installed.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:313", - "label": "check" - }, - { - "data": "Configure the operating system to disable non-essential capabilities by removing automated bug reporting packages from the system with the following command:\n\n$ sudo yum remove abrt*", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000381" - ], - "nist": [ - "CM-7 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\\n\\nExamples of non-essential capabilities include, but are not limited to, games, software packages, tools, and demonstration software not related to requirements or providing a wide array of functionality not required for every mission, but which cannot be disabled.\\n\\nVerify the operating system is configured to disable non-essential capabilities. The most secure way of ensuring a non-essential capability is disabled is to not have the capability installed.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230488", - "group_title": "SRG-OS-000095-GPOS-00049", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230488r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:313", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33132r568211_fix", - "fixtext_fixref": "F-33132r568211_fix", - "ident": { - "text": "CCI-000381", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230488r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230488r627750_rule", - "version": "RHEL-08-040001", - "time": "2021-12-17T10:30:33", - "weight": "10.0", - "severity": "medium", - "cdf:result": "pass", - "cdf:ident": { - "text": "CCI-000381", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33132r568211_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:313", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:33", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230489", - "title": "RHEL 8 must not have the sendmail package installed.", - "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\n\nExamples of non-essential capabilities include, but are not limited to, games, software packages, tools, and demonstration software not related to requirements or providing a wide array of functionality not required for every mission, but which cannot be disabled.\n\nVerify the operating system is configured to disable non-essential capabilities. The most secure way of ensuring a non-essential capability is disabled is to not have the capability installed.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:314", - "label": "check" - }, - { - "data": "Configure the operating system to disable non-essential capabilities by removing the sendmail package from the system with the following command:\n\n$ sudo yum remove sendmail", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000381" - ], - "nist": [ - "CM-7 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\\n\\nExamples of non-essential capabilities include, but are not limited to, games, software packages, tools, and demonstration software not related to requirements or providing a wide array of functionality not required for every mission, but which cannot be disabled.\\n\\nVerify the operating system is configured to disable non-essential capabilities. The most secure way of ensuring a non-essential capability is disabled is to not have the capability installed.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230489", - "group_title": "SRG-OS-000095-GPOS-00049", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230489r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:314", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33133r568214_fix", - "fixtext_fixref": "F-33133r568214_fix", - "ident": { - "text": "CCI-000381", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230489r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230489r627750_rule", - "version": "RHEL-08-040002", - "time": "2021-12-17T10:30:35", - "weight": "10.0", - "severity": "medium", - "cdf:result": "pass", - "cdf:ident": { - "text": "CCI-000381", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33133r568214_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:314", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:35", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230492", - "title": "RHEL 8 must not have the rsh-server package installed.", - "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\n\nThe rsh-server service provides an unencrypted remote access service that does not provide for the confidentiality and integrity of user passwords or the remote session and has very weak authentication.\n\nIf a privileged user were to log on using this service, the privileged user password could be compromised.\n\nSatisfies: SRG-OS-000095-GPOS-00049, SRG-OS-000074-GPOS-00042", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:317", - "label": "check" - }, - { - "data": "Configure the operating system to disable non-essential capabilities by removing the rsh-server package from the system with the following command:\n\n$ sudo yum remove rsh-server", - "label": "fix" - } - ], - "impact": 0.7, - "refs": [], - "tags": { - "cci": [ - "CCI-000381" - ], - "nist": [ - "CM-7 a" - ], - "severity": "high", - "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\\n\\nThe rsh-server service provides an unencrypted remote access service that does not provide for the confidentiality and integrity of user passwords or the remote session and has very weak authentication.\\n\\nIf a privileged user were to log on using this service, the privileged user password could be compromised.\\n\\nSatisfies: SRG-OS-000095-GPOS-00049, SRG-OS-000074-GPOS-00042\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230492", - "group_title": "SRG-OS-000095-GPOS-00049", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230492r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:317", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33136r568223_fix", - "fixtext_fixref": "F-33136r568223_fix", - "ident": { - "text": "CCI-000381", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230492r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230492r627750_rule", - "version": "RHEL-08-040010", - "time": "2021-12-17T10:30:37", - "weight": "10.0", - "severity": "high", - "cdf:result": "pass", - "cdf:ident": { - "text": "CCI-000381", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33136r568223_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:317", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:37", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230494", - "title": "RHEL 8 must disable the asynchronous transfer mode (ATM) protocol.", - "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nFailing to disconnect unused protocols can result in a system compromise.\n\nThe Asynchronous Transfer Mode (ATM) is a protocol operating on network, data link, and physical layers, based on virtual circuits and virtual paths. Disabling ATM protects the system against exploitation of any laws in its implementation.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:318", - "label": "check" - }, - { - "data": "Configure the operating system to disable the ability to use the ATM protocol kernel module.\n\nAdd or update the following lines in the file \"/etc/modprobe.d/blacklist.conf\":\n\ninstall ATM /bin/true\nblacklist ATM\n\nReboot the system for the settings to take effect.", - "label": "fix" - } - ], - "impact": 0.3, - "refs": [], - "tags": { - "cci": [ - "CCI-000381" - ], - "nist": [ - "CM-7 a" - ], - "severity": "low", - "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nFailing to disconnect unused protocols can result in a system compromise.\\n\\nThe Asynchronous Transfer Mode (ATM) is a protocol operating on network, data link, and physical layers, based on virtual circuits and virtual paths. Disabling ATM protects the system against exploitation of any laws in its implementation.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230494", - "group_title": "SRG-OS-000095-GPOS-00049", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230494r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:318", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33138r568229_fix", - "fixtext_fixref": "F-33138r568229_fix", - "ident": { - "text": "CCI-000381", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230494r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230494r627750_rule", - "version": "RHEL-08-040021", - "time": "2021-12-17T10:30:38", - "weight": "10.0", - "severity": "low", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000381", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33138r568229_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:318", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:38", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230495", - "title": "RHEL 8 must disable the controller area network (CAN) protocol.", - "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nFailing to disconnect unused protocols can result in a system compromise.\n\nThe Controller Area Network (CAN) is a serial communications protocol, which was initially developed for automotive and is now also used in marine, industrial, and medical applications. Disabling CAN protects the system against exploitation of any flaws in its implementation.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:319", - "label": "check" - }, - { - "data": "Configure the operating system to disable the ability to use the CAN protocol kernel module.\n\nAdd or update the following lines in the file \"/etc/modprobe.d/blacklist.conf\":\n\ninstall CAN /bin/true\nblacklist CAN\n\nReboot the system for the settings to take effect.", - "label": "fix" - } - ], - "impact": 0.3, - "refs": [], - "tags": { - "cci": [ - "CCI-000381" - ], - "nist": [ - "CM-7 a" - ], - "severity": "low", - "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nFailing to disconnect unused protocols can result in a system compromise.\\n\\nThe Controller Area Network (CAN) is a serial communications protocol, which was initially developed for automotive and is now also used in marine, industrial, and medical applications. Disabling CAN protects the system against exploitation of any flaws in its implementation.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230495", - "group_title": "SRG-OS-000095-GPOS-00049", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230495r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:319", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33139r568232_fix", - "fixtext_fixref": "F-33139r568232_fix", - "ident": { - "text": "CCI-000381", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230495r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230495r627750_rule", - "version": "RHEL-08-040022", - "time": "2021-12-17T10:30:38", - "weight": "10.0", - "severity": "low", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000381", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33139r568232_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:319", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:38", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230496", - "title": "RHEL 8 must disable the stream control transmission protocol (SCTP).", - "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nFailing to disconnect unused protocols can result in a system compromise.\n\nThe Stream Control Transmission Protocol (SCTP) is a transport layer protocol, designed to support the idea of message-oriented communication, with several streams of messages within one connection. Disabling SCTP protects the system against exploitation of any flaws in its implementation.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:320", - "label": "check" - }, - { - "data": "Configure the operating system to disable the ability to use the SCTP kernel module.\n\nAdd or update the following lines in the file \"/etc/modprobe.d/blacklist.conf\":\n\ninstall SCTP /bin/true\nblacklist SCTP\n\nReboot the system for the settings to take effect.", - "label": "fix" - } - ], - "impact": 0.3, - "refs": [], - "tags": { - "cci": [ - "CCI-000381" - ], - "nist": [ - "CM-7 a" - ], - "severity": "low", - "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nFailing to disconnect unused protocols can result in a system compromise.\\n\\nThe Stream Control Transmission Protocol (SCTP) is a transport layer protocol, designed to support the idea of message-oriented communication, with several streams of messages within one connection. Disabling SCTP protects the system against exploitation of any flaws in its implementation.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230496", - "group_title": "SRG-OS-000095-GPOS-00049", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230496r744017_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:320", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33140r744016_fix", - "fixtext_fixref": "F-33140r744016_fix", - "ident": { - "text": "CCI-000381", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230496r744017_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230496r744017_rule", - "version": "RHEL-08-040023", - "time": "2021-12-17T10:30:38", - "weight": "10.0", - "severity": "low", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000381", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33140r744016_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:320", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:38", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230497", - "title": "RHEL 8 must disable the transparent inter-process communication (TIPC) protocol.", - "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nFailing to disconnect unused protocols can result in a system compromise.\n\nThe Transparent Inter-Process Communication (TIPC) protocol is designed to provide communications between nodes in a cluster. Disabling TIPC protects the system against exploitation of any flaws in its implementation.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:321", - "label": "check" - }, - { - "data": "Configure the operating system to disable the ability to use the TIPC protocol kernel module.\n\nAdd or update the following lines in the file \"/etc/modprobe.d/blacklist.conf\":\n\ninstall TIPC /bin/true\nblacklist TIPC\n\nReboot the system for the settings to take effect.", - "label": "fix" - } - ], - "impact": 0.3, - "refs": [], - "tags": { - "cci": [ - "CCI-000381" - ], - "nist": [ - "CM-7 a" - ], - "severity": "low", - "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nFailing to disconnect unused protocols can result in a system compromise.\\n\\nThe Transparent Inter-Process Communication (TIPC) protocol is designed to provide communications between nodes in a cluster. Disabling TIPC protects the system against exploitation of any flaws in its implementation.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230497", - "group_title": "SRG-OS-000095-GPOS-00049", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230497r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:321", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33141r568238_fix", - "fixtext_fixref": "F-33141r568238_fix", - "ident": { - "text": "CCI-000381", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230497r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230497r627750_rule", - "version": "RHEL-08-040024", - "time": "2021-12-17T10:30:38", - "weight": "10.0", - "severity": "low", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000381", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33141r568238_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:321", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:38", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230498", - "title": "RHEL 8 must disable mounting of cramfs.", - "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nRemoving support for unneeded filesystem types reduces the local attack surface of the server.\n\nCompressed ROM/RAM file system (or cramfs) is a read-only file system designed for simplicity and space-efficiency. It is mainly used in embedded and small-footprint systems.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:322", - "label": "check" - }, - { - "data": "Configure the operating system to disable the ability to use the cramfs kernel module.\n\nAdd or update the following lines in the file \"/etc/modprobe.d/blacklist.conf\":\n\ninstall cramfs /bin/true\nblacklist cramfs\n\nReboot the system for the settings to take effect.", - "label": "fix" - } - ], - "impact": 0.3, - "refs": [], - "tags": { - "cci": [ - "CCI-000381" - ], - "nist": [ - "CM-7 a" - ], - "severity": "low", - "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nRemoving support for unneeded filesystem types reduces the local attack surface of the server.\\n\\nCompressed ROM/RAM file system (or cramfs) is a read-only file system designed for simplicity and space-efficiency. It is mainly used in embedded and small-footprint systems.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230498", - "group_title": "SRG-OS-000095-GPOS-00049", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230498r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:322", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33142r568241_fix", - "fixtext_fixref": "F-33142r568241_fix", - "ident": { - "text": "CCI-000381", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230498r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230498r627750_rule", - "version": "RHEL-08-040025", - "time": "2021-12-17T10:30:39", - "weight": "10.0", - "severity": "low", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000381", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33142r568241_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:322", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230499", - "title": "RHEL 8 must disable IEEE 1394 (FireWire) Support.", - "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nThe IEEE 1394 (FireWire) is a serial bus standard for high-speed real-time communication. Disabling FireWire protects the system against exploitation of any flaws in its implementation.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:323", - "label": "check" - }, - { - "data": "Configure the operating system to disable the ability to use the firewire-core kernel module.\n\nAdd or update the following lines in the file \"/etc/modprobe.d/blacklist.conf\":\n\ninstall firewire-core /bin/true\nblacklist firewire-core\n\nReboot the system for the settings to take effect.", - "label": "fix" - } - ], - "impact": 0.3, - "refs": [], - "tags": { - "cci": [ - "CCI-000381" - ], - "nist": [ - "CM-7 a" - ], - "severity": "low", - "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nThe IEEE 1394 (FireWire) is a serial bus standard for high-speed real-time communication. Disabling FireWire protects the system against exploitation of any flaws in its implementation.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230499", - "group_title": "SRG-OS-000095-GPOS-00049", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230499r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:323", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33143r568244_fix", - "fixtext_fixref": "F-33143r568244_fix", - "ident": { - "text": "CCI-000381", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230499r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230499r627750_rule", - "version": "RHEL-08-040026", - "time": "2021-12-17T10:30:39", - "weight": "10.0", - "severity": "low", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000381", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33143r568244_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:323", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230503", - "title": "RHEL 8 must be configured to disable USB mass storage.", - "desc": "USB mass storage permits easy introduction of unknown devices, thereby facilitating malicious activity.\n\nSatisfies: SRG-OS-000114-GPOS-00059, SRG-OS-000378-GPOS-00163", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:325", - "label": "check" - }, - { - "data": "Configure the operating system to disable the ability to use the USB Storage kernel module.\n\nCreate a file under \"/etc/modprobe.d\" with the following command:\n\n$ sudo touch /etc/modprobe.d/usb-storage.conf\n\nAdd the following line to the created file:\n\ninstall usb-storage /bin/true\n\nConfigure the operating system to disable the ability to use USB mass storage devices.\n\n$ sudo vi /etc/modprobe.d/blacklist.conf\n\nAdd or update the line:\n\nblacklist usb-storage", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000778" - ], - "nist": [ - "IA-3" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"USB mass storage permits easy introduction of unknown devices, thereby facilitating malicious activity.\\n\\nSatisfies: SRG-OS-000114-GPOS-00059, SRG-OS-000378-GPOS-00163\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230503", - "group_title": "SRG-OS-000114-GPOS-00059", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230503r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:325", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33147r568256_fix", - "fixtext_fixref": "F-33147r568256_fix", - "ident": { - "text": "CCI-000778", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230503r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230503r627750_rule", - "version": "RHEL-08-040080", - "time": "2021-12-17T10:30:39", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000778", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33147r568256_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:325", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230507", - "title": "RHEL 8 Bluetooth must be disabled.", - "desc": "Without protection of communications with wireless peripherals, confidentiality and integrity may be compromised because unprotected communications can be intercepted and either read, altered, or used to compromise the RHEL 8 operating system.\n\nThis requirement applies to wireless peripheral technologies (e.g., wireless mice, keyboards, displays, etc.) used with RHEL 8 systems. Wireless peripherals (e.g., Wi-Fi/Bluetooth/IR Keyboards, Mice, and Pointing Devices and Near Field Communications [NFC]) present a unique challenge by creating an open, unsecured port on a computer. Wireless peripherals must meet DoD requirements for wireless data transmission and be approved for use by the Authorizing Official (AO). Even though some wireless peripherals, such as mice and pointing devices, do not ordinarily carry information that need to be protected, modification of communications with these wireless peripherals may be used to compromise the RHEL 8 operating system. Communication paths outside the physical protection of a controlled boundary are exposed to the possibility of interception and modification.\n\nProtecting the confidentiality and integrity of communications with wireless peripherals can be accomplished by physical means (e.g., employing physical barriers to wireless radio frequencies) or by logical means (e.g., employing cryptographic techniques). If physical means of protection are employed, then logical means (cryptography) do not have to be employed, and vice versa. If the wireless peripheral is only passing telemetry data, encryption of the data may not be required.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:326", - "label": "check" - }, - { - "data": "Configure the operating system to disable the Bluetooth adapter when not in use.\n\nBuild or modify the \"/etc/modprobe.d/bluetooth.conf\" file with the following line:\n\ninstall bluetooth /bin/true\n\nReboot the system for the settings to take effect.", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001443" - ], - "nist": [ - "AC-18 (1)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without protection of communications with wireless peripherals, confidentiality and integrity may be compromised because unprotected communications can be intercepted and either read, altered, or used to compromise the RHEL 8 operating system.\\n\\nThis requirement applies to wireless peripheral technologies (e.g., wireless mice, keyboards, displays, etc.) used with RHEL 8 systems. Wireless peripherals (e.g., Wi-Fi/Bluetooth/IR Keyboards, Mice, and Pointing Devices and Near Field Communications [NFC]) present a unique challenge by creating an open, unsecured port on a computer. Wireless peripherals must meet DoD requirements for wireless data transmission and be approved for use by the Authorizing Official (AO). Even though some wireless peripherals, such as mice and pointing devices, do not ordinarily carry information that need to be protected, modification of communications with these wireless peripherals may be used to compromise the RHEL 8 operating system. Communication paths outside the physical protection of a controlled boundary are exposed to the possibility of interception and modification.\\n\\nProtecting the confidentiality and integrity of communications with wireless peripherals can be accomplished by physical means (e.g., employing physical barriers to wireless radio frequencies) or by logical means (e.g., employing cryptographic techniques). If physical means of protection are employed, then logical means (cryptography) do not have to be employed, and vice versa. If the wireless peripheral is only passing telemetry data, encryption of the data may not be required.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230507", - "group_title": "SRG-OS-000300-GPOS-00118", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230507r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:326", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33151r568268_fix", - "fixtext_fixref": "F-33151r568268_fix", - "ident": { - "text": "CCI-001443", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230507r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230507r627750_rule", - "version": "RHEL-08-040111", - "time": "2021-12-17T10:30:39", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-001443", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33151r568268_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:326", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230508", - "title": "RHEL 8 must mount /dev/shm with the nodev option.", - "desc": "The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\n\nThe \"noexec\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nodev\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nosuid\" mount option causes the system to not execute \"setuid\" and \"setgid\" files with owner privileges. This option must be used for mounting any file system not containing approved \"setuid\" and \"setguid\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:327", - "label": "check" - }, - { - "data": "Configure the system so that /dev/shm is mounted with the \"nodev\" option by adding /modifying the /etc/fstab with the following line:\n\ntmpfs /dev/shm tmpfs defaults,nodev,nosuid,noexec 0 0", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001764" - ], - "nist": [ - "CM-7 (2)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230508", - "group_title": "SRG-OS-000368-GPOS-00154", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230508r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:327", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33152r568271_fix", - "fixtext_fixref": "F-33152r568271_fix", - "ident": { - "text": "CCI-001764", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230508r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230508r627750_rule", - "version": "RHEL-08-040120", - "time": "2021-12-17T10:30:39", - "weight": "10.0", - "severity": "medium", - "cdf:result": "pass", - "cdf:ident": { - "text": "CCI-001764", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33152r568271_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:327", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230509", - "title": "RHEL 8 must mount /dev/shm with the nosuid option.", - "desc": "The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\n\nThe \"noexec\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\nThe \"nodev\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\nThe \"nosuid\" mount option causes the system to not execute \"setuid\" and \"setgid\" files with owner privileges. This option must be used for mounting any file system not containing approved \"setuid\" and \"setguid\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:328", - "label": "check" - }, - { - "data": "Configure the system so that /dev/shm is mounted with the \"nosuid\" option by adding /modifying the /etc/fstab with the following line:\n\ntmpfs /dev/shm tmpfs defaults,nodev,nosuid,noexec 0 0", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001764" - ], - "nist": [ - "CM-7 (2)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230509", - "group_title": "SRG-OS-000368-GPOS-00154", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230509r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:328", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33153r568274_fix", - "fixtext_fixref": "F-33153r568274_fix", - "ident": { - "text": "CCI-001764", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230509r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230509r627750_rule", - "version": "RHEL-08-040121", - "time": "2021-12-17T10:30:39", - "weight": "10.0", - "severity": "medium", - "cdf:result": "pass", - "cdf:ident": { - "text": "CCI-001764", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33153r568274_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:328", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230510", - "title": "RHEL 8 must mount /dev/shm with the noexec option.", - "desc": "The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\n\nThe \"noexec\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nodev\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nosuid\" mount option causes the system to not execute \"setuid\" and \"setgid\" files with owner privileges. This option must be used for mounting any file system not containing approved \"setuid\" and \"setguid\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:329", - "label": "check" - }, - { - "data": "Configure the system so that /dev/shm is mounted with the \"noexec\" option by adding /modifying the /etc/fstab with the following line:\n\ntmpfs /dev/shm tmpfs defaults,nodev,nosuid,noexec 0 0", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001764" - ], - "nist": [ - "CM-7 (2)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230510", - "group_title": "SRG-OS-000368-GPOS-00154", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230510r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:329", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33154r568277_fix", - "fixtext_fixref": "F-33154r568277_fix", - "ident": { - "text": "CCI-001764", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230510r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230510r627750_rule", - "version": "RHEL-08-040122", - "time": "2021-12-17T10:30:39", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-001764", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33154r568277_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:329", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230511", - "title": "RHEL 8 must mount /tmp with the nodev option.", - "desc": "The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\n\nThe \"noexec\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nodev\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nosuid\" mount option causes the system to not execute \"setuid\" and \"setgid\" files with owner privileges. This option must be used for mounting any file system not containing approved \"setuid\" and \"setguid\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:330", - "label": "check" - }, - { - "data": "Configure the system so that /tmp is mounted with the \"nodev\" option by adding /modifying the /etc/fstab with the following line:\n\n/dev/mapper/rhel-tmp /tmp xfs defaults,nodev,nosuid,noexec 0 0", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001764" - ], - "nist": [ - "CM-7 (2)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230511", - "group_title": "SRG-OS-000368-GPOS-00154", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230511r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:330", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33155r568280_fix", - "fixtext_fixref": "F-33155r568280_fix", - "ident": { - "text": "CCI-001764", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230511r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230511r627750_rule", - "version": "RHEL-08-040123", - "time": "2021-12-17T10:30:39", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-001764", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33155r568280_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:330", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230512", - "title": "RHEL 8 must mount /tmp with the nosuid option.", - "desc": "The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\n\nThe \"noexec\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\nThe \"nodev\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\nThe \"nosuid\" mount option causes the system to not execute \"setuid\" and \"setgid\" files with owner privileges. This option must be used for mounting any file system not containing approved \"setuid\" and \"setguid\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:331", - "label": "check" - }, - { - "data": "Configure the system so that /tmp is mounted with the \"nosuid\" option by adding /modifying the /etc/fstab with the following line:\n\n/dev/mapper/rhel-tmp /tmp xfs defaults,nodev,nosuid,noexec 0 0", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001764" - ], - "nist": [ - "CM-7 (2)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230512", - "group_title": "SRG-OS-000368-GPOS-00154", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230512r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:331", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33156r568283_fix", - "fixtext_fixref": "F-33156r568283_fix", - "ident": { - "text": "CCI-001764", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230512r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230512r627750_rule", - "version": "RHEL-08-040124", - "time": "2021-12-17T10:30:39", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-001764", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33156r568283_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:331", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230513", - "title": "RHEL 8 must mount /tmp with the noexec option.", - "desc": "The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\n\nThe \"noexec\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nodev\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nosuid\" mount option causes the system to not execute \"setuid\" and \"setgid\" files with owner privileges. This option must be used for mounting any file system not containing approved \"setuid\" and \"setguid\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:332", - "label": "check" - }, - { - "data": "Configure the system so that /tmp is mounted with the \"noexec\" option by adding /modifying the /etc/fstab with the following line:\n\n/dev/mapper/rhel-tmp /tmp xfs defaults,nodev,nosuid,noexec 0 0", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001764" - ], - "nist": [ - "CM-7 (2)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230513", - "group_title": "SRG-OS-000368-GPOS-00154", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230513r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:332", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33157r568286_fix", - "fixtext_fixref": "F-33157r568286_fix", - "ident": { - "text": "CCI-001764", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230513r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230513r627750_rule", - "version": "RHEL-08-040125", - "time": "2021-12-17T10:30:39", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-001764", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33157r568286_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:332", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230514", - "title": "RHEL 8 must mount /var/log with the nodev option.", - "desc": "The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\n\nThe \"noexec\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nodev\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nosuid\" mount option causes the system to not execute \"setuid\" and \"setgid\" files with owner privileges. This option must be used for mounting any file system not containing approved \"setuid\" and \"setguid\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:333", - "label": "check" - }, - { - "data": "Configure the system so that /var/log is mounted with the \"nodev\" option by adding /modifying the /etc/fstab with the following line:\n\n/dev/mapper/rhel-var-log /var/log xfs defaults,nodev,nosuid,noexec 0 0", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001764" - ], - "nist": [ - "CM-7 (2)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230514", - "group_title": "SRG-OS-000368-GPOS-00154", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230514r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:333", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33158r568289_fix", - "fixtext_fixref": "F-33158r568289_fix", - "ident": { - "text": "CCI-001764", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230514r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230514r627750_rule", - "version": "RHEL-08-040126", - "time": "2021-12-17T10:30:39", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-001764", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33158r568289_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:333", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230515", - "title": "RHEL 8 must mount /var/log with the nosuid option.", - "desc": "The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\n\nThe \"noexec\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nodev\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nosuid\" mount option causes the system to not execute \"setuid\" and \"setgid\" files with owner privileges. This option must be used for mounting any file system not containing approved \"setuid\" and \"setguid\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:334", - "label": "check" - }, - { - "data": "Configure the system so that /var/log is mounted with the \"nosuid\" option by adding /modifying the /etc/fstab with the following line:\n\n/dev/mapper/rhel-var-log /var/log xfs defaults,nodev,nosuid,noexec 0 0", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001764" - ], - "nist": [ - "CM-7 (2)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230515", - "group_title": "SRG-OS-000368-GPOS-00154", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230515r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:334", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33159r568292_fix", - "fixtext_fixref": "F-33159r568292_fix", - "ident": { - "text": "CCI-001764", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230515r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230515r627750_rule", - "version": "RHEL-08-040127", - "time": "2021-12-17T10:30:39", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-001764", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33159r568292_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:334", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230516", - "title": "RHEL 8 must mount /var/log with the noexec option.", - "desc": "The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\n\nThe \"noexec\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nodev\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nosuid\" mount option causes the system to not execute \"setuid\" and \"setgid\" files with owner privileges. This option must be used for mounting any file system not containing approved \"setuid\" and \"setguid\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:335", - "label": "check" - }, - { - "data": "Configure the system so that /var/log is mounted with the \"noexec\" option by adding /modifying the /etc/fstab with the following line:\n\n/dev/mapper/rhel-var-log /var/log xfs defaults,nodev,nosuid,noexec 0 0", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001764" - ], - "nist": [ - "CM-7 (2)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230516", - "group_title": "SRG-OS-000368-GPOS-00154", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230516r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:335", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33160r568295_fix", - "fixtext_fixref": "F-33160r568295_fix", - "ident": { - "text": "CCI-001764", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230516r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230516r627750_rule", - "version": "RHEL-08-040128", - "time": "2021-12-17T10:30:39", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-001764", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33160r568295_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:335", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230517", - "title": "RHEL 8 must mount /var/log/audit with the nodev option.", - "desc": "The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\n\nThe \"noexec\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nodev\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nosuid\" mount option causes the system to not execute \"setuid\" and \"setgid\" files with owner privileges. This option must be used for mounting any file system not containing approved \"setuid\" and \"setguid\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:336", - "label": "check" - }, - { - "data": "Configure the system so that /var/log/audit is mounted with the \"nodev\" option by adding /modifying the /etc/fstab with the following line:\n\n/dev/mapper/rhel-var-log-audit /var/log/audit xfs defaults,nodev,nosuid,noexec 0 0", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001764" - ], - "nist": [ - "CM-7 (2)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230517", - "group_title": "SRG-OS-000368-GPOS-00154", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230517r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:336", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33161r568298_fix", - "fixtext_fixref": "F-33161r568298_fix", - "ident": { - "text": "CCI-001764", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230517r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230517r627750_rule", - "version": "RHEL-08-040129", - "time": "2021-12-17T10:30:39", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-001764", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33161r568298_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:336", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230518", - "title": "RHEL 8 must mount /var/log/audit with the nosuid option.", - "desc": "The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\n\nThe \"noexec\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nodev\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nosuid\" mount option causes the system to not execute \"setuid\" and \"setgid\" files with owner privileges. This option must be used for mounting any file system not containing approved \"setuid\" and \"setguid\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:337", - "label": "check" - }, - { - "data": "Configure the system so that /var/log/audit is mounted with the \"nosuid\" option by adding /modifying the /etc/fstab with the following line:\n\n/dev/mapper/rhel-var-log-audit /var/log/audit xfs defaults,nodev,nosuid,noexec 0 0", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001764" - ], - "nist": [ - "CM-7 (2)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230518", - "group_title": "SRG-OS-000368-GPOS-00154", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230518r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:337", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33162r568301_fix", - "fixtext_fixref": "F-33162r568301_fix", - "ident": { - "text": "CCI-001764", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230518r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230518r627750_rule", - "version": "RHEL-08-040130", - "time": "2021-12-17T10:30:39", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-001764", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33162r568301_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:337", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230519", - "title": "RHEL 8 must mount /var/log/audit with the noexec option.", - "desc": "The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\n\nThe \"noexec\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nodev\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nosuid\" mount option causes the system to not execute \"setuid\" and \"setgid\" files with owner privileges. This option must be used for mounting any file system not containing approved \"setuid\" and \"setguid\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:338", - "label": "check" - }, - { - "data": "Configure the system so that /var/log/audit is mounted with the \"noexec\" option by adding /modifying the /etc/fstab with the following line:\n\n/dev/mapper/rhel-var-log-audit /var/log/audit xfs defaults,nodev,nosuid,noexec 0 0", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001764" - ], - "nist": [ - "CM-7 (2)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230519", - "group_title": "SRG-OS-000368-GPOS-00154", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230519r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:338", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33163r568304_fix", - "fixtext_fixref": "F-33163r568304_fix", - "ident": { - "text": "CCI-001764", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230519r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230519r627750_rule", - "version": "RHEL-08-040131", - "time": "2021-12-17T10:30:39", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-001764", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33163r568304_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:338", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230520", - "title": "RHEL 8 must mount /var/tmp with the nodev option.", - "desc": "The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\n\nThe \"noexec\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nodev\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nosuid\" mount option causes the system to not execute \"setuid\" and \"setgid\" files with owner privileges. This option must be used for mounting any file system not containing approved \"setuid\" and \"setguid\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:339", - "label": "check" - }, - { - "data": "Configure the system so that /var/tmp is mounted with the \"nodev\" option by adding /modifying the /etc/fstab with the following line:\n\n/dev/mapper/rhel-var-log-audit /var/tmp xfs defaults,nodev,nosuid,noexec 0 0", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001764" - ], - "nist": [ - "CM-7 (2)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230520", - "group_title": "SRG-OS-000368-GPOS-00154", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230520r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:339", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33164r568307_fix", - "fixtext_fixref": "F-33164r568307_fix", - "ident": { - "text": "CCI-001764", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230520r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230520r627750_rule", - "version": "RHEL-08-040132", - "time": "2021-12-17T10:30:39", - "weight": "10.0", - "severity": "medium", - "cdf:result": "pass", - "cdf:ident": { - "text": "CCI-001764", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33164r568307_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:339", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:39", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230521", - "title": "RHEL 8 must mount /var/tmp with the nosuid option.", - "desc": "The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\n\nThe \"noexec\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nodev\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nosuid\" mount option causes the system to not execute \"setuid\" and \"setgid\" files with owner privileges. This option must be used for mounting any file system not containing approved \"setuid\" and \"setguid\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:340", - "label": "check" - }, - { - "data": "Configure the system so that /var/tmp is mounted with the \"nosuid\" option by adding /modifying the /etc/fstab with the following line:\n\n/dev/mapper/rhel-var-log-audit /var/tmp xfs defaults,nodev,nosuid,noexec 0 0", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001764" - ], - "nist": [ - "CM-7 (2)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230521", - "group_title": "SRG-OS-000368-GPOS-00154", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230521r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:340", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33165r568310_fix", - "fixtext_fixref": "F-33165r568310_fix", - "ident": { - "text": "CCI-001764", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230521r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230521r627750_rule", - "version": "RHEL-08-040133", - "time": "2021-12-17T10:30:40", - "weight": "10.0", - "severity": "medium", - "cdf:result": "pass", - "cdf:ident": { - "text": "CCI-001764", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33165r568310_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:340", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:40", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230522", - "title": "RHEL 8 must mount /var/tmp with the noexec option.", - "desc": "The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\n\nThe \"noexec\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nodev\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nosuid\" mount option causes the system to not execute \"setuid\" and \"setgid\" files with owner privileges. This option must be used for mounting any file system not containing approved \"setuid\" and \"setguid\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:341", - "label": "check" - }, - { - "data": "Configure the system so that /var/tmp is mounted with the \"noexec\" option by adding /modifying the /etc/fstab with the following line:\n\n/dev/mapper/rhel-var-log-audit /var/tmp xfs defaults,nodev,nosuid,noexec 0 0", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-001764" - ], - "nist": [ - "CM-7 (2)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230522", - "group_title": "SRG-OS-000368-GPOS-00154", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230522r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:341", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33166r568313_fix", - "fixtext_fixref": "F-33166r568313_fix", - "ident": { - "text": "CCI-001764", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230522r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230522r627750_rule", - "version": "RHEL-08-040134", - "time": "2021-12-17T10:30:40", - "weight": "10.0", - "severity": "medium", - "cdf:result": "pass", - "cdf:ident": { - "text": "CCI-001764", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33166r568313_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:341", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:40", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230526", - "title": "All RHEL 8 networked systems must have and implement SSH to protect the confidentiality and integrity of transmitted and received information, as well as information during preparation for transmission.", - "desc": "Without protection of the transmitted information, confidentiality and integrity may be compromised because unprotected communications can be intercepted and either read or altered. \n\nThis requirement applies to both internal and external networks and all types of information system components from which information can be transmitted (e.g., servers, mobile devices, notebook computers, printers, copiers, scanners, and facsimile machines). Communication paths outside the physical protection of a controlled boundary are exposed to the possibility of interception and modification. \n\nProtecting the confidentiality and integrity of organizational information can be accomplished by physical means (e.g., employing physical distribution systems) or by logical means (e.g., employing cryptographic techniques). If physical means of protection are employed, then logical means (cryptography) do not have to be employed, and vice versa.\n\nSatisfies: SRG-OS-000423-GPOS-00187, SRG-OS-000424-GPOS-00188, SRG-OS-000425-GPOS-00189, SRG-OS-000426-GPOS-00190", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:342", - "label": "check" - }, - { - "data": "Configure the SSH service to automatically start after reboot with the following command:\n\n$ sudo systemctl enable sshd.service", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-002418" - ], - "nist": [ - "SC-8" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without protection of the transmitted information, confidentiality and integrity may be compromised because unprotected communications can be intercepted and either read or altered. \\n\\nThis requirement applies to both internal and external networks and all types of information system components from which information can be transmitted (e.g., servers, mobile devices, notebook computers, printers, copiers, scanners, and facsimile machines). Communication paths outside the physical protection of a controlled boundary are exposed to the possibility of interception and modification. \\n\\nProtecting the confidentiality and integrity of organizational information can be accomplished by physical means (e.g., employing physical distribution systems) or by logical means (e.g., employing cryptographic techniques). If physical means of protection are employed, then logical means (cryptography) do not have to be employed, and vice versa.\\n\\nSatisfies: SRG-OS-000423-GPOS-00187, SRG-OS-000424-GPOS-00188, SRG-OS-000425-GPOS-00189, SRG-OS-000426-GPOS-00190\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230526", - "group_title": "SRG-OS-000423-GPOS-00187", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230526r744032_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:342", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33170r744031_fix", - "fixtext_fixref": "F-33170r744031_fix", - "ident": { - "text": "CCI-002418", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230526r744032_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230526r744032_rule", - "version": "RHEL-08-040160", - "time": "2021-12-17T10:30:40", - "weight": "10.0", - "severity": "medium", - "cdf:result": "pass", - "cdf:ident": { - "text": "CCI-002418", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33170r744031_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:342", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:40", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230527", - "title": "RHEL 8 must force a frequent session key renegotiation for SSH connections to the server.", - "desc": "Without protection of the transmitted information, confidentiality and integrity may be compromised because unprotected communications can be intercepted and either read or altered. \n\nThis requirement applies to both internal and external networks and all types of information system components from which information can be transmitted (e.g., servers, mobile devices, notebook computers, printers, copiers, scanners, and facsimile machines). Communication paths outside the physical protection of a controlled boundary are exposed to the possibility of interception and modification. \n\nProtecting the confidentiality and integrity of organizational information can be accomplished by physical means (e.g., employing physical distribution systems) or by logical means (e.g., employing cryptographic techniques). If physical means of protection are employed, then logical means (cryptography) do not have to be employed, and vice versa.\n\nSession key regeneration limits the chances of a session key becoming compromised.\n\nSatisfies: SRG-OS-000033-GPOS-00014, SRG-OS-000420-GPOS-00186, SRG-OS-000424-GPOS-00188", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:343", - "label": "check" - }, - { - "data": "Configure the system to force a frequent session key renegotiation for SSH connections to the server by add or modifying the following line in the \"/etc/ssh/sshd_config\" file:\n\nRekeyLimit 1G 1h\n\nRestart the SSH daemon for the settings to take effect.\n\n$ sudo systemctl restart sshd.service", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000068" - ], - "nist": [ - "AC-17 (2)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without protection of the transmitted information, confidentiality and integrity may be compromised because unprotected communications can be intercepted and either read or altered. \\n\\nThis requirement applies to both internal and external networks and all types of information system components from which information can be transmitted (e.g., servers, mobile devices, notebook computers, printers, copiers, scanners, and facsimile machines). Communication paths outside the physical protection of a controlled boundary are exposed to the possibility of interception and modification. \\n\\nProtecting the confidentiality and integrity of organizational information can be accomplished by physical means (e.g., employing physical distribution systems) or by logical means (e.g., employing cryptographic techniques). If physical means of protection are employed, then logical means (cryptography) do not have to be employed, and vice versa.\\n\\nSession key regeneration limits the chances of a session key becoming compromised.\\n\\nSatisfies: SRG-OS-000033-GPOS-00014, SRG-OS-000420-GPOS-00186, SRG-OS-000424-GPOS-00188\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230527", - "group_title": "SRG-OS-000033-GPOS-00014", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230527r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:343", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33171r568328_fix", - "fixtext_fixref": "F-33171r568328_fix", - "ident": { - "text": "CCI-000068", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230527r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230527r627750_rule", - "version": "RHEL-08-040161", - "time": "2021-12-17T10:30:42", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000068", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33171r568328_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:343", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:42", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230531", - "title": "The systemd Ctrl-Alt-Delete burst key sequence in RHEL 8 must be disabled.", - "desc": "A locally logged-on user who presses Ctrl-Alt-Delete when at the console can reboot the system. If accidentally pressed, as could happen in the case of a mixed OS environment, this can create the risk of short-term loss of availability of systems due to unintentional reboot. In a graphical user environment, risk of unintentional reboot from the Ctrl-Alt-Delete sequence is reduced because the user will be prompted before any action is taken.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:345", - "label": "check" - }, - { - "data": "Configure the system to disable the CtrlAltDelBurstAction by added or modifying the following line in the \"/etc/systemd/system.conf\" configuration file:\n\nCtrlAltDelBurstAction=none\n\nReload the daemon for this change to take effect.\n\n$ sudo systemctl daemon-reload", - "label": "fix" - } - ], - "impact": 0.7, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "high", - "description": "{\"VulnDiscussion\":\"A locally logged-on user who presses Ctrl-Alt-Delete when at the console can reboot the system. If accidentally pressed, as could happen in the case of a mixed OS environment, this can create the risk of short-term loss of availability of systems due to unintentional reboot. In a graphical user environment, risk of unintentional reboot from the Ctrl-Alt-Delete sequence is reduced because the user will be prompted before any action is taken.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230531", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230531r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:345", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33175r619890_fix", - "fixtext_fixref": "F-33175r619890_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230531r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230531r627750_rule", - "version": "RHEL-08-040172", - "time": "2021-12-17T10:30:42", - "weight": "10.0", - "severity": "high", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33175r619890_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:345", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:42", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230533", - "title": "The Trivial File Transfer Protocol (TFTP) server package must not be installed if not required for RHEL 8 operational support.", - "desc": "If TFTP is required for operational support (such as the transmission of router configurations) its use must be documented with the Information System Security Officer (ISSO), restricted to only authorized personnel, and have access control rules established.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:346", - "label": "check" - }, - { - "data": "Remove the TFTP package from the system with the following command:\n\n$ sudo yum remove tftp-server", - "label": "fix" - } - ], - "impact": 0.7, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "high", - "description": "{\"VulnDiscussion\":\"If TFTP is required for operational support (such as the transmission of router configurations) its use must be documented with the Information System Security Officer (ISSO), restricted to only authorized personnel, and have access control rules established.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230533", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230533r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:346", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33177r568346_fix", - "fixtext_fixref": "F-33177r568346_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230533r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230533r627750_rule", - "version": "RHEL-08-040190", - "time": "2021-12-17T10:30:42", - "weight": "10.0", - "severity": "high", - "cdf:result": "pass", - "cdf:ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33177r568346_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:346", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:42", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230534", - "title": "The root account must be the only account having unrestricted access to the RHEL 8 system.", - "desc": "If an account other than root also has a User Identifier (UID) of \"0\", it has root authority, giving that account unrestricted access to the entire operating system. Multiple accounts with a UID of \"0\" afford an opportunity for potential intruders to guess a password for a privileged account.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:347", - "label": "check" - }, - { - "data": "Change the UID of any account on the system, other than root, that has a UID of \"0\". \n\nIf the account is associated with system commands or applications, the UID should be changed to one greater than \"0\" but less than \"1000\". Otherwise, assign a UID of greater than \"1000\" that has not already been assigned.", - "label": "fix" - } - ], - "impact": 0.7, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "high", - "description": "{\"VulnDiscussion\":\"If an account other than root also has a User Identifier (UID) of \\\"0\\\", it has root authority, giving that account unrestricted access to the entire operating system. Multiple accounts with a UID of \\\"0\\\" afford an opportunity for potential intruders to guess a password for a privileged account.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230534", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230534r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:347", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33178r568349_fix", - "fixtext_fixref": "F-33178r568349_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230534r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230534r627750_rule", - "version": "RHEL-08-040200", - "time": "2021-12-17T10:30:44", - "weight": "10.0", - "severity": "high", - "cdf:result": "pass", - "cdf:ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33178r568349_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:347", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:44", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230535", - "title": "RHEL 8 must prevent IPv6 Internet Control Message Protocol (ICMP) redirect messages from being accepted.", - "desc": "ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages modify the host's route table and are unauthenticated. An illicit ICMP redirect message could result in a man-in-the-middle attack.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:348", - "label": "check" - }, - { - "data": "Configure RHEL 8 to prevent IPv6 ICMP redirect messages from being accepted with the following command:\n\n$ sudo sysctl -w net.ipv6.conf.default.accept_redirects=0\n\nIf \"0\" is not the system's default value then add or update the following line in the appropriate file under \"/etc/sysctl.d\":\n\nnet.ipv6.conf.default.accept_redirects=0", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages modify the host's route table and are unauthenticated. An illicit ICMP redirect message could result in a man-in-the-middle attack.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230535", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230535r744035_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:348", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33179r744034_fix", - "fixtext_fixref": "F-33179r744034_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230535r744035_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230535r744035_rule", - "version": "RHEL-08-040210", - "time": "2021-12-17T10:30:44", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33179r744034_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:348", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:44", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230536", - "title": "RHEL 8 must not send Internet Control Message Protocol (ICMP) redirects.", - "desc": "ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages contain information from the system's route table, possibly revealing portions of the network topology.\n\nThere are notable differences between Internet Protocol version 4 (IPv4) and Internet Protocol version 6 (IPv6). There is only a directive to disable sending of IPv4 redirected packets. Refer to RFC4294 for an explanation of \"IPv6 Node Requirements\", which resulted in this difference between IPv4 and IPv6.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:349", - "label": "check" - }, - { - "data": "Configure RHEL 8 to not allow interfaces to perform IPv4 ICMP redirects with the following command:\n\n$ sudo sysctl -w net.ipv4.conf.all.send_redirects=0\n\nIf \"0\" is not the system's default value then add or update the following line in the appropriate file under \"/etc/sysctl.d\":\n\nnet.ipv4.conf.all.send_redirects=0", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages contain information from the system's route table, possibly revealing portions of the network topology.\\n\\nThere are notable differences between Internet Protocol version 4 (IPv4) and Internet Protocol version 6 (IPv6). There is only a directive to disable sending of IPv4 redirected packets. Refer to RFC4294 for an explanation of \\\"IPv6 Node Requirements\\\", which resulted in this difference between IPv4 and IPv6.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230536", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230536r744037_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:349", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33180r568355_fix", - "fixtext_fixref": "F-33180r568355_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230536r744037_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230536r744037_rule", - "version": "RHEL-08-040220", - "time": "2021-12-17T10:30:45", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33180r568355_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:349", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:45", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230537", - "title": "RHEL 8 must not respond to Internet Control Message Protocol (ICMP) echoes sent to a broadcast address.", - "desc": "Responding to broadcast ICMP echoes facilitates network mapping and provides a vector for amplification attacks.\n\nThere are notable differences between Internet Protocol version 4 (IPv4) and Internet Protocol version 6 (IPv6). IPv6 does not implement the same method of broadcast as IPv4. Instead, IPv6 uses multicast addressing to the all-hosts multicast group. Refer to RFC4294 for an explanation of \"IPv6 Node Requirements\", which resulted in this difference between IPv4 and IPv6.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:350", - "label": "check" - }, - { - "data": "Configure RHEL 8 to not respond to IPv4 ICMP echoes sent to a broadcast address with the following command:\n\n$ sudo sysctl -w net.ipv4.icmp_echo_ignore_broadcasts=1\n\nIf \"1\" is not the system's default value then add or update the following line in the appropriate file under \"/etc/sysctl.d\":\n\nnet.ipv4.icmp_echo_ignore_broadcasts=1", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Responding to broadcast ICMP echoes facilitates network mapping and provides a vector for amplification attacks.\\n\\nThere are notable differences between Internet Protocol version 4 (IPv4) and Internet Protocol version 6 (IPv6). IPv6 does not implement the same method of broadcast as IPv4. Instead, IPv6 uses multicast addressing to the all-hosts multicast group. Refer to RFC4294 for an explanation of \\\"IPv6 Node Requirements\\\", which resulted in this difference between IPv4 and IPv6.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230537", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230537r744039_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:350", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33181r568358_fix", - "fixtext_fixref": "F-33181r568358_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230537r744039_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230537r744039_rule", - "version": "RHEL-08-040230", - "time": "2021-12-17T10:30:45", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33181r568358_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:350", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:45", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230538", - "title": "RHEL 8 must not forward IPv6 source-routed packets.", - "desc": "Source-routed packets allow the source of the packet to suggest that routers forward the packet along a different path than configured on the router, which can be used to bypass network security measures. This requirement applies only to the forwarding of source-routed traffic, such as when forwarding is enabled and the system is functioning as a router.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:351", - "label": "check" - }, - { - "data": "Configure RHEL 8 to not forward IPv6 source-routed packets with the following command:\n\n$ sudo sysctl -w net.ipv6.conf.all.accept_source_route=0\n\nIf \"0\" is not the system's all value then add or update the following line in the appropriate file under \"/etc/sysctl.d\":\n\nnet.ipv6.conf.all.accept_source_route=0", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Source-routed packets allow the source of the packet to suggest that routers forward the packet along a different path than configured on the router, which can be used to bypass network security measures. This requirement applies only to the forwarding of source-routed traffic, such as when forwarding is enabled and the system is functioning as a router.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230538", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230538r744042_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:351", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33182r744041_fix", - "fixtext_fixref": "F-33182r744041_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230538r744042_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230538r744042_rule", - "version": "RHEL-08-040240", - "time": "2021-12-17T10:30:45", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33182r744041_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:351", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:45", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230539", - "title": "RHEL 8 must not forward IPv6 source-routed packets by default.", - "desc": "Source-routed packets allow the source of the packet to suggest that routers forward the packet along a different path than configured on the router, which can be used to bypass network security measures. This requirement applies only to the forwarding of source-routed traffic, such as when forwarding is enabled and the system is functioning as a router.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:352", - "label": "check" - }, - { - "data": "Configure RHEL 8 to not forward IPv6 source-routed packets by default with the following command:\n\n$ sudo sysctl -w net.ipv6.conf.default.accept_source_route=0\n\nIf \"0\" is not the system's default value then add or update the following line in the appropriate file under \"/etc/sysctl.d\":\n\nnet.ipv6.conf.default.accept_source_route=0", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Source-routed packets allow the source of the packet to suggest that routers forward the packet along a different path than configured on the router, which can be used to bypass network security measures. This requirement applies only to the forwarding of source-routed traffic, such as when forwarding is enabled and the system is functioning as a router.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230539", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230539r744045_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:352", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33183r744044_fix", - "fixtext_fixref": "F-33183r744044_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230539r744045_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230539r744045_rule", - "version": "RHEL-08-040250", - "time": "2021-12-17T10:30:45", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33183r744044_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:352", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:45", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230540", - "title": "RHEL 8 must not be performing packet forwarding unless the system is a router.", - "desc": "Routing protocol daemons are typically used on routers to exchange network topology information with other routers. If this software is used when not required, system network information may be unnecessarily transmitted across the network.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:353", - "label": "check" - }, - { - "data": "Configure RHEL 8 to not allow packet forwarding, unless the system is a router with the following commands:\n\n$ sudo sysctl -w net.ipv4.ip_forward=0\n\n$ sudo sysctl -w net.ipv6.conf.all.forwarding=0\n\nIf \"0\" is not the system's default value then add or update the following lines in the appropriate file under \"/etc/sysctl.d\":\n\nnet.ipv4.ip_forward=0\n\nnet.ipv6.conf.all.forwarding=0", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Routing protocol daemons are typically used on routers to exchange network topology information with other routers. If this software is used when not required, system network information may be unnecessarily transmitted across the network.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230540", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230540r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:353", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33184r568367_fix", - "fixtext_fixref": "F-33184r568367_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230540r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230540r627750_rule", - "version": "RHEL-08-040260", - "time": "2021-12-17T10:30:45", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33184r568367_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:353", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:45", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230541", - "title": "RHEL 8 must not accept router advertisements on all IPv6 interfaces.", - "desc": "Routing protocol daemons are typically used on routers to exchange network topology information with other routers. If this software is used when not required, system network information may be unnecessarily transmitted across the network.\n\nAn illicit router advertisement message could result in a man-in-the-middle attack.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:354", - "label": "check" - }, - { - "data": "Configure RHEL 8 to not accept router advertisements on all IPv6 interfaces unless the system is a router with the following commands:\n\n$ sudo sysctl -w net.ipv6.conf.all.accept_ra=0\n\nIf \"0\" is not the system's default value then add or update the following lines in the appropriate file under \"/etc/sysctl.d\":\n\nnet.ipv6.conf.all.accept_ra=0", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Routing protocol daemons are typically used on routers to exchange network topology information with other routers. If this software is used when not required, system network information may be unnecessarily transmitted across the network.\\n\\nAn illicit router advertisement message could result in a man-in-the-middle attack.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230541", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230541r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:354", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33185r568370_fix", - "fixtext_fixref": "F-33185r568370_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230541r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230541r627750_rule", - "version": "RHEL-08-040261", - "time": "2021-12-17T10:30:45", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33185r568370_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:354", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:45", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230542", - "title": "RHEL 8 must not accept router advertisements on all IPv6 interfaces by default.", - "desc": "Routing protocol daemons are typically used on routers to exchange network topology information with other routers. If this software is used when not required, system network information may be unnecessarily transmitted across the network.\n\nAn illicit router advertisement message could result in a man-in-the-middle attack.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:355", - "label": "check" - }, - { - "data": "Configure RHEL 8 to not accept router advertisements on all IPv6 interfaces by default unless the system is a router with the following commands:\n\n$ sudo sysctl -w net.ipv6.conf.default.accept_ra=0\n\nIf \"0\" is not the system's default value then add or update the following lines in the appropriate file under \"/etc/sysctl.d\":\n\nnet.ipv6.conf.default.accept_ra=0", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Routing protocol daemons are typically used on routers to exchange network topology information with other routers. If this software is used when not required, system network information may be unnecessarily transmitted across the network.\\n\\nAn illicit router advertisement message could result in a man-in-the-middle attack.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230542", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230542r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:355", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33186r568373_fix", - "fixtext_fixref": "F-33186r568373_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230542r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230542r627750_rule", - "version": "RHEL-08-040262", - "time": "2021-12-17T10:30:45", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33186r568373_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:355", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:45", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230543", - "title": "RHEL 8 must not allow interfaces to perform Internet Control Message Protocol (ICMP) redirects by default.", - "desc": "ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages contain information from the system's route table, possibly revealing portions of the network topology.\n\nThere are notable differences between Internet Protocol version 4 (IPv4) and Internet Protocol version 6 (IPv6). There is only a directive to disable sending of IPv4 redirected packets. Refer to RFC4294 for an explanation of \"IPv6 Node Requirements\", which resulted in this difference between IPv4 and IPv6.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:356", - "label": "check" - }, - { - "data": "Configure RHEL 8 to not allow interfaces to perform Internet Protocol version 4 (IPv4) ICMP redirects by default with the following command:\n\n$ sudo sysctl -w net.ipv4.conf.default.send_redirects=0\n\nIf \"0\" is not the system's default value then add or update the following line in the appropriate file under \"/etc/sysctl.d\":\n\nnet.ipv4.conf.default.send_redirects=0", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages contain information from the system's route table, possibly revealing portions of the network topology.\\n\\nThere are notable differences between Internet Protocol version 4 (IPv4) and Internet Protocol version 6 (IPv6). There is only a directive to disable sending of IPv4 redirected packets. Refer to RFC4294 for an explanation of \\\"IPv6 Node Requirements\\\", which resulted in this difference between IPv4 and IPv6.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230543", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230543r744047_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:356", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33187r568376_fix", - "fixtext_fixref": "F-33187r568376_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230543r744047_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230543r744047_rule", - "version": "RHEL-08-040270", - "time": "2021-12-17T10:30:45", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33187r568376_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:356", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:45", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230544", - "title": "RHEL 8 must ignore IPv6 Internet Control Message Protocol (ICMP) redirect messages.", - "desc": "ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages modify the host's route table and are unauthenticated. An illicit ICMP redirect message could result in a man-in-the-middle attack.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:357", - "label": "check" - }, - { - "data": "Configure RHEL 8 to ignore IPv6 ICMP redirect messages with the following command:\n\n$ sudo sysctl -w net.ipv6.conf.all.accept_redirects=0\n\nIf \"0\" is not the system's default value then add or update the following line in the appropriate file under \"/etc/sysctl.d\":\n\nnet.ipv6.conf.all.accept_redirects = 0", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages modify the host's route table and are unauthenticated. An illicit ICMP redirect message could result in a man-in-the-middle attack.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230544", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230544r744050_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:357", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33188r744049_fix", - "fixtext_fixref": "F-33188r744049_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230544r744050_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230544r744050_rule", - "version": "RHEL-08-040280", - "time": "2021-12-17T10:30:46", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33188r744049_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:357", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:46", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230545", - "title": "RHEL 8 must disable access to network bpf syscall from unprivileged processes.", - "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:358", - "label": "check" - }, - { - "data": "Configure RHEL 8 to prevent privilege escalation thru the kernel by disabling access to the bpf syscall by adding the following line to a file in the \"/etc/sysctl.d\" directory:\n\nkernel.unprivileged_bpf_disabled = 1\n\nThe system configuration files need to be reloaded for the changes to take effect. To reload the contents of the files, run the following command:\n\n$ sudo sysctl --system", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230545", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230545r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:358", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33189r568382_fix", - "fixtext_fixref": "F-33189r568382_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230545r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230545r627750_rule", - "version": "RHEL-08-040281", - "time": "2021-12-17T10:30:46", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33189r568382_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:358", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:46", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230546", - "title": "RHEL 8 must restrict usage of ptrace to descendant processes.", - "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:359", - "label": "check" - }, - { - "data": "Configure RHEL 8 to restrict usage of ptrace to descendant processes by adding the following line to a file in the \"/etc/sysctl.d\" directory:\n\nkernel.yama.ptrace_scope = 1\n\nThe system configuration files need to be reloaded for the changes to take effect. To reload the contents of the files, run the following command:\n\n$ sudo sysctl --system", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230546", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230546r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:359", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33190r568385_fix", - "fixtext_fixref": "F-33190r568385_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230546r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230546r627750_rule", - "version": "RHEL-08-040282", - "time": "2021-12-17T10:30:46", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33190r568385_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:359", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:46", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230547", - "title": "RHEL 8 must restrict exposed kernel pointer addresses access.", - "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:360", - "label": "check" - }, - { - "data": "Configure RHEL 8 to restrict exposed kernel pointer addresses access by adding the following line to a file in the \"/etc/sysctl.d\" directory:\n\nkernel.kptr_restrict = 1\n\nThe system configuration files need to be reloaded for the changes to take effect. To reload the contents of the files, run the following command:\n\n$ sudo sysctl --system", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230547", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230547r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:360", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33191r568388_fix", - "fixtext_fixref": "F-33191r568388_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230547r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230547r627750_rule", - "version": "RHEL-08-040283", - "time": "2021-12-17T10:30:46", - "weight": "10.0", - "severity": "medium", - "cdf:result": "pass", - "cdf:ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33191r568388_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:360", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:46", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230548", - "title": "RHEL 8 must disable the use of user namespaces.", - "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nUser namespaces are used primarily for Linux container. The value 0 disallows the use of user namespaces. When containers are not in use, namespaces should be disallowed. When containers are deployed on a system, the value should be set to a large non-zero value. The default value is 7182.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:361", - "label": "check" - }, - { - "data": "Configure RHEL 8 to disable the use of user namespaces by adding the following line to a file in the \"/etc/sysctl.d\" directory:\n\nNote: User namespaces are used primarily for Linux containers. If containers are in use, this requirement is not applicable. \n\nuser.max_user_namespaces = 0\n\nThe system configuration files need to be reloaded for the changes to take effect. To reload the contents of the files, run the following command:\n\n$ sudo sysctl --system", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nUser namespaces are used primarily for Linux container. The value 0 disallows the use of user namespaces. When containers are not in use, namespaces should be disallowed. When containers are deployed on a system, the value should be set to a large non-zero value. The default value is 7182.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230548", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230548r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:361", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33192r568391_fix", - "fixtext_fixref": "F-33192r568391_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230548r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230548r627750_rule", - "version": "RHEL-08-040284", - "time": "2021-12-17T10:30:46", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33192r568391_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:361", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:46", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230549", - "title": "RHEL 8 must use reverse path filtering on all IPv4 interfaces.", - "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nEnabling reverse path filtering drops packets with source addresses that are not routable. There is not an equivalent filter for IPv6 traffic.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:362", - "label": "check" - }, - { - "data": "Configure RHEL 8 to use reverse path filtering on all IPv4 interfaces by adding the following line to a file in the \"/etc/sysctl.d\" directory:\n\nnet.ipv4.conf.all.rp_filter = 1\n\nThe system configuration files need to be reloaded for the changes to take effect. To reload the contents of the files, run the following command:\n\n$ sudo sysctl --system", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nEnabling reverse path filtering drops packets with source addresses that are not routable. There is not an equivalent filter for IPv6 traffic.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230549", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230549r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:362", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33193r568394_fix", - "fixtext_fixref": "F-33193r568394_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230549r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230549r627750_rule", - "version": "RHEL-08-040285", - "time": "2021-12-17T10:30:46", - "weight": "10.0", - "severity": "medium", - "cdf:result": "pass", - "cdf:ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33193r568394_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:362", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:46", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230550", - "title": "RHEL 8 must be configured to prevent unrestricted mail relaying.", - "desc": "If unrestricted mail relaying is permitted, unauthorized senders could use this host as a mail relay for the purpose of sending spam or other unauthorized activity.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:363", - "label": "check" - }, - { - "data": "If \"postfix\" is installed, modify the \"/etc/postfix/main.cf\" file to restrict client connections to the local network with the following command:\n\n$ sudo postconf -e 'smtpd_client_restrictions = permit_mynetworks,reject'", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"If unrestricted mail relaying is permitted, unauthorized senders could use this host as a mail relay for the purpose of sending spam or other unauthorized activity.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230550", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230550r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:363", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33194r568397_fix", - "fixtext_fixref": "F-33194r568397_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230550r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230550r627750_rule", - "version": "RHEL-08-040290", - "time": "2021-12-17T10:30:47", - "weight": "10.0", - "severity": "medium", - "cdf:result": "pass", - "cdf:ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33194r568397_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:363", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:47", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230555", - "title": "RHEL 8 remote X connections for interactive users must be disabled unless to fulfill documented and validated mission requirements.", - "desc": "The security risk of using X11 forwarding is that the client's X11 display server may be exposed to attack when the SSH client requests forwarding. A system administrator may have a stance in which they want to protect clients that may expose themselves to attack by unwittingly requesting X11 forwarding, which can warrant a \"no\" setting.\n\nX11 forwarding should be enabled with caution. Users with the ability to bypass file permissions on the remote host (for the user's X11 authorization database) can access the local X11 display through the forwarded connection. An attacker may then be able to perform activities such as keystroke monitoring if the ForwardX11Trusted option is also enabled.\n\nIf X11 services are not required for the system's intended function, they should be disabled or restricted as appropriate to the system's needs.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:364", - "label": "check" - }, - { - "data": "Edit the \"/etc/ssh/sshd_config\" file to uncomment or add the line for the \"X11Forwarding\" keyword and set its value to \"no\" (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor):\n\nX11Forwarding no\n\nThe SSH service must be restarted for changes to take effect:\n\n$ sudo systemctl restart sshd", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"The security risk of using X11 forwarding is that the client's X11 display server may be exposed to attack when the SSH client requests forwarding. A system administrator may have a stance in which they want to protect clients that may expose themselves to attack by unwittingly requesting X11 forwarding, which can warrant a \\\"no\\\" setting.\\n\\nX11 forwarding should be enabled with caution. Users with the ability to bypass file permissions on the remote host (for the user's X11 authorization database) can access the local X11 display through the forwarded connection. An attacker may then be able to perform activities such as keystroke monitoring if the ForwardX11Trusted option is also enabled.\\n\\nIf X11 services are not required for the system's intended function, they should be disabled or restricted as appropriate to the system's needs.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230555", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230555r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:364", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33199r568412_fix", - "fixtext_fixref": "F-33199r568412_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230555r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230555r627750_rule", - "version": "RHEL-08-040340", - "time": "2021-12-17T10:30:48", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33199r568412_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:364", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:48", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230556", - "title": "The RHEL 8 SSH daemon must prevent remote hosts from connecting to the proxy display.", - "desc": "When X11 forwarding is enabled, there may be additional exposure to the server and client displays if the sshd proxy display is configured to listen on the wildcard address. By default, sshd binds the forwarding server to the loopback address and sets the hostname part of the DIPSLAY environment variable to localhost. This prevents remote hosts from connecting to the proxy display.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:365", - "label": "check" - }, - { - "data": "Configure the SSH daemon to prevent remote hosts from connecting to the proxy display.\n\nEdit the \"/etc/ssh/sshd_config\" file to uncomment or add the line for the \"X11UseLocalhost\" keyword and set its value to \"yes\" (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor):\n\nX11UseLocalhost yes", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"When X11 forwarding is enabled, there may be additional exposure to the server and client displays if the sshd proxy display is configured to listen on the wildcard address. By default, sshd binds the forwarding server to the loopback address and sets the hostname part of the DIPSLAY environment variable to localhost. This prevents remote hosts from connecting to the proxy display.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230556", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230556r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:365", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33200r568415_fix", - "fixtext_fixref": "F-33200r568415_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230556r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230556r627750_rule", - "version": "RHEL-08-040341", - "time": "2021-12-17T10:30:49", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33200r568415_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:365", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:49", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230557", - "title": "If the Trivial File Transfer Protocol (TFTP) server is required, the RHEL 8 TFTP daemon must be configured to operate in secure mode.", - "desc": "Restricting TFTP to a specific directory prevents remote users from copying, transferring, or overwriting system files.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:366", - "label": "check" - }, - { - "data": "Configure the TFTP daemon to operate in secure mode by adding the following line to \"/etc/xinetd.d/tftp\" (or modify the line to have the required value):\n\nserver_args = -s /var/lib/tftpboot", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Restricting TFTP to a specific directory prevents remote users from copying, transferring, or overwriting system files.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230557", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230557r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:366", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33201r568418_fix", - "fixtext_fixref": "F-33201r568418_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230557r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230557r627750_rule", - "version": "RHEL-08-040350", - "time": "2021-12-17T10:30:49", - "weight": "10.0", - "severity": "medium", - "cdf:result": "pass", - "cdf:ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33201r568418_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:366", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:49", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230558", - "title": "A File Transfer Protocol (FTP) server package must not be installed unless mission essential on RHEL 8.", - "desc": "The FTP service provides an unencrypted remote access that does not provide for the confidentiality and integrity of user passwords or the remote session. If a privileged user were to log on using this service, the privileged user password could be compromised. SSH or other encrypted file transfer methods must be used in place of this service.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:367", - "label": "check" - }, - { - "data": "Document the FTP server package with the ISSO as an operational requirement or remove it from the system with the following command:\n\n$ sudo yum remove vsftpd", - "label": "fix" - } - ], - "impact": 0.7, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "high", - "description": "{\"VulnDiscussion\":\"The FTP service provides an unencrypted remote access that does not provide for the confidentiality and integrity of user passwords or the remote session. If a privileged user were to log on using this service, the privileged user password could be compromised. SSH or other encrypted file transfer methods must be used in place of this service.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230558", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230558r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:367", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33202r568421_fix", - "fixtext_fixref": "F-33202r568421_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230558r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230558r627750_rule", - "version": "RHEL-08-040360", - "time": "2021-12-17T10:30:49", - "weight": "10.0", - "severity": "high", - "cdf:result": "pass", - "cdf:ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33202r568421_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:367", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:49", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230559", - "title": "The gssproxy package must not be installed unless mission essential on RHEL 8.", - "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\n\nThe gssproxy package is a proxy for GSS API credential handling and could expose secrets on some networks. It is not needed for normal function of the OS.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:368", - "label": "check" - }, - { - "data": "Document the gssproxy package with the ISSO as an operational requirement or remove it from the system with the following command:\n\n$ sudo yum remove gssproxy", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000381" - ], - "nist": [ - "CM-7 a" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\\n\\nThe gssproxy package is a proxy for GSS API credential handling and could expose secrets on some networks. It is not needed for normal function of the OS.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230559", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230559r646887_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:368", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33203r568424_fix", - "fixtext_fixref": "F-33203r568424_fix", - "ident": { - "text": "CCI-000381", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230559r646887_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230559r646887_rule", - "version": "RHEL-08-040370", - "time": "2021-12-17T10:30:51", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000381", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33203r568424_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:368", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:51", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230560", - "title": "The iprutils package must not be installed unless mission essential on RHEL 8.", - "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\n\nThe iprutils package provides a suite of utilities to manage and configure SCSI devices supported by the ipr SCSI storage device driver.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:369", - "label": "check" - }, - { - "data": "Document the iprutils package with the ISSO as an operational requirement or remove it from the system with the following command:\n\n$ sudo yum remove iprutils", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\\n\\nThe iprutils package provides a suite of utilities to manage and configure SCSI devices supported by the ipr SCSI storage device driver.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230560", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230560r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:369", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33204r568427_fix", - "fixtext_fixref": "F-33204r568427_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230560r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230560r627750_rule", - "version": "RHEL-08-040380", - "time": "2021-12-17T10:30:53", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33204r568427_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:369", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:53", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-230561", - "title": "The tuned package must not be installed unless mission essential on RHEL 8.", - "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\n\nThe tuned package contains a daemon that tunes the system settings dynamically. It does so by monitoring the usage of several system components periodically. Based on that information, components will then be put into lower or higher power savings modes to adapt to the current usage. The tuned package is not needed for normal OS operations.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:370", - "label": "check" - }, - { - "data": "Document the tuned package with the ISSO as an operational requirement or remove it from the system with the following command:\n\n$ sudo yum remove tuned", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\\n\\nThe tuned package contains a daemon that tunes the system settings dynamically. It does so by monitoring the usage of several system components periodically. Based on that information, components will then be put into lower or higher power savings modes to adapt to the current usage. The tuned package is not needed for normal OS operations.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-230561", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-230561r627750_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:370", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-33205r568430_fix", - "fixtext_fixref": "F-33205r568430_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-230561r627750_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-230561r627750_rule", - "version": "RHEL-08-040390", - "time": "2021-12-17T10:30:55", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-33205r568430_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:370", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:55", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-237640", - "title": "The krb5-server package must not be installed on RHEL 8.", - "desc": "Unapproved mechanisms that are used for authentication to the cryptographic module are not verified and therefore cannot be relied upon to provide confidentiality or integrity, and DoD data may be compromised.\n\nRHEL 8 systems utilizing encryption are required to use FIPS-compliant mechanisms for authenticating to cryptographic modules.\n\nCurrently, Kerberos does not utilize FIPS 140-2 cryptography.\n\nFIPS 140-2 is the current standard for validating that mechanisms used to access cryptographic modules utilize authentication that meets DoD requirements. This allows for Security Levels 1, 2, 3, or 4 for use on a general-purpose computing system.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:413", - "label": "check" - }, - { - "data": "Document the krb5-server package with the ISSO as an operational requirement or remove it from the system with the following command:\n\n$ sudo yum remove krb5-server", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000803" - ], - "nist": [ - "IA-7" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Unapproved mechanisms that are used for authentication to the cryptographic module are not verified and therefore cannot be relied upon to provide confidentiality or integrity, and DoD data may be compromised.\\n\\nRHEL 8 systems utilizing encryption are required to use FIPS-compliant mechanisms for authenticating to cryptographic modules.\\n\\nCurrently, Kerberos does not utilize FIPS 140-2 cryptography.\\n\\nFIPS 140-2 is the current standard for validating that mechanisms used to access cryptographic modules utilize authentication that meets DoD requirements. This allows for Security Levels 1, 2, 3, or 4 for use on a general-purpose computing system.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-237640", - "group_title": "SRG-OS-000120-GPOS-00061", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-237640r646890_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:413", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-40822r646889_fix", - "fixtext_fixref": "F-40822r646889_fix", - "ident": { - "text": "CCI-000803", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-237640r646890_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-237640r646890_rule", - "version": "RHEL-08-010163", - "time": "2021-12-17T10:30:57", - "weight": "10.0", - "severity": "medium", - "cdf:result": "pass", - "cdf:ident": { - "text": "CCI-000803", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-40822r646889_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:413", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:57", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-237641", - "title": "RHEL 8 must restrict privilege elevation to authorized personnel.", - "desc": "The sudo command allows a user to execute programs with elevated (administrator) privileges. It prompts the user for their password and confirms your request to execute a command by checking a file, called sudoers. If the \"sudoers\" file is not configured correctly, any user defined on the system can initiate privileged actions on the target system.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:414", - "label": "check" - }, - { - "data": "Remove the following entries from the sudoers file:\nALL ALL=(ALL) ALL\nALL ALL=(ALL:ALL) ALL", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-000366" - ], - "nist": [ - "CM-6 b" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"The sudo command allows a user to execute programs with elevated (administrator) privileges. It prompts the user for their password and confirms your request to execute a command by checking a file, called sudoers. If the \\\"sudoers\\\" file is not configured correctly, any user defined on the system can initiate privileged actions on the target system.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-237641", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-237641r646893_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:414", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-40823r646892_fix", - "fixtext_fixref": "F-40823r646892_fix", - "ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-237641r646893_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-237641r646893_rule", - "version": "RHEL-08-010382", - "time": "2021-12-17T10:30:57", - "weight": "10.0", - "severity": "medium", - "cdf:result": "pass", - "cdf:ident": { - "text": "CCI-000366", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-40823r646892_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:414", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "passed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:57", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-237642", - "title": "RHEL 8 must use the invoking user's password for privilege escalation when using \"sudo\".", - "desc": "The sudoers security policy requires that users authenticate themselves before they can use sudo. When sudoers requires authentication, it validates the invoking user's credentials. If the rootpw, targetpw, or runaspw flags are defined and not disabled, by default the operating system will prompt the invoking user for the \"root\" user password. \nFor more information on each of the listed configurations, reference the sudoers(5) manual page.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:415", - "label": "check" - }, - { - "data": "Define the following in the Defaults section of the /etc/sudoers file or a configuration file in the /etc/sudoers.d/ directory:\nDefaults !targetpw\nDefaults !rootpw\nDefaults !runaspw", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-002227" - ], - "nist": [ - "AC-6 (5)" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"The sudoers security policy requires that users authenticate themselves before they can use sudo. When sudoers requires authentication, it validates the invoking user's credentials. If the rootpw, targetpw, or runaspw flags are defined and not disabled, by default the operating system will prompt the invoking user for the \\\"root\\\" user password. \\nFor more information on each of the listed configurations, reference the sudoers(5) manual page.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-237642", - "group_title": "SRG-OS-000480-GPOS-00227", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-237642r646896_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:415", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-40824r646895_fix", - "fixtext_fixref": "F-40824r646895_fix", - "ident": { - "text": "CCI-002227", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-237642r646896_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-237642r646896_rule", - "version": "RHEL-08-010383", - "time": "2021-12-17T10:30:57", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-002227", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-40824r646895_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:415", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:57", - "message": "", - "resource": "" - } - ] - }, - { - "id": "V-237643", - "title": "RHEL 8 must require re-authentication when using the \"sudo\" command.", - "desc": "Without re-authentication, users may access resources or perform tasks for which they do not have authorization. \n\nWhen operating systems provide the capability to escalate a functional capability, it is critical the organization requires the user to re-authenticate when using the \"sudo\" command.\n\nIf the value is set to an integer less than 0, the user's time stamp will not expire and the user will not have to re-authenticate for privileged actions until the user's session is terminated.", - "descriptions": [ - { - "data": "oval:mil.disa.stig.rhel8:def:416", - "label": "check" - }, - { - "data": "Configure the \"sudo\" command to require re-authentication.\nEdit the /etc/sudoers file:\n$ sudo visudo\n\nAdd or modify the following line:\nDefaults timestamp_timeout=[value]\nNote: The \"[value]\" must be a number that is greater than or equal to \"0\".", - "label": "fix" - } - ], - "impact": 0.5, - "refs": [], - "tags": { - "cci": [ - "CCI-002038" - ], - "nist": [ - "IA-11" - ], - "severity": "medium", - "description": "{\"VulnDiscussion\":\"Without re-authentication, users may access resources or perform tasks for which they do not have authorization. \\n\\nWhen operating systems provide the capability to escalate a functional capability, it is critical the organization requires the user to re-authenticate when using the \\\"sudo\\\" command.\\n\\nIf the value is set to an integer less than 0, the user's time stamp will not expire and the user will not have to re-authenticate for privileged actions until the user's session is terminated.\"}", - "group_id": "xccdf_mil.disa.stig_group_V-237643", - "group_title": "SRG-OS-000373-GPOS-00156", - "group_description": "{}", - "rule_id": "xccdf_mil.disa.stig_rule_SV-237643r646899_rule", - "check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:416", - "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - }, - "fix_id": "F-40825r646898_fix", - "fixtext_fixref": "F-40825r646898_fix", - "ident": { - "text": "CCI-002038", - "system": "http://cyber.mil/cci" - }, - "reference": { - "dc:publisher": "DISA", - "dc:identifier": 2921, - "dc:type": "DPMS Target" - }, - "selected": "", - "version": "xccdf_mil.disa.stig_rule_SV-237643r646899_rule", - "weight": "10.0", - "profiles": [ - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "I - Mission Critical Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "II - Mission Support Sensitive" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Classified" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Public" - }, - { - "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", - "description": { - "ProfileDescription": "" - }, - "title": "III - Administrative Sensitive" - } - ], - "rule_result": { - "idref": "xccdf_mil.disa.stig_rule_SV-237643r646899_rule", - "version": "RHEL-08-010384", - "time": "2021-12-17T10:30:57", - "weight": "10.0", - "severity": "medium", - "cdf:result": "fail", - "cdf:ident": { - "text": "CCI-002038", - "system": "http://cyber.mil/cci" - }, - "cdf:fix": { - "id": "F-40825r646898_fix" - }, - "cdf:check": { - "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", - "cdf:check-content-ref": { - "name": "oval:mil.disa.stig.rhel8:def:416", - "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" - } - } - } - }, - "code": "", - "source_location": {}, - "results": [ - { - "status": "failed", - "code_desc": "", - "run_time": 0, - "start_time": "2021-12-17T10:30:57", - "message": "", - "resource": "" - } - ] + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "high", + "description": "{\"VulnDiscussion\":\"An operating system release is considered \\\"supported\\\" if the vendor continues to provide security patches for the product. With an unsupported release, it will not be possible to resolve security issues discovered in the system software.\\n\\nRed Hat offers the Extended Update Support (EUS) ad-on to a Red Hat Enterprise Linux subscription, for a fee, for those customers who wish to standardize on a specific minor release for an extended period. The RHEL 8 minor releases eligible for EUS are 8.1, 8.2, 8.4, 8.6, and 8.8. Each RHEL 8 EUS stream is available for 24 months from the availability of the minor release. RHEL 8.10 will be the final minor release overall. For more details on the Red Hat Enterprise Linux Life Cycle visit https://access.redhat.com/support/policy/updates/errata.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230221", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230221r743913_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:100", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32865r567410_fix", + "fixtext_fixref": "F-32865r567410_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230221r743913_rule", + "weight": "10.0", + "profiles": [] + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must be a vendor-supported release.", + "id": "V-230221", + "desc": "An operating system release is considered \"supported\" if the vendor continues to provide security patches for the product. With an unsupported release, it will not be possible to resolve security issues discovered in the system software.\n\nRed Hat offers the Extended Update Support (EUS) ad-on to a Red Hat Enterprise Linux subscription, for a fee, for those customers who wish to standardize on a specific minor release for an extended period. The RHEL 8 minor releases eligible for EUS are 8.1, 8.2, 8.4, 8.6, and 8.8. Each RHEL 8 EUS stream is available for 24 months from the availability of the minor release. RHEL 8.10 will be the final minor release overall. For more details on the Red Hat Enterprise Linux Life Cycle visit https://access.redhat.com/support/policy/updates/errata.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:100", + "label": "check" + }, + { + "data": "Upgrade to a supported version of RHEL 8.", + "label": "fix" + } + ], + "impact": 0.7, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230221\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230221\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230221r743913_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230221r743913_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"high\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-010000\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must be a vendor-supported release.\",\n \"cdf:description\": \"<VulnDiscussion>An operating system release is considered \\\"supported\\\" if the vendor continues to provide security patches for the product. With an unsupported release, it will not be possible to resolve security issues discovered in the system software.\\n\\nRed Hat offers the Extended Update Support (EUS) ad-on to a Red Hat Enterprise Linux subscription, for a fee, for those customers who wish to standardize on a specific minor release for an extended period. The RHEL 8 minor releases eligible for EUS are 8.1, 8.2, 8.4, 8.6, and 8.8. Each RHEL 8 EUS stream is available for 24 months from the availability of the minor release. RHEL 8.10 will be the final minor release overall. For more details on the Red Hat Enterprise Linux Life Cycle visit https://access.redhat.com/support/policy/updates/errata.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Upgrade to a supported version of RHEL 8.\",\n \"fixref\": \"F-32865r567410_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-32865r567410_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:100\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:24:33" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000068" + ], + "nist": [ + "AC-17 (2)" + ], + "severity": "high", + "description": "{\"VulnDiscussion\":\"Use of weak or untested encryption algorithms undermines the purposes of using encryption to protect data. The operating system must implement cryptographic modules adhering to the higher standards approved by the Federal Government since this provides assurance they have been tested and validated.\\n\\nRHEL 8 utilizes GRUB 2 as the default bootloader. Note that GRUB 2 command-line parameters are defined in the \\\"kernelopts\\\" variable of the /boot/grub2/grubenv file for all kernel boot entries. The command \\\"fips-mode-setup\\\" modifies the \\\"kernelopts\\\" variable, which in turn updates all kernel boot entries. \\n\\nThe fips=1 kernel option needs to be added to the kernel command line during system installation so that key generation is done with FIPS-approved algorithms and continuous monitoring tests in place. Users must also ensure the system has plenty of entropy during the installation process by moving the mouse around, or if no mouse is available, ensuring that many keystrokes are typed. The recommended amount of keystrokes is 256 and more. Less than 256 keystrokes may generate a non-unique key.\\n\\nSatisfies: SRG-OS-000033-GPOS-00014, SRG-OS-000125-GPOS-00065, SRG-OS-000396-GPOS-00176, SRG-OS-000423-GPOS-00187, SRG-OS-000478-GPOS-00223\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230223", + "group_title": "SRG-OS-000033-GPOS-00014", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230223r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:101", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32867r567416_fix", + "fixtext_fixref": "F-32867r567416_fix", + "ident": { + "text": "CCI-000068", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230223r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230221r743913_rule", + "version": "RHEL-08-010000", + "time": "2021-12-17T10:24:33", + "weight": "10.0", + "severity": "high", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-32865r567410_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:100", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must implement NIST FIPS-validated cryptography for the following: to provision digital signatures, to generate cryptographic hashes, and to protect data requiring data-at-rest protections in accordance with applicable federal laws, Executive Orders, directives, policies, regulations, and standards.", + "id": "V-230223", + "desc": "Use of weak or untested encryption algorithms undermines the purposes of using encryption to protect data. The operating system must implement cryptographic modules adhering to the higher standards approved by the Federal Government since this provides assurance they have been tested and validated.\n\nRHEL 8 utilizes GRUB 2 as the default bootloader. Note that GRUB 2 command-line parameters are defined in the \"kernelopts\" variable of the /boot/grub2/grubenv file for all kernel boot entries. The command \"fips-mode-setup\" modifies the \"kernelopts\" variable, which in turn updates all kernel boot entries. \n\nThe fips=1 kernel option needs to be added to the kernel command line during system installation so that key generation is done with FIPS-approved algorithms and continuous monitoring tests in place. Users must also ensure the system has plenty of entropy during the installation process by moving the mouse around, or if no mouse is available, ensuring that many keystrokes are typed. The recommended amount of keystrokes is 256 and more. Less than 256 keystrokes may generate a non-unique key.\n\nSatisfies: SRG-OS-000033-GPOS-00014, SRG-OS-000125-GPOS-00065, SRG-OS-000396-GPOS-00176, SRG-OS-000423-GPOS-00187, SRG-OS-000478-GPOS-00223", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:101", + "label": "check" + }, + { + "data": "Configure the operating system to implement DoD-approved encryption by following the steps below:\n\nTo enable strict FIPS compliance, the fips=1 kernel option needs to be added to the kernel boot parameters during system installation so key generation is done with FIPS-approved algorithms and continuous monitoring tests in place.\n\nEnable FIPS mode after installation (not strict FIPS compliant) with the following command:\n\n$ sudo fips-mode-setup --enable\n\nReboot the system for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.7, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230223\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230223\",\n \"cdf:title\": \"SRG-OS-000033-GPOS-00014\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230223r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230223r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"high\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-010020\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must implement NIST FIPS-validated cryptography for the following: to provision digital signatures, to generate cryptographic hashes, and to protect data requiring data-at-rest protections in accordance with applicable federal laws, Executive Orders, directives, policies, regulations, and standards.\",\n \"cdf:description\": \"<VulnDiscussion>Use of weak or untested encryption algorithms undermines the purposes of using encryption to protect data. The operating system must implement cryptographic modules adhering to the higher standards approved by the Federal Government since this provides assurance they have been tested and validated.\\n\\nRHEL 8 utilizes GRUB 2 as the default bootloader. Note that GRUB 2 command-line parameters are defined in the \\\"kernelopts\\\" variable of the /boot/grub2/grubenv file for all kernel boot entries. The command \\\"fips-mode-setup\\\" modifies the \\\"kernelopts\\\" variable, which in turn updates all kernel boot entries. \\n\\nThe fips=1 kernel option needs to be added to the kernel command line during system installation so that key generation is done with FIPS-approved algorithms and continuous monitoring tests in place. Users must also ensure the system has plenty of entropy during the installation process by moving the mouse around, or if no mouse is available, ensuring that many keystrokes are typed. The recommended amount of keystrokes is 256 and more. Less than 256 keystrokes may generate a non-unique key.\\n\\nSatisfies: SRG-OS-000033-GPOS-00014, SRG-OS-000125-GPOS-00065, SRG-OS-000396-GPOS-00176, SRG-OS-000423-GPOS-00187, SRG-OS-000478-GPOS-00223</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000068\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to implement DoD-approved encryption by following the steps below:\\n\\nTo enable strict FIPS compliance, the fips=1 kernel option needs to be added to the kernel boot parameters during system installation so key generation is done with FIPS-approved algorithms and continuous monitoring tests in place.\\n\\nEnable FIPS mode after installation (not strict FIPS compliant) with the following command:\\n\\n$ sudo fips-mode-setup --enable\\n\\nReboot the system for the changes to take effect.\",\n \"fixref\": \"F-32867r567416_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-32867r567416_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:101\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:24:35" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000196" + ], + "nist": [ + "IA-5 (1) (c)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Passwords need to be protected at all times, and encryption is the standard method for protecting passwords. If passwords are not encrypted, they can be plainly read (i.e., clear text) and easily compromised.\\n\\nUnapproved mechanisms that are used for authentication to the cryptographic module are not verified and therefore cannot be relied upon to provide confidentiality or integrity, and DoD data may be compromised.\\n\\nFIPS 140-2 is the current standard for validating that mechanisms used to access cryptographic modules utilize authentication that meets DoD requirements.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230231", + "group_title": "SRG-OS-000073-GPOS-00041", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230231r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:103", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32875r567440_fix", + "fixtext_fixref": "F-32875r567440_fix", + "ident": { + "text": "CCI-000196", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230231r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230223r627750_rule", + "version": "RHEL-08-010020", + "time": "2021-12-17T10:24:35", + "weight": "10.0", + "severity": "high", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000068", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-32867r567416_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:101", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must encrypt all stored passwords with a FIPS 140-2 approved cryptographic hashing algorithm.", + "id": "V-230231", + "desc": "Passwords need to be protected at all times, and encryption is the standard method for protecting passwords. If passwords are not encrypted, they can be plainly read (i.e., clear text) and easily compromised.\n\nUnapproved mechanisms that are used for authentication to the cryptographic module are not verified and therefore cannot be relied upon to provide confidentiality or integrity, and DoD data may be compromised.\n\nFIPS 140-2 is the current standard for validating that mechanisms used to access cryptographic modules utilize authentication that meets DoD requirements.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:103", + "label": "check" + }, + { + "data": "Configure RHEL 8 to encrypt all stored passwords. \n\nEdit/Modify the following line in the \"/etc/login.defs\" file and set \"[ENCRYPT_METHOD]\" to SHA512.\n\nENCRYPT_METHOD SHA512", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230231\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230231\",\n \"cdf:title\": \"SRG-OS-000073-GPOS-00041\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230231r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230231r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-010110\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must encrypt all stored passwords with a FIPS 140-2 approved cryptographic hashing algorithm.\",\n \"cdf:description\": \"<VulnDiscussion>Passwords need to be protected at all times, and encryption is the standard method for protecting passwords. If passwords are not encrypted, they can be plainly read (i.e., clear text) and easily compromised.\\n\\nUnapproved mechanisms that are used for authentication to the cryptographic module are not verified and therefore cannot be relied upon to provide confidentiality or integrity, and DoD data may be compromised.\\n\\nFIPS 140-2 is the current standard for validating that mechanisms used to access cryptographic modules utilize authentication that meets DoD requirements.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000196\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure RHEL 8 to encrypt all stored passwords. \\n\\nEdit/Modify the following line in the \\\"/etc/login.defs\\\" file and set \\\"[ENCRYPT_METHOD]\\\" to SHA512.\\n\\nENCRYPT_METHOD SHA512\",\n \"fixref\": \"F-32875r567440_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-32875r567440_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:103\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:24:35" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000196" + ], + "nist": [ + "IA-5 (1) (c)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"The system must use a strong hashing algorithm to store the password.\\n\\nPasswords need to be protected at all times, and encryption is the standard method for protecting passwords. If passwords are not encrypted, they can be plainly read (i.e., clear text) and easily compromised.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230232", + "group_title": "SRG-OS-000073-GPOS-00041", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230232r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:104", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32876r567443_fix", + "fixtext_fixref": "F-32876r567443_fix", + "ident": { + "text": "CCI-000196", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230232r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230231r627750_rule", + "version": "RHEL-08-010110", + "time": "2021-12-17T10:24:35", + "weight": "10.0", + "severity": "medium", + "cdf:result": "pass", + "cdf:ident": { + "text": "CCI-000196", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-32875r567440_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:103", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must employ FIPS 140-2 approved cryptographic hashing algorithms for all stored passwords.", + "id": "V-230232", + "desc": "The system must use a strong hashing algorithm to store the password.\n\nPasswords need to be protected at all times, and encryption is the standard method for protecting passwords. If passwords are not encrypted, they can be plainly read (i.e., clear text) and easily compromised.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:104", + "label": "check" + }, + { + "data": "Lock all interactive user accounts not using SHA-512 hashing until the passwords can be regenerated with SHA-512.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230232\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230232\",\n \"cdf:title\": \"SRG-OS-000073-GPOS-00041\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230232r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230232r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-010120\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must employ FIPS 140-2 approved cryptographic hashing algorithms for all stored passwords.\",\n \"cdf:description\": \"<VulnDiscussion>The system must use a strong hashing algorithm to store the password.\\n\\nPasswords need to be protected at all times, and encryption is the standard method for protecting passwords. If passwords are not encrypted, they can be plainly read (i.e., clear text) and easily compromised.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000196\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Lock all interactive user accounts not using SHA-512 hashing until the passwords can be regenerated with SHA-512.\",\n \"fixref\": \"F-32876r567443_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-32876r567443_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:104\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:24:35" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000196" + ], + "nist": [ + "IA-5 (1) (c)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"The system must use a strong hashing algorithm to store the password. The system must use a sufficient number of hashing rounds to ensure the required level of entropy.\\n\\nPasswords need to be protected at all times, and encryption is the standard method for protecting passwords. If passwords are not encrypted, they can be plainly read (i.e., clear text) and easily compromised.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230233", + "group_title": "SRG-OS-000073-GPOS-00041", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230233r743919_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:105", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32877r743918_fix", + "fixtext_fixref": "F-32877r743918_fix", + "ident": { + "text": "CCI-000196", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230233r743919_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230232r627750_rule", + "version": "RHEL-08-010120", + "time": "2021-12-17T10:24:35", + "weight": "10.0", + "severity": "medium", + "cdf:result": "pass", + "cdf:ident": { + "text": "CCI-000196", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-32876r567443_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:104", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The RHEL 8 password-auth file must be configured to use a sufficient number of hashing rounds.", + "id": "V-230233", + "desc": "The system must use a strong hashing algorithm to store the password. The system must use a sufficient number of hashing rounds to ensure the required level of entropy.\n\nPasswords need to be protected at all times, and encryption is the standard method for protecting passwords. If passwords are not encrypted, they can be plainly read (i.e., clear text) and easily compromised.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:105", + "label": "check" + }, + { + "data": "Configure RHEL 8 to encrypt all stored passwords with a strong cryptographic hash.\n\nEdit/modify the following line in the \"/etc/pam.d/password-auth\" file and set \"rounds\" to a value no lower than \"5000\":\n\npassword sufficient pam_unix.so sha512 rounds=5000", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230233\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230233\",\n \"cdf:title\": \"SRG-OS-000073-GPOS-00041\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230233r743919_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230233r743919_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-010130\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The RHEL 8 password-auth file must be configured to use a sufficient number of hashing rounds.\",\n \"cdf:description\": \"<VulnDiscussion>The system must use a strong hashing algorithm to store the password. The system must use a sufficient number of hashing rounds to ensure the required level of entropy.\\n\\nPasswords need to be protected at all times, and encryption is the standard method for protecting passwords. If passwords are not encrypted, they can be plainly read (i.e., clear text) and easily compromised.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000196\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure RHEL 8 to encrypt all stored passwords with a strong cryptographic hash.\\n\\nEdit/modify the following line in the \\\"/etc/pam.d/password-auth\\\" file and set \\\"rounds\\\" to a value no lower than \\\"5000\\\":\\n\\npassword sufficient pam_unix.so sha512 rounds=5000\",\n \"fixref\": \"F-32877r743918_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-32877r743918_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:105\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:24:36" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000213" + ], + "nist": [ + "AC-3" + ], + "severity": "high", + "description": "{\"VulnDiscussion\":\"If the system does not require valid authentication before it boots into single-user or maintenance mode, anyone who invokes single-user or maintenance mode is granted privileged access to all files on the system. GRUB 2 is the default boot loader for RHEL 8 and is designed to require a password to boot into single-user mode or make modifications to the boot menu.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230234", + "group_title": "SRG-OS-000080-GPOS-00048", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230234r743922_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:106", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32878r743921_fix", + "fixtext_fixref": "F-32878r743921_fix", + "ident": { + "text": "CCI-000213", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230234r743922_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230233r743919_rule", + "version": "RHEL-08-010130", + "time": "2021-12-17T10:24:36", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000196", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-32877r743918_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:105", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 operating systems booted with United Extensible Firmware Interface (UEFI) must require authentication upon booting into single-user mode and maintenance.", + "id": "V-230234", + "desc": "If the system does not require valid authentication before it boots into single-user or maintenance mode, anyone who invokes single-user or maintenance mode is granted privileged access to all files on the system. GRUB 2 is the default boot loader for RHEL 8 and is designed to require a password to boot into single-user mode or make modifications to the boot menu.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:106", + "label": "check" + }, + { + "data": "Configure the system to require a grub bootloader password for the grub superusers account with the grub2-setpassword command, which creates/overwrites the /boot/efi/EFI/redhat/user.cfg file.\n\nGenerate an encrypted grub2 password for the grub superusers account with the following command:\n\n$ sudo grub2-setpassword\nEnter password:\nConfirm password:", + "label": "fix" + } + ], + "impact": 0.7, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230234\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230234\",\n \"cdf:title\": \"SRG-OS-000080-GPOS-00048\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230234r743922_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230234r743922_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"high\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-010140\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 operating systems booted with United Extensible Firmware Interface (UEFI) must require authentication upon booting into single-user mode and maintenance.\",\n \"cdf:description\": \"<VulnDiscussion>If the system does not require valid authentication before it boots into single-user or maintenance mode, anyone who invokes single-user or maintenance mode is granted privileged access to all files on the system. GRUB 2 is the default boot loader for RHEL 8 and is designed to require a password to boot into single-user mode or make modifications to the boot menu.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000213\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the system to require a grub bootloader password for the grub superusers account with the grub2-setpassword command, which creates/overwrites the /boot/efi/EFI/redhat/user.cfg file.\\n\\nGenerate an encrypted grub2 password for the grub superusers account with the following command:\\n\\n$ sudo grub2-setpassword\\nEnter password:\\nConfirm password:\",\n \"fixref\": \"F-32878r743921_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-32878r743921_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:106\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:24:36" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000213" + ], + "nist": [ + "AC-3" + ], + "severity": "high", + "description": "{\"VulnDiscussion\":\"If the system does not require valid authentication before it boots into single-user or maintenance mode, anyone who invokes single-user or maintenance mode is granted privileged access to all files on the system. GRUB 2 is the default boot loader for RHEL 8 and is designed to require a password to boot into single-user mode or make modifications to the boot menu.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230235", + "group_title": "SRG-OS-000080-GPOS-00048", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230235r743925_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:107", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32879r743924_fix", + "fixtext_fixref": "F-32879r743924_fix", + "ident": { + "text": "CCI-000213", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230235r743925_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230234r743922_rule", + "version": "RHEL-08-010140", + "time": "2021-12-17T10:24:36", + "weight": "10.0", + "severity": "high", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000213", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-32878r743921_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:106", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 operating systems booted with a BIOS must require authentication upon booting into single-user and maintenance modes.", + "id": "V-230235", + "desc": "If the system does not require valid authentication before it boots into single-user or maintenance mode, anyone who invokes single-user or maintenance mode is granted privileged access to all files on the system. GRUB 2 is the default boot loader for RHEL 8 and is designed to require a password to boot into single-user mode or make modifications to the boot menu.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:107", + "label": "check" + }, + { + "data": "Configure the system to require a grub bootloader password for the grub superusers account with the grub2-setpassword command, which creates/overwrites the /boot/grub2/user.cfg file.\n\nGenerate an encrypted grub2 password for the grub superusers account with the following command:\n\n$ sudo grub2-setpassword\nEnter password:\nConfirm password:", + "label": "fix" + } + ], + "impact": 0.7, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230235\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230235\",\n \"cdf:title\": \"SRG-OS-000080-GPOS-00048\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230235r743925_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230235r743925_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"high\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-010150\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 operating systems booted with a BIOS must require authentication upon booting into single-user and maintenance modes.\",\n \"cdf:description\": \"<VulnDiscussion>If the system does not require valid authentication before it boots into single-user or maintenance mode, anyone who invokes single-user or maintenance mode is granted privileged access to all files on the system. GRUB 2 is the default boot loader for RHEL 8 and is designed to require a password to boot into single-user mode or make modifications to the boot menu.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000213\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the system to require a grub bootloader password for the grub superusers account with the grub2-setpassword command, which creates/overwrites the /boot/grub2/user.cfg file.\\n\\nGenerate an encrypted grub2 password for the grub superusers account with the following command:\\n\\n$ sudo grub2-setpassword\\nEnter password:\\nConfirm password:\",\n \"fixref\": \"F-32879r743924_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-32879r743924_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:107\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:24:36" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000213" + ], + "nist": [ + "AC-3" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"If the system does not require valid root authentication before it boots into emergency or rescue mode, anyone who invokes emergency or rescue mode is granted privileged access to all files on the system.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230236", + "group_title": "SRG-OS-000080-GPOS-00048", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230236r743928_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:108", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32880r743927_fix", + "fixtext_fixref": "F-32880r743927_fix", + "ident": { + "text": "CCI-000213", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230236r743928_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230235r743925_rule", + "version": "RHEL-08-010150", + "time": "2021-12-17T10:24:36", + "weight": "10.0", + "severity": "high", + "cdf:result": "pass", + "cdf:ident": { + "text": "CCI-000213", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-32879r743924_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:107", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 operating systems must require authentication upon booting into rescue mode.", + "id": "V-230236", + "desc": "If the system does not require valid root authentication before it boots into emergency or rescue mode, anyone who invokes emergency or rescue mode is granted privileged access to all files on the system.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:108", + "label": "check" + }, + { + "data": "Configure the system to require authentication upon booting into rescue mode by adding the following line to the \"/usr/lib/systemd/system/rescue.service\" file.\n\nExecStart=-/usr/lib/systemd/systemd-sulogin-shell rescue", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230236\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230236\",\n \"cdf:title\": \"SRG-OS-000080-GPOS-00048\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230236r743928_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230236r743928_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-010151\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 operating systems must require authentication upon booting into rescue mode.\",\n \"cdf:description\": \"<VulnDiscussion>If the system does not require valid root authentication before it boots into emergency or rescue mode, anyone who invokes emergency or rescue mode is granted privileged access to all files on the system.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000213\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the system to require authentication upon booting into rescue mode by adding the following line to the \\\"/usr/lib/systemd/system/rescue.service\\\" file.\\n\\nExecStart=-/usr/lib/systemd/systemd-sulogin-shell rescue\",\n \"fixref\": \"F-32880r743927_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-32880r743927_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:108\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:24:36" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000803" + ], + "nist": [ + "IA-7" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Unapproved mechanisms that are used for authentication to the cryptographic module are not verified and therefore cannot be relied upon to provide confidentiality or integrity, and DoD data may be compromised.\\n\\nRHEL 8 systems utilizing encryption are required to use FIPS-compliant mechanisms for authenticating to cryptographic modules. \\n\\nFIPS 140-2 is the current standard for validating that mechanisms used to access cryptographic modules utilize authentication that meets DoD requirements. This allows for Security Levels 1, 2, 3, or 4 for use on a general-purpose computing system.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230237", + "group_title": "SRG-OS-000120-GPOS-00061", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230237r743931_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:109", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32881r743930_fix", + "fixtext_fixref": "F-32881r743930_fix", + "ident": { + "text": "CCI-000803", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230237r743931_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230236r743928_rule", + "version": "RHEL-08-010151", + "time": "2021-12-17T10:24:36", + "weight": "10.0", + "severity": "medium", + "cdf:result": "pass", + "cdf:ident": { + "text": "CCI-000213", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-32880r743927_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:108", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The RHEL 8 pam_unix.so module must be configured in the password-auth file to use a FIPS 140-2 approved cryptographic hashing algorithm for system authentication.", + "id": "V-230237", + "desc": "Unapproved mechanisms that are used for authentication to the cryptographic module are not verified and therefore cannot be relied upon to provide confidentiality or integrity, and DoD data may be compromised.\n\nRHEL 8 systems utilizing encryption are required to use FIPS-compliant mechanisms for authenticating to cryptographic modules. \n\nFIPS 140-2 is the current standard for validating that mechanisms used to access cryptographic modules utilize authentication that meets DoD requirements. This allows for Security Levels 1, 2, 3, or 4 for use on a general-purpose computing system.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:109", + "label": "check" + }, + { + "data": "Configure RHEL 8 to use a FIPS 140-2 approved cryptographic hashing algorithm for system authentication.\n\nEdit/modify the following line in the \"/etc/pam.d/password-auth\" file to include the sha512 option for pam_unix.so:\n\npassword sufficient pam_unix.so sha512 rounds=5000", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230237\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230237\",\n \"cdf:title\": \"SRG-OS-000120-GPOS-00061\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230237r743931_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230237r743931_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-010160\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The RHEL 8 pam_unix.so module must be configured in the password-auth file to use a FIPS 140-2 approved cryptographic hashing algorithm for system authentication.\",\n \"cdf:description\": \"<VulnDiscussion>Unapproved mechanisms that are used for authentication to the cryptographic module are not verified and therefore cannot be relied upon to provide confidentiality or integrity, and DoD data may be compromised.\\n\\nRHEL 8 systems utilizing encryption are required to use FIPS-compliant mechanisms for authenticating to cryptographic modules. \\n\\nFIPS 140-2 is the current standard for validating that mechanisms used to access cryptographic modules utilize authentication that meets DoD requirements. This allows for Security Levels 1, 2, 3, or 4 for use on a general-purpose computing system.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000803\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure RHEL 8 to use a FIPS 140-2 approved cryptographic hashing algorithm for system authentication.\\n\\nEdit/modify the following line in the \\\"/etc/pam.d/password-auth\\\" file to include the sha512 option for pam_unix.so:\\n\\npassword sufficient pam_unix.so sha512 rounds=5000\",\n \"fixref\": \"F-32881r743930_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-32881r743930_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:109\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:24:36" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000803" + ], + "nist": [ + "IA-7" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Unapproved mechanisms that are used for authentication to the cryptographic module are not verified and therefore cannot be relied upon to provide confidentiality or integrity, and DoD data may be compromised.\\n\\nRHEL 8 systems utilizing encryption are required to use FIPS-compliant mechanisms for authenticating to cryptographic modules.\\n\\nThe key derivation function (KDF) in Kerberos is not FIPS compatible. Ensuring the system does not have any keytab files present prevents system daemons from using Kerberos for authentication. A keytab is a file containing pairs of Kerberos principals and encrypted keys.\\n\\nFIPS 140-2 is the current standard for validating that mechanisms used to access cryptographic modules utilize authentication that meets DoD requirements. This allows for Security Levels 1, 2, 3, or 4 for use on a general-purpose computing system.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230238", + "group_title": "SRG-OS-000120-GPOS-00061", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230238r646862_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:110", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32882r567461_fix", + "fixtext_fixref": "F-32882r567461_fix", + "ident": { + "text": "CCI-000803", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230238r646862_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230237r743931_rule", + "version": "RHEL-08-010160", + "time": "2021-12-17T10:24:36", + "weight": "10.0", + "severity": "medium", + "cdf:result": "pass", + "cdf:ident": { + "text": "CCI-000803", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-32881r743930_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:109", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must prevent system daemons from using Kerberos for authentication.", + "id": "V-230238", + "desc": "Unapproved mechanisms that are used for authentication to the cryptographic module are not verified and therefore cannot be relied upon to provide confidentiality or integrity, and DoD data may be compromised.\n\nRHEL 8 systems utilizing encryption are required to use FIPS-compliant mechanisms for authenticating to cryptographic modules.\n\nThe key derivation function (KDF) in Kerberos is not FIPS compatible. Ensuring the system does not have any keytab files present prevents system daemons from using Kerberos for authentication. A keytab is a file containing pairs of Kerberos principals and encrypted keys.\n\nFIPS 140-2 is the current standard for validating that mechanisms used to access cryptographic modules utilize authentication that meets DoD requirements. This allows for Security Levels 1, 2, 3, or 4 for use on a general-purpose computing system.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:110", + "label": "check" + }, + { + "data": "Configure RHEL 8 to prevent system daemons from using Kerberos for authentication.\n\nRemove any files with the .keytab extension from the operating system.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230238\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230238\",\n \"cdf:title\": \"SRG-OS-000120-GPOS-00061\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230238r646862_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230238r646862_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-010161\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must prevent system daemons from using Kerberos for authentication.\",\n \"cdf:description\": \"<VulnDiscussion>Unapproved mechanisms that are used for authentication to the cryptographic module are not verified and therefore cannot be relied upon to provide confidentiality or integrity, and DoD data may be compromised.\\n\\nRHEL 8 systems utilizing encryption are required to use FIPS-compliant mechanisms for authenticating to cryptographic modules.\\n\\nThe key derivation function (KDF) in Kerberos is not FIPS compatible. Ensuring the system does not have any keytab files present prevents system daemons from using Kerberos for authentication. A keytab is a file containing pairs of Kerberos principals and encrypted keys.\\n\\nFIPS 140-2 is the current standard for validating that mechanisms used to access cryptographic modules utilize authentication that meets DoD requirements. This allows for Security Levels 1, 2, 3, or 4 for use on a general-purpose computing system.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000803\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure RHEL 8 to prevent system daemons from using Kerberos for authentication.\\n\\nRemove any files with the .keytab extension from the operating system.\",\n \"fixref\": \"F-32882r567461_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-32882r567461_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:110\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:24:36" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000803" + ], + "nist": [ + "IA-7" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Unapproved mechanisms that are used for authentication to the cryptographic module are not verified and therefore cannot be relied upon to provide confidentiality or integrity, and DoD data may be compromised.\\n\\nRHEL 8 systems utilizing encryption are required to use FIPS-compliant mechanisms for authenticating to cryptographic modules.\\n\\nCurrently, Kerberos does not utilize FIPS 140-2 cryptography.\\n\\nFIPS 140-2 is the current standard for validating that mechanisms used to access cryptographic modules utilize authentication that meets DoD requirements. This allows for Security Levels 1, 2, 3, or 4 for use on a general-purpose computing system.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230239", + "group_title": "SRG-OS-000120-GPOS-00061", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230239r646864_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:111", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32883r567464_fix", + "fixtext_fixref": "F-32883r567464_fix", + "ident": { + "text": "CCI-000803", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230239r646864_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230238r646862_rule", + "version": "RHEL-08-010161", + "time": "2021-12-17T10:24:36", + "weight": "10.0", + "severity": "medium", + "cdf:result": "pass", + "cdf:ident": { + "text": "CCI-000803", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-32882r567461_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:110", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The krb5-workstation package must not be installed on RHEL 8.", + "id": "V-230239", + "desc": "Unapproved mechanisms that are used for authentication to the cryptographic module are not verified and therefore cannot be relied upon to provide confidentiality or integrity, and DoD data may be compromised.\n\nRHEL 8 systems utilizing encryption are required to use FIPS-compliant mechanisms for authenticating to cryptographic modules.\n\nCurrently, Kerberos does not utilize FIPS 140-2 cryptography.\n\nFIPS 140-2 is the current standard for validating that mechanisms used to access cryptographic modules utilize authentication that meets DoD requirements. This allows for Security Levels 1, 2, 3, or 4 for use on a general-purpose computing system.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:111", + "label": "check" + }, + { + "data": "Document the krb5-workstation package with the ISSO as an operational requirement or remove it from the system with the following command:\n\n$ sudo yum remove krb5-workstation", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230239\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230239\",\n \"cdf:title\": \"SRG-OS-000120-GPOS-00061\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230239r646864_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230239r646864_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-010162\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The krb5-workstation package must not be installed on RHEL 8.\",\n \"cdf:description\": \"<VulnDiscussion>Unapproved mechanisms that are used for authentication to the cryptographic module are not verified and therefore cannot be relied upon to provide confidentiality or integrity, and DoD data may be compromised.\\n\\nRHEL 8 systems utilizing encryption are required to use FIPS-compliant mechanisms for authenticating to cryptographic modules.\\n\\nCurrently, Kerberos does not utilize FIPS 140-2 cryptography.\\n\\nFIPS 140-2 is the current standard for validating that mechanisms used to access cryptographic modules utilize authentication that meets DoD requirements. This allows for Security Levels 1, 2, 3, or 4 for use on a general-purpose computing system.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000803\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Document the krb5-workstation package with the ISSO as an operational requirement or remove it from the system with the following command:\\n\\n$ sudo yum remove krb5-workstation\",\n \"fixref\": \"F-32883r567464_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-32883r567464_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:111\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:24:40" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001084" + ], + "nist": [ + "SC-3" + ], + "severity": "low", + "description": "{\"VulnDiscussion\":\"Without verification of the security functions, security functions may not operate correctly and the failure may go unnoticed. Security function is defined as the hardware, software, and/or firmware of the information system responsible for enforcing the system security policy and supporting the isolation of code and data on which the protection is based. Security functionality includes, but is not limited to, establishing system accounts, configuring access authorizations (i.e., permissions, privileges), setting events to be audited, and setting intrusion detection parameters.\\n\\nPolicycoreutils contains the policy core utilities that are required for basic operation of an SELinux-enabled system. These utilities include load_policy to load SELinux policies, setfile to label filesystems, newrole to switch roles, and run_init to run /etc/init.d scripts in the proper context.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230241", + "group_title": "SRG-OS-000134-GPOS-00068", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230241r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:112", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32885r567470_fix", + "fixtext_fixref": "F-32885r567470_fix", + "ident": { + "text": "CCI-001084", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230241r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230239r646864_rule", + "version": "RHEL-08-010162", + "time": "2021-12-17T10:24:40", + "weight": "10.0", + "severity": "medium", + "cdf:result": "pass", + "cdf:ident": { + "text": "CCI-000803", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-32883r567464_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:111", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must have policycoreutils package installed.", + "id": "V-230241", + "desc": "Without verification of the security functions, security functions may not operate correctly and the failure may go unnoticed. Security function is defined as the hardware, software, and/or firmware of the information system responsible for enforcing the system security policy and supporting the isolation of code and data on which the protection is based. Security functionality includes, but is not limited to, establishing system accounts, configuring access authorizations (i.e., permissions, privileges), setting events to be audited, and setting intrusion detection parameters.\n\nPolicycoreutils contains the policy core utilities that are required for basic operation of an SELinux-enabled system. These utilities include load_policy to load SELinux policies, setfile to label filesystems, newrole to switch roles, and run_init to run /etc/init.d scripts in the proper context.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:112", + "label": "check" + }, + { + "data": "Configure the operating system to have the policycoreutils package installed with the following command:\n\n$ sudo yum install policycoreutils", + "label": "fix" + } + ], + "impact": 0.3, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230241\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230241\",\n \"cdf:title\": \"SRG-OS-000134-GPOS-00068\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230241r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230241r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"low\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-010171\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must have policycoreutils package installed.\",\n \"cdf:description\": \"<VulnDiscussion>Without verification of the security functions, security functions may not operate correctly and the failure may go unnoticed. Security function is defined as the hardware, software, and/or firmware of the information system responsible for enforcing the system security policy and supporting the isolation of code and data on which the protection is based. Security functionality includes, but is not limited to, establishing system accounts, configuring access authorizations (i.e., permissions, privileges), setting events to be audited, and setting intrusion detection parameters.\\n\\nPolicycoreutils contains the policy core utilities that are required for basic operation of an SELinux-enabled system. These utilities include load_policy to load SELinux policies, setfile to label filesystems, newrole to switch roles, and run_init to run /etc/init.d scripts in the proper context.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-001084\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to have the policycoreutils package installed with the following command:\\n\\n$ sudo yum install policycoreutils\",\n \"fixref\": \"F-32885r567470_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-32885r567470_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:112\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:24:40" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001133" + ], + "nist": [ + "SC-10" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Terminating an idle SSH session within a short time period reduces the window of opportunity for unauthorized personnel to take control of a management session enabled on the console or console port that has been left unattended. In addition, quickly terminating an idle SSH session will also free up resources committed by the managed network element.\\n\\nTerminating network connections associated with communications sessions includes, for example, de-allocating associated TCP/IP address/port pairs at the operating system level and de-allocating networking assignments at the application level if multiple application sessions are using a single operating system-level network connection. This does not mean that the operating system terminates all sessions or network access; it only ends the inactive session and releases the resources associated with that session.\\n\\nRHEL 8 utilizes /etc/ssh/sshd_config for configurations of OpenSSH. Within the sshd_config the product of the values of \\\"ClientAliveInterval\\\" and \\\"ClientAliveCountMax\\\" are used to establish the inactivity threshold. The \\\"ClientAliveInterval\\\" is a timeout interval in seconds after which if no data has been received from the client, sshd will send a message through the encrypted channel to request a response from the client. The \\\"ClientAliveCountMax\\\" is the number of client alive messages that may be sent without sshd receiving any messages back from the client. If this threshold is met, sshd will disconnect the client. For more information on these settings and others, refer to the sshd_config man pages.\\n\\nSatisfies: SRG-OS-000163-GPOS-00072, SRG-OS-000126-GPOS-00066, SRG-OS-000279-GPOS-00109\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230244", + "group_title": "SRG-OS-000163-GPOS-00072", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230244r743934_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:115", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32888r743933_fix", + "fixtext_fixref": "F-32888r743933_fix", + "ident": { + "text": "CCI-001133", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230244r743934_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230241r627750_rule", + "version": "RHEL-08-010171", + "time": "2021-12-17T10:24:40", + "weight": "10.0", + "severity": "low", + "cdf:result": "pass", + "cdf:ident": { + "text": "CCI-001084", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-32885r567470_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:112", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must be configured so that all network connections associated with SSH traffic are terminated at the end of the session or after 10 minutes of inactivity, except to fulfill documented and validated mission requirements.", + "id": "V-230244", + "desc": "Terminating an idle SSH session within a short time period reduces the window of opportunity for unauthorized personnel to take control of a management session enabled on the console or console port that has been left unattended. In addition, quickly terminating an idle SSH session will also free up resources committed by the managed network element.\n\nTerminating network connections associated with communications sessions includes, for example, de-allocating associated TCP/IP address/port pairs at the operating system level and de-allocating networking assignments at the application level if multiple application sessions are using a single operating system-level network connection. This does not mean that the operating system terminates all sessions or network access; it only ends the inactive session and releases the resources associated with that session.\n\nRHEL 8 utilizes /etc/ssh/sshd_config for configurations of OpenSSH. Within the sshd_config the product of the values of \"ClientAliveInterval\" and \"ClientAliveCountMax\" are used to establish the inactivity threshold. The \"ClientAliveInterval\" is a timeout interval in seconds after which if no data has been received from the client, sshd will send a message through the encrypted channel to request a response from the client. The \"ClientAliveCountMax\" is the number of client alive messages that may be sent without sshd receiving any messages back from the client. If this threshold is met, sshd will disconnect the client. For more information on these settings and others, refer to the sshd_config man pages.\n\nSatisfies: SRG-OS-000163-GPOS-00072, SRG-OS-000126-GPOS-00066, SRG-OS-000279-GPOS-00109", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:115", + "label": "check" + }, + { + "data": "Configure RHEL 8 to automatically terminate all network connections associated with SSH traffic at the end of a session or after 10 minutes of inactivity.\n\nModify or append the following lines in the \"/etc/ssh/sshd_config\" file:\n\nClientAliveCountMax 0\n\nIn order for the changes to take effect, the SSH daemon must be restarted.\n\n$ sudo systemctl restart sshd.service", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230244\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230244\",\n \"cdf:title\": \"SRG-OS-000163-GPOS-00072\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230244r743934_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230244r743934_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-010200\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must be configured so that all network connections associated with SSH traffic are terminated at the end of the session or after 10 minutes of inactivity, except to fulfill documented and validated mission requirements.\",\n \"cdf:description\": \"<VulnDiscussion>Terminating an idle SSH session within a short time period reduces the window of opportunity for unauthorized personnel to take control of a management session enabled on the console or console port that has been left unattended. In addition, quickly terminating an idle SSH session will also free up resources committed by the managed network element.\\n\\nTerminating network connections associated with communications sessions includes, for example, de-allocating associated TCP/IP address/port pairs at the operating system level and de-allocating networking assignments at the application level if multiple application sessions are using a single operating system-level network connection. This does not mean that the operating system terminates all sessions or network access; it only ends the inactive session and releases the resources associated with that session.\\n\\nRHEL 8 utilizes /etc/ssh/sshd_config for configurations of OpenSSH. Within the sshd_config the product of the values of \\\"ClientAliveInterval\\\" and \\\"ClientAliveCountMax\\\" are used to establish the inactivity threshold. The \\\"ClientAliveInterval\\\" is a timeout interval in seconds after which if no data has been received from the client, sshd will send a message through the encrypted channel to request a response from the client. The \\\"ClientAliveCountMax\\\" is the number of client alive messages that may be sent without sshd receiving any messages back from the client. If this threshold is met, sshd will disconnect the client. For more information on these settings and others, refer to the sshd_config man pages.\\n\\nSatisfies: SRG-OS-000163-GPOS-00072, SRG-OS-000126-GPOS-00066, SRG-OS-000279-GPOS-00109</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-001133\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure RHEL 8 to automatically terminate all network connections associated with SSH traffic at the end of a session or after 10 minutes of inactivity.\\n\\nModify or append the following lines in the \\\"/etc/ssh/sshd_config\\\" file:\\n\\nClientAliveCountMax 0\\n\\nIn order for the changes to take effect, the SSH daemon must be restarted.\\n\\n$ sudo systemctl restart sshd.service\",\n \"fixref\": \"F-32888r743933_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-32888r743933_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:115\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:24:41" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001314" + ], + "nist": [ + "SI-11 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\\n\\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230245", + "group_title": "SRG-OS-000206-GPOS-00084", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230245r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:116", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32889r567482_fix", + "fixtext_fixref": "F-32889r567482_fix", + "ident": { + "text": "CCI-001314", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230245r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230244r743934_rule", + "version": "RHEL-08-010200", + "time": "2021-12-17T10:24:41", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-001133", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-32888r743933_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:115", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The RHEL 8 /var/log/messages file must have mode 0640 or less permissive.", + "id": "V-230245", + "desc": "Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\n\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:116", + "label": "check" + }, + { + "data": "Change the permissions of the file \"/var/log/messages\" to \"0640\" by running the following command:\n\n$ sudo chmod 0640 /var/log/messages", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230245\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230245\",\n \"cdf:title\": \"SRG-OS-000206-GPOS-00084\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230245r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230245r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-010210\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The RHEL 8 /var/log/messages file must have mode 0640 or less permissive.\",\n \"cdf:description\": \"<VulnDiscussion>Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\\n\\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-001314\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Change the permissions of the file \\\"/var/log/messages\\\" to \\\"0640\\\" by running the following command:\\n\\n$ sudo chmod 0640 /var/log/messages\",\n \"fixref\": \"F-32889r567482_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-32889r567482_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:116\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:24:43" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001314" + ], + "nist": [ + "SI-11 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\\n\\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230246", + "group_title": "SRG-OS-000206-GPOS-00084", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230246r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:117", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32890r567485_fix", + "fixtext_fixref": "F-32890r567485_fix", + "ident": { + "text": "CCI-001314", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230246r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230245r627750_rule", + "version": "RHEL-08-010210", + "time": "2021-12-17T10:24:43", + "weight": "10.0", + "severity": "medium", + "cdf:result": "pass", + "cdf:ident": { + "text": "CCI-001314", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-32889r567482_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:116", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The RHEL 8 /var/log/messages file must be owned by root.", + "id": "V-230246", + "desc": "Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\n\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:117", + "label": "check" + }, + { + "data": "Change the owner of the file /var/log/messages to root by running the following command:\n\n$ sudo chown root /var/log/messages", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230246\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230246\",\n \"cdf:title\": \"SRG-OS-000206-GPOS-00084\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230246r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230246r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-010220\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The RHEL 8 /var/log/messages file must be owned by root.\",\n \"cdf:description\": \"<VulnDiscussion>Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\\n\\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-001314\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Change the owner of the file /var/log/messages to root by running the following command:\\n\\n$ sudo chown root /var/log/messages\",\n \"fixref\": \"F-32890r567485_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-32890r567485_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:117\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:24:43" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001314" + ], + "nist": [ + "SI-11 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\\n\\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230247", + "group_title": "SRG-OS-000206-GPOS-00084", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230247r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:118", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32891r567488_fix", + "fixtext_fixref": "F-32891r567488_fix", + "ident": { + "text": "CCI-001314", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230247r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230246r627750_rule", + "version": "RHEL-08-010220", + "time": "2021-12-17T10:24:43", + "weight": "10.0", + "severity": "medium", + "cdf:result": "pass", + "cdf:ident": { + "text": "CCI-001314", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-32890r567485_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:117", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The RHEL 8 /var/log/messages file must be group-owned by root.", + "id": "V-230247", + "desc": "Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\n\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:118", + "label": "check" + }, + { + "data": "Change the group of the file \"/var/log/messages\" to \"root\" by running the following command:\n\n$ sudo chgrp root /var/log/messages", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230247\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230247\",\n \"cdf:title\": \"SRG-OS-000206-GPOS-00084\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230247r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230247r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-010230\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The RHEL 8 /var/log/messages file must be group-owned by root.\",\n \"cdf:description\": \"<VulnDiscussion>Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\\n\\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-001314\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Change the group of the file \\\"/var/log/messages\\\" to \\\"root\\\" by running the following command:\\n\\n$ sudo chgrp root /var/log/messages\",\n \"fixref\": \"F-32891r567488_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-32891r567488_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:118\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:24:43" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001314" + ], + "nist": [ + "SI-11 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\\n\\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230248", + "group_title": "SRG-OS-000206-GPOS-00084", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230248r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:119", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32892r567491_fix", + "fixtext_fixref": "F-32892r567491_fix", + "ident": { + "text": "CCI-001314", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230248r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230247r627750_rule", + "version": "RHEL-08-010230", + "time": "2021-12-17T10:24:43", + "weight": "10.0", + "severity": "medium", + "cdf:result": "pass", + "cdf:ident": { + "text": "CCI-001314", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-32891r567488_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:118", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The RHEL 8 /var/log directory must have mode 0755 or less permissive.", + "id": "V-230248", + "desc": "Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\n\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:119", + "label": "check" + }, + { + "data": "Change the permissions of the directory \"/var/log\" to \"0755\" by running the following command:\n\n$ sudo chmod 0755 /var/log", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230248\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230248\",\n \"cdf:title\": \"SRG-OS-000206-GPOS-00084\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230248r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230248r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-010240\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The RHEL 8 /var/log directory must have mode 0755 or less permissive.\",\n \"cdf:description\": \"<VulnDiscussion>Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\\n\\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-001314\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Change the permissions of the directory \\\"/var/log\\\" to \\\"0755\\\" by running the following command:\\n\\n$ sudo chmod 0755 /var/log\",\n \"fixref\": \"F-32892r567491_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-32892r567491_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:119\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:24:43" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001314" + ], + "nist": [ + "SI-11 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\\n\\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230249", + "group_title": "SRG-OS-000206-GPOS-00084", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230249r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:120", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32893r567494_fix", + "fixtext_fixref": "F-32893r567494_fix", + "ident": { + "text": "CCI-001314", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230249r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230248r627750_rule", + "version": "RHEL-08-010240", + "time": "2021-12-17T10:24:43", + "weight": "10.0", + "severity": "medium", + "cdf:result": "pass", + "cdf:ident": { + "text": "CCI-001314", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-32892r567491_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:119", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The RHEL 8 /var/log directory must be owned by root.", + "id": "V-230249", + "desc": "Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\n\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:120", + "label": "check" + }, + { + "data": "Change the owner of the directory /var/log to root by running the following command:\n\n$ sudo chown root /var/log", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230249\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230249\",\n \"cdf:title\": \"SRG-OS-000206-GPOS-00084\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230249r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230249r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-010250\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The RHEL 8 /var/log directory must be owned by root.\",\n \"cdf:description\": \"<VulnDiscussion>Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\\n\\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-001314\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Change the owner of the directory /var/log to root by running the following command:\\n\\n$ sudo chown root /var/log\",\n \"fixref\": \"F-32893r567494_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-32893r567494_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:120\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:24:43" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001314" + ], + "nist": [ + "SI-11 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\\n\\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230250", + "group_title": "SRG-OS-000206-GPOS-00084", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230250r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:121", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32894r567497_fix", + "fixtext_fixref": "F-32894r567497_fix", + "ident": { + "text": "CCI-001314", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230250r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230249r627750_rule", + "version": "RHEL-08-010250", + "time": "2021-12-17T10:24:43", + "weight": "10.0", + "severity": "medium", + "cdf:result": "pass", + "cdf:ident": { + "text": "CCI-001314", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-32893r567494_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:120", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The RHEL 8 /var/log directory must be group-owned by root.", + "id": "V-230250", + "desc": "Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\n\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:121", + "label": "check" + }, + { + "data": "Change the group of the directory \"/var/log\" to \"root\" by running the following command:\n\n$ sudo chgrp root /var/log", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230250\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230250\",\n \"cdf:title\": \"SRG-OS-000206-GPOS-00084\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230250r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230250r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-010260\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The RHEL 8 /var/log directory must be group-owned by root.\",\n \"cdf:description\": \"<VulnDiscussion>Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\\n\\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-001314\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Change the group of the directory \\\"/var/log\\\" to \\\"root\\\" by running the following command:\\n\\n$ sudo chgrp root /var/log\",\n \"fixref\": \"F-32894r567497_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-32894r567497_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:121\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:24:43" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "low", + "description": "{\"VulnDiscussion\":\"The most important characteristic of a random number generator is its randomness, namely its ability to deliver random numbers that are impossible to predict. Entropy in computer security is associated with the unpredictability of a source of randomness. The random source with high entropy tends to achieve a uniform distribution of random values. Random number generators are one of the most important building blocks of cryptosystems.\\n\\nThe SSH implementation in RHEL8 uses the OPENSSL library, which does not use high-entropy sources by default. By using the SSH_USE_STRONG_RNG environment variable the OPENSSL random generator is reseeded from /dev/random. This setting is not recommended on computers without the hardware random generator because insufficient entropy causes the connection to be blocked until enough entropy is available.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230253", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230253r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:122", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32897r567506_fix", + "fixtext_fixref": "F-32897r567506_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230253r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230250r627750_rule", + "version": "RHEL-08-010260", + "time": "2021-12-17T10:24:43", + "weight": "10.0", + "severity": "medium", + "cdf:result": "pass", + "cdf:ident": { + "text": "CCI-001314", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-32894r567497_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:121", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must ensure the SSH server uses strong entropy.", + "id": "V-230253", + "desc": "The most important characteristic of a random number generator is its randomness, namely its ability to deliver random numbers that are impossible to predict. Entropy in computer security is associated with the unpredictability of a source of randomness. The random source with high entropy tends to achieve a uniform distribution of random values. Random number generators are one of the most important building blocks of cryptosystems.\n\nThe SSH implementation in RHEL8 uses the OPENSSL library, which does not use high-entropy sources by default. By using the SSH_USE_STRONG_RNG environment variable the OPENSSL random generator is reseeded from /dev/random. This setting is not recommended on computers without the hardware random generator because insufficient entropy causes the connection to be blocked until enough entropy is available.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:122", + "label": "check" + }, + { + "data": "Configure the operating system SSH server to use strong entropy.\n\nAdd or modify the following line in the \"/etc/sysconfig/sshd\" file.\n\nSSH_USE_STRONG_RNG=32\n\nThe SSH service must be restarted for changes to take effect.", + "label": "fix" + } + ], + "impact": 0.3, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230253\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230253\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230253r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230253r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"low\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-010292\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must ensure the SSH server uses strong entropy.\",\n \"cdf:description\": \"<VulnDiscussion>The most important characteristic of a random number generator is its randomness, namely its ability to deliver random numbers that are impossible to predict. Entropy in computer security is associated with the unpredictability of a source of randomness. The random source with high entropy tends to achieve a uniform distribution of random values. Random number generators are one of the most important building blocks of cryptosystems.\\n\\nThe SSH implementation in RHEL8 uses the OPENSSL library, which does not use high-entropy sources by default. By using the SSH_USE_STRONG_RNG environment variable the OPENSSL random generator is reseeded from /dev/random. This setting is not recommended on computers without the hardware random generator because insufficient entropy causes the connection to be blocked until enough entropy is available.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system SSH server to use strong entropy.\\n\\nAdd or modify the following line in the \\\"/etc/sysconfig/sshd\\\" file.\\n\\nSSH_USE_STRONG_RNG=32\\n\\nThe SSH service must be restarted for changes to take effect.\",\n \"fixref\": \"F-32897r567506_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-32897r567506_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:122\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:24:43" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001453" + ], + "nist": [ + "AC-17 (2)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without cryptographic integrity protections, information can be altered by unauthorized users without detection.\\n\\nRemote access (e.g., RDP) is access to DoD nonpublic information systems by an authorized user (or an information system) communicating through an external, non-organization-controlled network. Remote access methods include, for example, dial-up, broadband, and wireless.\\n\\nCryptographic mechanisms used for protecting the integrity of information include, for example, signed hash functions using asymmetric cryptography enabling distribution of the public key to verify the hash information while maintaining the confidentiality of the secret key used to generate the hash.\\n\\nRHEL 8 incorporates system-wide crypto policies by default. The employed algorithms can be viewed in the /etc/crypto-policies/back-ends/openssl.config file.\\n\\nSatisfies: SRG-OS-000250-GPOS-00093, SRG-OS-000393-GPOS-00173, SRG-OS-000394-GPOS-00174, SRG-OS-000125-GPOS-00065\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230255", + "group_title": "SRG-OS-000250-GPOS-00093", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230255r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:123", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32899r567512_fix", + "fixtext_fixref": "F-32899r567512_fix", + "ident": { + "text": "CCI-001453", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230255r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230253r627750_rule", + "version": "RHEL-08-010292", + "time": "2021-12-17T10:24:43", + "weight": "10.0", + "severity": "low", + "cdf:result": "pass", + "cdf:ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-32897r567506_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:122", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The RHEL 8 operating system must implement DoD-approved TLS encryption in the OpenSSL package.", + "id": "V-230255", + "desc": "Without cryptographic integrity protections, information can be altered by unauthorized users without detection.\n\nRemote access (e.g., RDP) is access to DoD nonpublic information systems by an authorized user (or an information system) communicating through an external, non-organization-controlled network. Remote access methods include, for example, dial-up, broadband, and wireless.\n\nCryptographic mechanisms used for protecting the integrity of information include, for example, signed hash functions using asymmetric cryptography enabling distribution of the public key to verify the hash information while maintaining the confidentiality of the secret key used to generate the hash.\n\nRHEL 8 incorporates system-wide crypto policies by default. The employed algorithms can be viewed in the /etc/crypto-policies/back-ends/openssl.config file.\n\nSatisfies: SRG-OS-000250-GPOS-00093, SRG-OS-000393-GPOS-00173, SRG-OS-000394-GPOS-00174, SRG-OS-000125-GPOS-00065", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:123", + "label": "check" + }, + { + "data": "Configure the RHEL 8 OpenSSL library to use only DoD-approved TLS encryption by editing the following line in the \"/etc/crypto-policies/back-ends/opensslcnf.config\" file:\n\nMinProtocol = TLSv1.2\n\nA reboot is required for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230255\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230255\",\n \"cdf:title\": \"SRG-OS-000250-GPOS-00093\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230255r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230255r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-010294\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The RHEL 8 operating system must implement DoD-approved TLS encryption in the OpenSSL package.\",\n \"cdf:description\": \"<VulnDiscussion>Without cryptographic integrity protections, information can be altered by unauthorized users without detection.\\n\\nRemote access (e.g., RDP) is access to DoD nonpublic information systems by an authorized user (or an information system) communicating through an external, non-organization-controlled network. Remote access methods include, for example, dial-up, broadband, and wireless.\\n\\nCryptographic mechanisms used for protecting the integrity of information include, for example, signed hash functions using asymmetric cryptography enabling distribution of the public key to verify the hash information while maintaining the confidentiality of the secret key used to generate the hash.\\n\\nRHEL 8 incorporates system-wide crypto policies by default. The employed algorithms can be viewed in the /etc/crypto-policies/back-ends/openssl.config file.\\n\\nSatisfies: SRG-OS-000250-GPOS-00093, SRG-OS-000393-GPOS-00173, SRG-OS-000394-GPOS-00174, SRG-OS-000125-GPOS-00065</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-001453\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the RHEL 8 OpenSSL library to use only DoD-approved TLS encryption by editing the following line in the \\\"/etc/crypto-policies/back-ends/opensslcnf.config\\\" file:\\n\\nMinProtocol = TLSv1.2\\n\\nA reboot is required for the changes to take effect.\",\n \"fixref\": \"F-32899r567512_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-32899r567512_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:123\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:24:43" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001499" + ], + "nist": [ + "CM-5 (6)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"If RHEL 8 were to allow any user to make changes to software libraries, then those changes might be implemented without undergoing the appropriate testing and approvals that are part of a robust change management process.\\n\\nThis requirement applies to RHEL 8 with software libraries that are accessible and configurable, as in the case of interpreted languages. Software libraries also include privileged programs that execute with escalated privileges. Only qualified and authorized individuals will be allowed to obtain access to information system components for purposes of initiating changes, including upgrades and modifications.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230257", + "group_title": "SRG-OS-000259-GPOS-00100", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230257r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:124", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32901r567518_fix", + "fixtext_fixref": "F-32901r567518_fix", + "ident": { + "text": "CCI-001499", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230257r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230255r627750_rule", + "version": "RHEL-08-010294", + "time": "2021-12-17T10:24:43", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-001453", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-32899r567512_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:123", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 system commands must have mode 0755 or less permissive.", + "id": "V-230257", + "desc": "If RHEL 8 were to allow any user to make changes to software libraries, then those changes might be implemented without undergoing the appropriate testing and approvals that are part of a robust change management process.\n\nThis requirement applies to RHEL 8 with software libraries that are accessible and configurable, as in the case of interpreted languages. Software libraries also include privileged programs that execute with escalated privileges. Only qualified and authorized individuals will be allowed to obtain access to information system components for purposes of initiating changes, including upgrades and modifications.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:124", + "label": "check" + }, + { + "data": "Configure the system commands to be protected from unauthorized access.\n\nRun the following command, replacing \"[FILE]\" with any system command with a mode more permissive than \"0755\".\n\n$ sudo chmod 0755 [FILE]", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230257\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230257\",\n \"cdf:title\": \"SRG-OS-000259-GPOS-00100\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230257r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230257r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-010300\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 system commands must have mode 0755 or less permissive.\",\n \"cdf:description\": \"<VulnDiscussion>If RHEL 8 were to allow any user to make changes to software libraries, then those changes might be implemented without undergoing the appropriate testing and approvals that are part of a robust change management process.\\n\\nThis requirement applies to RHEL 8 with software libraries that are accessible and configurable, as in the case of interpreted languages. Software libraries also include privileged programs that execute with escalated privileges. Only qualified and authorized individuals will be allowed to obtain access to information system components for purposes of initiating changes, including upgrades and modifications.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-001499\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the system commands to be protected from unauthorized access.\\n\\nRun the following command, replacing \\\"[FILE]\\\" with any system command with a mode more permissive than \\\"0755\\\".\\n\\n$ sudo chmod 0755 [FILE]\",\n \"fixref\": \"F-32901r567518_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-32901r567518_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:124\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:24:43" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001499" + ], + "nist": [ + "CM-5 (6)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"If RHEL 8 were to allow any user to make changes to software libraries, then those changes might be implemented without undergoing the appropriate testing and approvals that are part of a robust change management process.\\n\\nThis requirement applies to RHEL 8 with software libraries that are accessible and configurable, as in the case of interpreted languages. Software libraries also include privileged programs that execute with escalated privileges. Only qualified and authorized individuals will be allowed to obtain access to information system components for purposes of initiating changes, including upgrades and modifications.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230258", + "group_title": "SRG-OS-000259-GPOS-00100", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230258r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:125", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32902r567521_fix", + "fixtext_fixref": "F-32902r567521_fix", + "ident": { + "text": "CCI-001499", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230258r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230257r627750_rule", + "version": "RHEL-08-010300", + "time": "2021-12-17T10:24:43", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-001499", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-32901r567518_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:124", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 system commands must be owned by root.", + "id": "V-230258", + "desc": "If RHEL 8 were to allow any user to make changes to software libraries, then those changes might be implemented without undergoing the appropriate testing and approvals that are part of a robust change management process.\n\nThis requirement applies to RHEL 8 with software libraries that are accessible and configurable, as in the case of interpreted languages. Software libraries also include privileged programs that execute with escalated privileges. Only qualified and authorized individuals will be allowed to obtain access to information system components for purposes of initiating changes, including upgrades and modifications.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:125", + "label": "check" + }, + { + "data": "Configure the system commands to be protected from unauthorized access.\n\nRun the following command, replacing \"[FILE]\" with any system command file not owned by \"root\".\n\n$ sudo chown root [FILE]", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230258\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230258\",\n \"cdf:title\": \"SRG-OS-000259-GPOS-00100\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230258r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230258r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-010310\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 system commands must be owned by root.\",\n \"cdf:description\": \"<VulnDiscussion>If RHEL 8 were to allow any user to make changes to software libraries, then those changes might be implemented without undergoing the appropriate testing and approvals that are part of a robust change management process.\\n\\nThis requirement applies to RHEL 8 with software libraries that are accessible and configurable, as in the case of interpreted languages. Software libraries also include privileged programs that execute with escalated privileges. Only qualified and authorized individuals will be allowed to obtain access to information system components for purposes of initiating changes, including upgrades and modifications.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-001499\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the system commands to be protected from unauthorized access.\\n\\nRun the following command, replacing \\\"[FILE]\\\" with any system command file not owned by \\\"root\\\".\\n\\n$ sudo chown root [FILE]\",\n \"fixref\": \"F-32902r567521_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-32902r567521_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:125\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:26:42" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001499" + ], + "nist": [ + "CM-5 (6)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"If RHEL 8 were to allow any user to make changes to software libraries, then those changes might be implemented without undergoing the appropriate testing and approvals that are part of a robust change management process.\\n\\nThis requirement applies to RHEL 8 with software libraries that are accessible and configurable, as in the case of interpreted languages. Software libraries also include privileged programs that execute with escalated privileges. Only qualified and authorized individuals will be allowed to obtain access to information system components for purposes of initiating changes, including upgrades and modifications.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230259", + "group_title": "SRG-OS-000259-GPOS-00100", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230259r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:126", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32903r567524_fix", + "fixtext_fixref": "F-32903r567524_fix", + "ident": { + "text": "CCI-001499", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230259r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230258r627750_rule", + "version": "RHEL-08-010310", + "time": "2021-12-17T10:26:42", + "weight": "10.0", + "severity": "medium", + "cdf:result": "pass", + "cdf:ident": { + "text": "CCI-001499", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-32902r567521_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:125", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 system commands must be group-owned by root or a system account.", + "id": "V-230259", + "desc": "If RHEL 8 were to allow any user to make changes to software libraries, then those changes might be implemented without undergoing the appropriate testing and approvals that are part of a robust change management process.\n\nThis requirement applies to RHEL 8 with software libraries that are accessible and configurable, as in the case of interpreted languages. Software libraries also include privileged programs that execute with escalated privileges. Only qualified and authorized individuals will be allowed to obtain access to information system components for purposes of initiating changes, including upgrades and modifications.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:126", + "label": "check" + }, + { + "data": "Configure the system commands to be protected from unauthorized access.\n\nRun the following command, replacing \"[FILE]\" with any system command file not group-owned by \"root\" or a required system account.\n\n$ sudo chgrp root [FILE]", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230259\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230259\",\n \"cdf:title\": \"SRG-OS-000259-GPOS-00100\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230259r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230259r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-010320\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 system commands must be group-owned by root or a system account.\",\n \"cdf:description\": \"<VulnDiscussion>If RHEL 8 were to allow any user to make changes to software libraries, then those changes might be implemented without undergoing the appropriate testing and approvals that are part of a robust change management process.\\n\\nThis requirement applies to RHEL 8 with software libraries that are accessible and configurable, as in the case of interpreted languages. Software libraries also include privileged programs that execute with escalated privileges. Only qualified and authorized individuals will be allowed to obtain access to information system components for purposes of initiating changes, including upgrades and modifications.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-001499\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the system commands to be protected from unauthorized access.\\n\\nRun the following command, replacing \\\"[FILE]\\\" with any system command file not group-owned by \\\"root\\\" or a required system account.\\n\\n$ sudo chgrp root [FILE]\",\n \"fixref\": \"F-32903r567524_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-32903r567524_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:126\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:27:10" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001749" + ], + "nist": [ + "CM-5 (3)" + ], + "severity": "high", + "description": "{\"VulnDiscussion\":\"Changes to any software components can have significant effects on the overall security of the operating system. This requirement ensures the software has not been tampered with and that it has been provided by a trusted vendor.\\n\\nAccordingly, patches, service packs, device drivers, or operating system components must be signed with a certificate recognized and approved by the organization.\\n\\nVerifying the authenticity of the software prior to installation validates the integrity of the patch or upgrade received from a vendor. This verifies the software has not been tampered with and that it has been provided by a trusted vendor. Self-signed certificates are disallowed by this requirement. The operating system should not have to verify the software again. This requirement does not mandate DoD certificates for this purpose; however, the certificate used to verify the software must be from an approved CA.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230264", + "group_title": "SRG-OS-000366-GPOS-00153", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230264r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:130", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32908r567539_fix", + "fixtext_fixref": "F-32908r567539_fix", + "ident": { + "text": "CCI-001749", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230264r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230259r627750_rule", + "version": "RHEL-08-010320", + "time": "2021-12-17T10:27:10", + "weight": "10.0", + "severity": "medium", + "cdf:result": "pass", + "cdf:ident": { + "text": "CCI-001499", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-32903r567524_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:126", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must prevent the installation of software, patches, service packs, device drivers, or operating system components from a repository without verification they have been digitally signed using a certificate that is issued by a Certificate Authority (CA) that is recognized and approved by the organization.", + "id": "V-230264", + "desc": "Changes to any software components can have significant effects on the overall security of the operating system. This requirement ensures the software has not been tampered with and that it has been provided by a trusted vendor.\n\nAccordingly, patches, service packs, device drivers, or operating system components must be signed with a certificate recognized and approved by the organization.\n\nVerifying the authenticity of the software prior to installation validates the integrity of the patch or upgrade received from a vendor. This verifies the software has not been tampered with and that it has been provided by a trusted vendor. Self-signed certificates are disallowed by this requirement. The operating system should not have to verify the software again. This requirement does not mandate DoD certificates for this purpose; however, the certificate used to verify the software must be from an approved CA.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:130", + "label": "check" + }, + { + "data": "Configure the operating system to verify the signature of packages from a repository prior to install by setting the following option in the \"/etc/yum.repos.d/[your_repo_name].repo\" file:\n\ngpgcheck=1", + "label": "fix" + } + ], + "impact": 0.7, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230264\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230264\",\n \"cdf:title\": \"SRG-OS-000366-GPOS-00153\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230264r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230264r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"high\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-010370\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must prevent the installation of software, patches, service packs, device drivers, or operating system components from a repository without verification they have been digitally signed using a certificate that is issued by a Certificate Authority (CA) that is recognized and approved by the organization.\",\n \"cdf:description\": \"<VulnDiscussion>Changes to any software components can have significant effects on the overall security of the operating system. This requirement ensures the software has not been tampered with and that it has been provided by a trusted vendor.\\n\\nAccordingly, patches, service packs, device drivers, or operating system components must be signed with a certificate recognized and approved by the organization.\\n\\nVerifying the authenticity of the software prior to installation validates the integrity of the patch or upgrade received from a vendor. This verifies the software has not been tampered with and that it has been provided by a trusted vendor. Self-signed certificates are disallowed by this requirement. The operating system should not have to verify the software again. This requirement does not mandate DoD certificates for this purpose; however, the certificate used to verify the software must be from an approved CA.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-001749\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to verify the signature of packages from a repository prior to install by setting the following option in the \\\"/etc/yum.repos.d/[your_repo_name].repo\\\" file:\\n\\ngpgcheck=1\",\n \"fixref\": \"F-32908r567539_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-32908r567539_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:130\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:27:37" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001749" + ], + "nist": [ + "CM-5 (3)" + ], + "severity": "high", + "description": "{\"VulnDiscussion\":\"Changes to any software components can have significant effects on the overall security of the operating system. This requirement ensures the software has not been tampered with and that it has been provided by a trusted vendor.\\n\\nAccordingly, patches, service packs, device drivers, or operating system components must be signed with a certificate recognized and approved by the organization.\\n\\nVerifying the authenticity of the software prior to installation validates the integrity of the patch or upgrade received from a vendor. This verifies the software has not been tampered with and that it has been provided by a trusted vendor. Self-signed certificates are disallowed by this requirement. The operating system should not have to verify the software again. This requirement does not mandate DoD certificates for this purpose; however, the certificate used to verify the software must be from an approved CA.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230265", + "group_title": "SRG-OS-000366-GPOS-00153", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230265r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:131", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32909r567542_fix", + "fixtext_fixref": "F-32909r567542_fix", + "ident": { + "text": "CCI-001749", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230265r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230264r627750_rule", + "version": "RHEL-08-010370", + "time": "2021-12-17T10:27:37", + "weight": "10.0", + "severity": "high", + "cdf:result": "pass", + "cdf:ident": { + "text": "CCI-001749", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-32908r567539_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:130", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must prevent the installation of software, patches, service packs, device drivers, or operating system components of local packages without verification they have been digitally signed using a certificate that is issued by a Certificate Authority (CA) that is recognized and approved by the organization.", + "id": "V-230265", + "desc": "Changes to any software components can have significant effects on the overall security of the operating system. This requirement ensures the software has not been tampered with and that it has been provided by a trusted vendor.\n\nAccordingly, patches, service packs, device drivers, or operating system components must be signed with a certificate recognized and approved by the organization.\n\nVerifying the authenticity of the software prior to installation validates the integrity of the patch or upgrade received from a vendor. This verifies the software has not been tampered with and that it has been provided by a trusted vendor. Self-signed certificates are disallowed by this requirement. The operating system should not have to verify the software again. This requirement does not mandate DoD certificates for this purpose; however, the certificate used to verify the software must be from an approved CA.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:131", + "label": "check" + }, + { + "data": "Configure the operating system to remove all software components after updated versions have been installed.\n\nSet the \"localpkg_gpgcheck\" option to \"True\" in the \"/etc/dnf/dnf.conf\" file:\n\nlocalpkg_gpgcheck=True", + "label": "fix" + } + ], + "impact": 0.7, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230265\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230265\",\n \"cdf:title\": \"SRG-OS-000366-GPOS-00153\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230265r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230265r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"high\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-010371\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must prevent the installation of software, patches, service packs, device drivers, or operating system components of local packages without verification they have been digitally signed using a certificate that is issued by a Certificate Authority (CA) that is recognized and approved by the organization.\",\n \"cdf:description\": \"<VulnDiscussion>Changes to any software components can have significant effects on the overall security of the operating system. This requirement ensures the software has not been tampered with and that it has been provided by a trusted vendor.\\n\\nAccordingly, patches, service packs, device drivers, or operating system components must be signed with a certificate recognized and approved by the organization.\\n\\nVerifying the authenticity of the software prior to installation validates the integrity of the patch or upgrade received from a vendor. This verifies the software has not been tampered with and that it has been provided by a trusted vendor. Self-signed certificates are disallowed by this requirement. The operating system should not have to verify the software again. This requirement does not mandate DoD certificates for this purpose; however, the certificate used to verify the software must be from an approved CA.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-001749\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to remove all software components after updated versions have been installed.\\n\\nSet the \\\"localpkg_gpgcheck\\\" option to \\\"True\\\" in the \\\"/etc/dnf/dnf.conf\\\" file:\\n\\nlocalpkg_gpgcheck=True\",\n \"fixref\": \"F-32909r567542_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-32909r567542_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:131\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:27:44" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001749" + ], + "nist": [ + "CM-5 (3)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Changes to any software components can have significant effects on the overall security of the operating system. This requirement ensures the software has not been tampered with and that it has been provided by a trusted vendor.\\n\\nDisabling kexec_load prevents an unsigned kernel image (that could be a windows kernel or modified vulnerable kernel) from being loaded. Kexec can be used subvert the entire secureboot process and should be avoided at all costs especially since it can load unsigned kernel images.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230266", + "group_title": "SRG-OS-000366-GPOS-00153", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230266r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:132", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32910r567545_fix", + "fixtext_fixref": "F-32910r567545_fix", + "ident": { + "text": "CCI-001749", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230266r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230265r627750_rule", + "version": "RHEL-08-010371", + "time": "2021-12-17T10:27:44", + "weight": "10.0", + "severity": "high", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-001749", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-32909r567542_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:131", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must prevent the loading of a new kernel for later execution.", + "id": "V-230266", + "desc": "Changes to any software components can have significant effects on the overall security of the operating system. This requirement ensures the software has not been tampered with and that it has been provided by a trusted vendor.\n\nDisabling kexec_load prevents an unsigned kernel image (that could be a windows kernel or modified vulnerable kernel) from being loaded. Kexec can be used subvert the entire secureboot process and should be avoided at all costs especially since it can load unsigned kernel images.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:132", + "label": "check" + }, + { + "data": "Configure the operating system to disable kernel image loading.\n\nAdd or edit the following line in a system configuration file in the \"/etc/sysctl.d/\" directory:\n\nkernel.kexec_load_disabled = 1\n\nLoad settings from all system configuration files with the following command:\n\n$ sudo sysctl --system", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230266\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230266\",\n \"cdf:title\": \"SRG-OS-000366-GPOS-00153\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230266r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230266r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-010372\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must prevent the loading of a new kernel for later execution.\",\n \"cdf:description\": \"<VulnDiscussion>Changes to any software components can have significant effects on the overall security of the operating system. This requirement ensures the software has not been tampered with and that it has been provided by a trusted vendor.\\n\\nDisabling kexec_load prevents an unsigned kernel image (that could be a windows kernel or modified vulnerable kernel) from being loaded. Kexec can be used subvert the entire secureboot process and should be avoided at all costs especially since it can load unsigned kernel images.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-001749\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to disable kernel image loading.\\n\\nAdd or edit the following line in a system configuration file in the \\\"/etc/sysctl.d/\\\" directory:\\n\\nkernel.kexec_load_disabled = 1\\n\\nLoad settings from all system configuration files with the following command:\\n\\n$ sudo sysctl --system\",\n \"fixref\": \"F-32910r567545_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-32910r567545_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:132\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:27:44" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-002165" + ], + "nist": [ + "AC-3 (4)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Discretionary Access Control (DAC) is based on the notion that individual users are \\\"owners\\\" of objects and therefore have discretion over who should be authorized to access the object and in which mode (e.g., read or write). Ownership is usually acquired as a consequence of creating the object or via specified ownership assignment. DAC allows the owner to determine who will have access to objects they control. An example of DAC includes user-controlled file permissions.\\n\\nWhen discretionary access control policies are implemented, subjects are not constrained with regard to what actions they can take with information for which they have already been granted access. Thus, subjects that have been granted access to information are not prevented from passing (i.e., the subjects have the discretion to pass) the information to other subjects or objects. A subject that is constrained in its operation by Mandatory Access Control policies is still able to operate under the less rigorous constraints of this requirement. Thus, while Mandatory Access Control imposes constraints preventing a subject from passing information to another subject operating at a different sensitivity level, this requirement permits the subject to pass the information to any subject at the same sensitivity level. The policy is bounded by the information system boundary. Once the information is passed outside the control of the information system, additional means may be required to ensure the constraints remain in effect. While the older, more traditional definitions of discretionary access control require identity-based access control, that limitation is not required for this use of discretionary access control.\\n\\nBy enabling the fs.protected_symlinks kernel parameter, symbolic links are permitted to be followed only when outside a sticky world-writable directory, or when the UID of the link and follower match, or when the directory owner matches the symlink's owner. Disallowing such symlinks helps mitigate vulnerabilities based on insecure file system accessed by privileged programs, avoiding an exploitation vector exploiting unsafe use of open() or creat().\\n\\nSatisfies: SRG-OS-000312-GPOS-00122, SRG-OS-000312-GPOS-00123, SRG-OS-000312-GPOS-00124, SRG-OS-000324-GPOS-00125\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230267", + "group_title": "SRG-OS-000312-GPOS-00122", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230267r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:133", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32911r567548_fix", + "fixtext_fixref": "F-32911r567548_fix", + "ident": { + "text": "CCI-002165", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230267r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230266r627750_rule", + "version": "RHEL-08-010372", + "time": "2021-12-17T10:27:44", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-001749", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-32910r567545_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:132", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must enable kernel parameters to enforce discretionary access control on symlinks.", + "id": "V-230267", + "desc": "Discretionary Access Control (DAC) is based on the notion that individual users are \"owners\" of objects and therefore have discretion over who should be authorized to access the object and in which mode (e.g., read or write). Ownership is usually acquired as a consequence of creating the object or via specified ownership assignment. DAC allows the owner to determine who will have access to objects they control. An example of DAC includes user-controlled file permissions.\n\nWhen discretionary access control policies are implemented, subjects are not constrained with regard to what actions they can take with information for which they have already been granted access. Thus, subjects that have been granted access to information are not prevented from passing (i.e., the subjects have the discretion to pass) the information to other subjects or objects. A subject that is constrained in its operation by Mandatory Access Control policies is still able to operate under the less rigorous constraints of this requirement. Thus, while Mandatory Access Control imposes constraints preventing a subject from passing information to another subject operating at a different sensitivity level, this requirement permits the subject to pass the information to any subject at the same sensitivity level. The policy is bounded by the information system boundary. Once the information is passed outside the control of the information system, additional means may be required to ensure the constraints remain in effect. While the older, more traditional definitions of discretionary access control require identity-based access control, that limitation is not required for this use of discretionary access control.\n\nBy enabling the fs.protected_symlinks kernel parameter, symbolic links are permitted to be followed only when outside a sticky world-writable directory, or when the UID of the link and follower match, or when the directory owner matches the symlink's owner. Disallowing such symlinks helps mitigate vulnerabilities based on insecure file system accessed by privileged programs, avoiding an exploitation vector exploiting unsafe use of open() or creat().\n\nSatisfies: SRG-OS-000312-GPOS-00122, SRG-OS-000312-GPOS-00123, SRG-OS-000312-GPOS-00124, SRG-OS-000324-GPOS-00125", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:133", + "label": "check" + }, + { + "data": "Configure the operating system to enable DAC on symlinks.\n\nAdd or edit the following line in a system configuration file in the \"/etc/sysctl.d/\" directory:\n\nfs.protected_symlinks = 1\n\nLoad settings from all system configuration files with the following command:\n\n$ sudo sysctl --system", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230267\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230267\",\n \"cdf:title\": \"SRG-OS-000312-GPOS-00122\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230267r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230267r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-010373\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must enable kernel parameters to enforce discretionary access control on symlinks.\",\n \"cdf:description\": \"<VulnDiscussion>Discretionary Access Control (DAC) is based on the notion that individual users are \\\"owners\\\" of objects and therefore have discretion over who should be authorized to access the object and in which mode (e.g., read or write). Ownership is usually acquired as a consequence of creating the object or via specified ownership assignment. DAC allows the owner to determine who will have access to objects they control. An example of DAC includes user-controlled file permissions.\\n\\nWhen discretionary access control policies are implemented, subjects are not constrained with regard to what actions they can take with information for which they have already been granted access. Thus, subjects that have been granted access to information are not prevented from passing (i.e., the subjects have the discretion to pass) the information to other subjects or objects. A subject that is constrained in its operation by Mandatory Access Control policies is still able to operate under the less rigorous constraints of this requirement. Thus, while Mandatory Access Control imposes constraints preventing a subject from passing information to another subject operating at a different sensitivity level, this requirement permits the subject to pass the information to any subject at the same sensitivity level. The policy is bounded by the information system boundary. Once the information is passed outside the control of the information system, additional means may be required to ensure the constraints remain in effect. While the older, more traditional definitions of discretionary access control require identity-based access control, that limitation is not required for this use of discretionary access control.\\n\\nBy enabling the fs.protected_symlinks kernel parameter, symbolic links are permitted to be followed only when outside a sticky world-writable directory, or when the UID of the link and follower match, or when the directory owner matches the symlink's owner. Disallowing such symlinks helps mitigate vulnerabilities based on insecure file system accessed by privileged programs, avoiding an exploitation vector exploiting unsafe use of open() or creat().\\n\\nSatisfies: SRG-OS-000312-GPOS-00122, SRG-OS-000312-GPOS-00123, SRG-OS-000312-GPOS-00124, SRG-OS-000324-GPOS-00125</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-002165\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to enable DAC on symlinks.\\n\\nAdd or edit the following line in a system configuration file in the \\\"/etc/sysctl.d/\\\" directory:\\n\\nfs.protected_symlinks = 1\\n\\nLoad settings from all system configuration files with the following command:\\n\\n$ sudo sysctl --system\",\n \"fixref\": \"F-32911r567548_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-32911r567548_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:133\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:27:45" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-002165" + ], + "nist": [ + "AC-3 (4)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Discretionary Access Control (DAC) is based on the notion that individual users are \\\"owners\\\" of objects and therefore have discretion over who should be authorized to access the object and in which mode (e.g., read or write). Ownership is usually acquired as a consequence of creating the object or via specified ownership assignment. DAC allows the owner to determine who will have access to objects they control. An example of DAC includes user-controlled file permissions.\\n\\nWhen discretionary access control policies are implemented, subjects are not constrained with regard to what actions they can take with information for which they have already been granted access. Thus, subjects that have been granted access to information are not prevented from passing (i.e., the subjects have the discretion to pass) the information to other subjects or objects. A subject that is constrained in its operation by Mandatory Access Control policies is still able to operate under the less rigorous constraints of this requirement. Thus, while Mandatory Access Control imposes constraints preventing a subject from passing information to another subject operating at a different sensitivity level, this requirement permits the subject to pass the information to any subject at the same sensitivity level. The policy is bounded by the information system boundary. Once the information is passed outside the control of the information system, additional means may be required to ensure the constraints remain in effect. While the older, more traditional definitions of discretionary access control require identity-based access control, that limitation is not required for this use of discretionary access control.\\n\\nBy enabling the fs.protected_hardlinks kernel parameter, users can no longer create soft or hard links to files they do not own. Disallowing such hardlinks mitigate vulnerabilities based on insecure file system accessed by privileged programs, avoiding an exploitation vector exploiting unsafe use of open() or creat().\\n\\nSatisfies: SRG-OS-000312-GPOS-00122, SRG-OS-000312-GPOS-00123, SRG-OS-000312-GPOS-00124, SRG-OS-000324-GPOS-00125\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230268", + "group_title": "SRG-OS-000312-GPOS-00122", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230268r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:134", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32912r567551_fix", + "fixtext_fixref": "F-32912r567551_fix", + "ident": { + "text": "CCI-002165", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230268r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230267r627750_rule", + "version": "RHEL-08-010373", + "time": "2021-12-17T10:27:45", + "weight": "10.0", + "severity": "medium", + "cdf:result": "pass", + "cdf:ident": { + "text": "CCI-002165", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-32911r567548_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:133", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must enable kernel parameters to enforce discretionary access control on hardlinks.", + "id": "V-230268", + "desc": "Discretionary Access Control (DAC) is based on the notion that individual users are \"owners\" of objects and therefore have discretion over who should be authorized to access the object and in which mode (e.g., read or write). Ownership is usually acquired as a consequence of creating the object or via specified ownership assignment. DAC allows the owner to determine who will have access to objects they control. An example of DAC includes user-controlled file permissions.\n\nWhen discretionary access control policies are implemented, subjects are not constrained with regard to what actions they can take with information for which they have already been granted access. Thus, subjects that have been granted access to information are not prevented from passing (i.e., the subjects have the discretion to pass) the information to other subjects or objects. A subject that is constrained in its operation by Mandatory Access Control policies is still able to operate under the less rigorous constraints of this requirement. Thus, while Mandatory Access Control imposes constraints preventing a subject from passing information to another subject operating at a different sensitivity level, this requirement permits the subject to pass the information to any subject at the same sensitivity level. The policy is bounded by the information system boundary. Once the information is passed outside the control of the information system, additional means may be required to ensure the constraints remain in effect. While the older, more traditional definitions of discretionary access control require identity-based access control, that limitation is not required for this use of discretionary access control.\n\nBy enabling the fs.protected_hardlinks kernel parameter, users can no longer create soft or hard links to files they do not own. Disallowing such hardlinks mitigate vulnerabilities based on insecure file system accessed by privileged programs, avoiding an exploitation vector exploiting unsafe use of open() or creat().\n\nSatisfies: SRG-OS-000312-GPOS-00122, SRG-OS-000312-GPOS-00123, SRG-OS-000312-GPOS-00124, SRG-OS-000324-GPOS-00125", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:134", + "label": "check" + }, + { + "data": "Configure the operating system to enable DAC on hardlinks.\n\nAdd or edit the following line in a system configuration file in the \"/etc/sysctl.d/\" directory:\n\nfs.protected_hardlinks = 1\n\nLoad settings from all system configuration files with the following command:\n\n$ sudo sysctl --system", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230268\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230268\",\n \"cdf:title\": \"SRG-OS-000312-GPOS-00122\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230268r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230268r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-010374\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must enable kernel parameters to enforce discretionary access control on hardlinks.\",\n \"cdf:description\": \"<VulnDiscussion>Discretionary Access Control (DAC) is based on the notion that individual users are \\\"owners\\\" of objects and therefore have discretion over who should be authorized to access the object and in which mode (e.g., read or write). Ownership is usually acquired as a consequence of creating the object or via specified ownership assignment. DAC allows the owner to determine who will have access to objects they control. An example of DAC includes user-controlled file permissions.\\n\\nWhen discretionary access control policies are implemented, subjects are not constrained with regard to what actions they can take with information for which they have already been granted access. Thus, subjects that have been granted access to information are not prevented from passing (i.e., the subjects have the discretion to pass) the information to other subjects or objects. A subject that is constrained in its operation by Mandatory Access Control policies is still able to operate under the less rigorous constraints of this requirement. Thus, while Mandatory Access Control imposes constraints preventing a subject from passing information to another subject operating at a different sensitivity level, this requirement permits the subject to pass the information to any subject at the same sensitivity level. The policy is bounded by the information system boundary. Once the information is passed outside the control of the information system, additional means may be required to ensure the constraints remain in effect. While the older, more traditional definitions of discretionary access control require identity-based access control, that limitation is not required for this use of discretionary access control.\\n\\nBy enabling the fs.protected_hardlinks kernel parameter, users can no longer create soft or hard links to files they do not own. Disallowing such hardlinks mitigate vulnerabilities based on insecure file system accessed by privileged programs, avoiding an exploitation vector exploiting unsafe use of open() or creat().\\n\\nSatisfies: SRG-OS-000312-GPOS-00122, SRG-OS-000312-GPOS-00123, SRG-OS-000312-GPOS-00124, SRG-OS-000324-GPOS-00125</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-002165\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to enable DAC on hardlinks.\\n\\nAdd or edit the following line in a system configuration file in the \\\"/etc/sysctl.d/\\\" directory:\\n\\nfs.protected_hardlinks = 1\\n\\nLoad settings from all system configuration files with the following command:\\n\\n$ sudo sysctl --system\",\n \"fixref\": \"F-32912r567551_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-32912r567551_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:134\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:27:45" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001090" + ], + "nist": [ + "SC-4" + ], + "severity": "low", + "description": "{\"VulnDiscussion\":\"Preventing unauthorized information transfers mitigates the risk of information, including encrypted representations of information, produced by the actions of prior users/roles (or the actions of processes acting on behalf of prior users/roles) from being available to any current users/roles (or current processes) that obtain access to shared system resources (e.g., registers, main memory, hard disks) after those resources have been released back to information systems. The control of information in shared resources is also commonly referred to as object reuse and residual information protection.\\n\\nThis requirement generally applies to the design of an information technology product, but it can also apply to the configuration of particular information system components that are, or use, such products. This can be verified by acceptance/validation processes in DoD or other government agencies.\\n\\nThere may be shared resources with configurable protections (e.g., files in storage) that may be assessed on specific information system components.\\n\\nRestricting access to the kernel message buffer limits access to only root. This prevents attackers from gaining additional system information as a non-privileged user.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230269", + "group_title": "SRG-OS-000138-GPOS-00069", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230269r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:135", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32913r567554_fix", + "fixtext_fixref": "F-32913r567554_fix", + "ident": { + "text": "CCI-001090", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230269r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230268r627750_rule", + "version": "RHEL-08-010374", + "time": "2021-12-17T10:27:45", + "weight": "10.0", + "severity": "medium", + "cdf:result": "pass", + "cdf:ident": { + "text": "CCI-002165", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-32912r567551_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:134", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must restrict access to the kernel message buffer.", + "id": "V-230269", + "desc": "Preventing unauthorized information transfers mitigates the risk of information, including encrypted representations of information, produced by the actions of prior users/roles (or the actions of processes acting on behalf of prior users/roles) from being available to any current users/roles (or current processes) that obtain access to shared system resources (e.g., registers, main memory, hard disks) after those resources have been released back to information systems. The control of information in shared resources is also commonly referred to as object reuse and residual information protection.\n\nThis requirement generally applies to the design of an information technology product, but it can also apply to the configuration of particular information system components that are, or use, such products. This can be verified by acceptance/validation processes in DoD or other government agencies.\n\nThere may be shared resources with configurable protections (e.g., files in storage) that may be assessed on specific information system components.\n\nRestricting access to the kernel message buffer limits access to only root. This prevents attackers from gaining additional system information as a non-privileged user.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:135", + "label": "check" + }, + { + "data": "Configure the operating system to restrict access to the kernel message buffer.\n\nAdd or edit the following line in a system configuration file in the \"/etc/sysctl.d/\" directory:\n\nkernel.dmesg_restrict = 1\n\nLoad settings from all system configuration files with the following command:\n\n$ sudo sysctl --system", + "label": "fix" + } + ], + "impact": 0.3, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230269\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230269\",\n \"cdf:title\": \"SRG-OS-000138-GPOS-00069\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230269r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230269r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"low\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-010375\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must restrict access to the kernel message buffer.\",\n \"cdf:description\": \"<VulnDiscussion>Preventing unauthorized information transfers mitigates the risk of information, including encrypted representations of information, produced by the actions of prior users/roles (or the actions of processes acting on behalf of prior users/roles) from being available to any current users/roles (or current processes) that obtain access to shared system resources (e.g., registers, main memory, hard disks) after those resources have been released back to information systems. The control of information in shared resources is also commonly referred to as object reuse and residual information protection.\\n\\nThis requirement generally applies to the design of an information technology product, but it can also apply to the configuration of particular information system components that are, or use, such products. This can be verified by acceptance/validation processes in DoD or other government agencies.\\n\\nThere may be shared resources with configurable protections (e.g., files in storage) that may be assessed on specific information system components.\\n\\nRestricting access to the kernel message buffer limits access to only root. This prevents attackers from gaining additional system information as a non-privileged user.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-001090\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to restrict access to the kernel message buffer.\\n\\nAdd or edit the following line in a system configuration file in the \\\"/etc/sysctl.d/\\\" directory:\\n\\nkernel.dmesg_restrict = 1\\n\\nLoad settings from all system configuration files with the following command:\\n\\n$ sudo sysctl --system\",\n \"fixref\": \"F-32913r567554_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-32913r567554_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:135\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:27:45" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001090" + ], + "nist": [ + "SC-4" + ], + "severity": "low", + "description": "{\"VulnDiscussion\":\"Preventing unauthorized information transfers mitigates the risk of information, including encrypted representations of information, produced by the actions of prior users/roles (or the actions of processes acting on behalf of prior users/roles) from being available to any current users/roles (or current processes) that obtain access to shared system resources (e.g., registers, main memory, hard disks) after those resources have been released back to information systems. The control of information in shared resources is also commonly referred to as object reuse and residual information protection.\\n\\nThis requirement generally applies to the design of an information technology product, but it can also apply to the configuration of particular information system components that are, or use, such products. This can be verified by acceptance/validation processes in DoD or other government agencies.\\n\\nThere may be shared resources with configurable protections (e.g., files in storage) that may be assessed on specific information system components.\\n\\nSetting the kernel.perf_event_paranoid kernel parameter to \\\"2\\\" prevents attackers from gaining additional system information as a non-privileged user.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230270", + "group_title": "SRG-OS-000138-GPOS-00069", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230270r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:136", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32914r567557_fix", + "fixtext_fixref": "F-32914r567557_fix", + "ident": { + "text": "CCI-001090", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230270r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230269r627750_rule", + "version": "RHEL-08-010375", + "time": "2021-12-17T10:27:45", + "weight": "10.0", + "severity": "low", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-001090", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-32913r567554_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:135", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must prevent kernel profiling by unprivileged users.", + "id": "V-230270", + "desc": "Preventing unauthorized information transfers mitigates the risk of information, including encrypted representations of information, produced by the actions of prior users/roles (or the actions of processes acting on behalf of prior users/roles) from being available to any current users/roles (or current processes) that obtain access to shared system resources (e.g., registers, main memory, hard disks) after those resources have been released back to information systems. The control of information in shared resources is also commonly referred to as object reuse and residual information protection.\n\nThis requirement generally applies to the design of an information technology product, but it can also apply to the configuration of particular information system components that are, or use, such products. This can be verified by acceptance/validation processes in DoD or other government agencies.\n\nThere may be shared resources with configurable protections (e.g., files in storage) that may be assessed on specific information system components.\n\nSetting the kernel.perf_event_paranoid kernel parameter to \"2\" prevents attackers from gaining additional system information as a non-privileged user.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:136", + "label": "check" + }, + { + "data": "Configure the operating system to prevent kernel profiling by unprivileged users.\n\nAdd or edit the following line in a system configuration file in the \"/etc/sysctl.d/\" directory:\n\nkernel.perf_event_paranoid = 2\n\nLoad settings from all system configuration files with the following command:\n\n$ sudo sysctl --system", + "label": "fix" + } + ], + "impact": 0.3, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230270\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230270\",\n \"cdf:title\": \"SRG-OS-000138-GPOS-00069\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230270r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230270r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"low\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-010376\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must prevent kernel profiling by unprivileged users.\",\n \"cdf:description\": \"<VulnDiscussion>Preventing unauthorized information transfers mitigates the risk of information, including encrypted representations of information, produced by the actions of prior users/roles (or the actions of processes acting on behalf of prior users/roles) from being available to any current users/roles (or current processes) that obtain access to shared system resources (e.g., registers, main memory, hard disks) after those resources have been released back to information systems. The control of information in shared resources is also commonly referred to as object reuse and residual information protection.\\n\\nThis requirement generally applies to the design of an information technology product, but it can also apply to the configuration of particular information system components that are, or use, such products. This can be verified by acceptance/validation processes in DoD or other government agencies.\\n\\nThere may be shared resources with configurable protections (e.g., files in storage) that may be assessed on specific information system components.\\n\\nSetting the kernel.perf_event_paranoid kernel parameter to \\\"2\\\" prevents attackers from gaining additional system information as a non-privileged user.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-001090\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to prevent kernel profiling by unprivileged users.\\n\\nAdd or edit the following line in a system configuration file in the \\\"/etc/sysctl.d/\\\" directory:\\n\\nkernel.perf_event_paranoid = 2\\n\\nLoad settings from all system configuration files with the following command:\\n\\n$ sudo sysctl --system\",\n \"fixref\": \"F-32914r567557_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-32914r567557_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:136\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:27:45" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-002038" + ], + "nist": [ + "IA-11" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without reauthentication, users may access resources or perform tasks for which they do not have authorization.\\n\\nWhen operating systems provide the capability to escalate a functional capability, it is critical the user reauthenticate.\\n\\nSatisfies: SRG-OS-000373-GPOS-00156, SRG-OS-000373-GPOS-00157, SRG-OS-000373-GPOS-00158\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230271", + "group_title": "SRG-OS-000373-GPOS-00156", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230271r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:137", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32915r567560_fix", + "fixtext_fixref": "F-32915r567560_fix", + "ident": { + "text": "CCI-002038", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230271r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230270r627750_rule", + "version": "RHEL-08-010376", + "time": "2021-12-17T10:27:45", + "weight": "10.0", + "severity": "low", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-001090", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-32914r567557_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:136", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must require users to provide a password for privilege escalation.", + "id": "V-230271", + "desc": "Without reauthentication, users may access resources or perform tasks for which they do not have authorization.\n\nWhen operating systems provide the capability to escalate a functional capability, it is critical the user reauthenticate.\n\nSatisfies: SRG-OS-000373-GPOS-00156, SRG-OS-000373-GPOS-00157, SRG-OS-000373-GPOS-00158", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:137", + "label": "check" + }, + { + "data": "Remove any occurrence of \"NOPASSWD\" found in \"/etc/sudoers\" file or files in the \"/etc/sudoers.d\" directory.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230271\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230271\",\n \"cdf:title\": \"SRG-OS-000373-GPOS-00156\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230271r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230271r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-010380\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must require users to provide a password for privilege escalation.\",\n \"cdf:description\": \"<VulnDiscussion>Without reauthentication, users may access resources or perform tasks for which they do not have authorization.\\n\\nWhen operating systems provide the capability to escalate a functional capability, it is critical the user reauthenticate.\\n\\nSatisfies: SRG-OS-000373-GPOS-00156, SRG-OS-000373-GPOS-00157, SRG-OS-000373-GPOS-00158</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-002038\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Remove any occurrence of \\\"NOPASSWD\\\" found in \\\"/etc/sudoers\\\" file or files in the \\\"/etc/sudoers.d\\\" directory.\",\n \"fixref\": \"F-32915r567560_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-32915r567560_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:137\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:27:45" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-002038" + ], + "nist": [ + "IA-11" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without reauthentication, users may access resources or perform tasks for which they do not have authorization.\\n\\nWhen operating systems provide the capability to escalate a functional capability, it is critical the user reauthenticate.\\n\\nSatisfies: SRG-OS-000373-GPOS-00156, SRG-OS-000373-GPOS-00157, SRG-OS-000373-GPOS-00158\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230272", + "group_title": "SRG-OS-000373-GPOS-00156", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230272r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:138", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32916r567563_fix", + "fixtext_fixref": "F-32916r567563_fix", + "ident": { + "text": "CCI-002038", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230272r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230271r627750_rule", + "version": "RHEL-08-010380", + "time": "2021-12-17T10:27:45", + "weight": "10.0", + "severity": "medium", + "cdf:result": "pass", + "cdf:ident": { + "text": "CCI-002038", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-32915r567560_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:137", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must require users to reauthenticate for privilege escalation.", + "id": "V-230272", + "desc": "Without reauthentication, users may access resources or perform tasks for which they do not have authorization.\n\nWhen operating systems provide the capability to escalate a functional capability, it is critical the user reauthenticate.\n\nSatisfies: SRG-OS-000373-GPOS-00156, SRG-OS-000373-GPOS-00157, SRG-OS-000373-GPOS-00158", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:138", + "label": "check" + }, + { + "data": "Remove any occurrence of \"!authenticate\" found in \"/etc/sudoers\" file or files in the \"/etc/sudoers.d\" directory.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230272\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230272\",\n \"cdf:title\": \"SRG-OS-000373-GPOS-00156\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230272r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230272r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-010381\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must require users to reauthenticate for privilege escalation.\",\n \"cdf:description\": \"<VulnDiscussion>Without reauthentication, users may access resources or perform tasks for which they do not have authorization.\\n\\nWhen operating systems provide the capability to escalate a functional capability, it is critical the user reauthenticate.\\n\\nSatisfies: SRG-OS-000373-GPOS-00156, SRG-OS-000373-GPOS-00157, SRG-OS-000373-GPOS-00158</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-002038\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Remove any occurrence of \\\"!authenticate\\\" found in \\\"/etc/sudoers\\\" file or files in the \\\"/etc/sudoers.d\\\" directory.\",\n \"fixref\": \"F-32916r567563_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-32916r567563_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:138\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:27:45" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001948" + ], + "nist": [ + "IA-2 (11)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Using an authentication device, such as a DoD Common Access Card (CAC) or token that is separate from the information system, ensures that even if the information system is compromised, credentials stored on the authentication device will not be affected.\\n\\nMultifactor solutions that require devices separate from information systems gaining access include, for example, hardware tokens providing time-based or challenge-response authenticators and smart cards such as the U.S. Government Personal Identity Verification (PIV) card and the DoD CAC.\\n\\nA privileged account is defined as an information system account with authorizations of a privileged user.\\n\\nRemote access is access to DoD nonpublic information systems by an authorized user (or an information system) communicating through an external, non-organization-controlled network. Remote access methods include, for example, dial-up, broadband, and wireless.\\n\\nThis requirement only applies to components where this is specific to the function of the device or has the concept of an organizational user (e.g., VPN, proxy capability). This does not apply to authentication for the purpose of configuring the device itself (management).\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230273", + "group_title": "SRG-OS-000375-GPOS-00160", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230273r743943_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:139", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32917r743942_fix", + "fixtext_fixref": "F-32917r743942_fix", + "ident": { + "text": "CCI-001948", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230273r743943_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230272r627750_rule", + "version": "RHEL-08-010381", + "time": "2021-12-17T10:27:45", + "weight": "10.0", + "severity": "medium", + "cdf:result": "pass", + "cdf:ident": { + "text": "CCI-002038", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-32916r567563_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:138", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must have the packages required for multifactor authentication installed.", + "id": "V-230273", + "desc": "Using an authentication device, such as a DoD Common Access Card (CAC) or token that is separate from the information system, ensures that even if the information system is compromised, credentials stored on the authentication device will not be affected.\n\nMultifactor solutions that require devices separate from information systems gaining access include, for example, hardware tokens providing time-based or challenge-response authenticators and smart cards such as the U.S. Government Personal Identity Verification (PIV) card and the DoD CAC.\n\nA privileged account is defined as an information system account with authorizations of a privileged user.\n\nRemote access is access to DoD nonpublic information systems by an authorized user (or an information system) communicating through an external, non-organization-controlled network. Remote access methods include, for example, dial-up, broadband, and wireless.\n\nThis requirement only applies to components where this is specific to the function of the device or has the concept of an organizational user (e.g., VPN, proxy capability). This does not apply to authentication for the purpose of configuring the device itself (management).", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:139", + "label": "check" + }, + { + "data": "Configure the operating system to implement multifactor authentication by installing the required package with the following command:\n\n$ sudo yum install openssl-pkcs11", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230273\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230273\",\n \"cdf:title\": \"SRG-OS-000375-GPOS-00160\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230273r743943_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230273r743943_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-010390\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must have the packages required for multifactor authentication installed.\",\n \"cdf:description\": \"<VulnDiscussion>Using an authentication device, such as a DoD Common Access Card (CAC) or token that is separate from the information system, ensures that even if the information system is compromised, credentials stored on the authentication device will not be affected.\\n\\nMultifactor solutions that require devices separate from information systems gaining access include, for example, hardware tokens providing time-based or challenge-response authenticators and smart cards such as the U.S. Government Personal Identity Verification (PIV) card and the DoD CAC.\\n\\nA privileged account is defined as an information system account with authorizations of a privileged user.\\n\\nRemote access is access to DoD nonpublic information systems by an authorized user (or an information system) communicating through an external, non-organization-controlled network. Remote access methods include, for example, dial-up, broadband, and wireless.\\n\\nThis requirement only applies to components where this is specific to the function of the device or has the concept of an organizational user (e.g., VPN, proxy capability). This does not apply to authentication for the purpose of configuring the device itself (management).</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-001948\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to implement multifactor authentication by installing the required package with the following command:\\n\\n$ sudo yum install openssl-pkcs11\",\n \"fixref\": \"F-32917r743942_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-32917r743942_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:139\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:27:45" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-002617" + ], + "nist": [ + "SI-2 (6)" + ], + "severity": "low", + "description": "{\"VulnDiscussion\":\"Previous versions of software components that are not removed from the information system after updates have been installed may be exploited by adversaries. Some information technology products may remove older versions of software automatically from the information system.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230281", + "group_title": "SRG-OS-000437-GPOS-00194", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230281r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:145", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32925r567590_fix", + "fixtext_fixref": "F-32925r567590_fix", + "ident": { + "text": "CCI-002617", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230281r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230273r743943_rule", + "version": "RHEL-08-010390", + "time": "2021-12-17T10:27:45", + "weight": "10.0", + "severity": "medium", + "cdf:result": "pass", + "cdf:ident": { + "text": "CCI-001948", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-32917r743942_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:139", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "YUM must remove all software components after updated versions have been installed on RHEL 8.", + "id": "V-230281", + "desc": "Previous versions of software components that are not removed from the information system after updates have been installed may be exploited by adversaries. Some information technology products may remove older versions of software automatically from the information system.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:145", + "label": "check" + }, + { + "data": "Configure the operating system to remove all software components after updated versions have been installed.\n\nSet the \"clean_requirements_on_remove\" option to \"True\" in the \"/etc/dnf/dnf.conf\" file:\n\nclean_requirements_on_remove=True", + "label": "fix" + } + ], + "impact": 0.3, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230281\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230281\",\n \"cdf:title\": \"SRG-OS-000437-GPOS-00194\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230281r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230281r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"low\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-010440\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"YUM must remove all software components after updated versions have been installed on RHEL 8.\",\n \"cdf:description\": \"<VulnDiscussion>Previous versions of software components that are not removed from the information system after updates have been installed may be exploited by adversaries. Some information technology products may remove older versions of software automatically from the information system.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-002617\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to remove all software components after updated versions have been installed.\\n\\nSet the \\\"clean_requirements_on_remove\\\" option to \\\"True\\\" in the \\\"/etc/dnf/dnf.conf\\\" file:\\n\\nclean_requirements_on_remove=True\",\n \"fixref\": \"F-32925r567590_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-32925r567590_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:145\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:27:47" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-002696" + ], + "nist": [ + "SI-6 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without verification of the security functions, security functions may not operate correctly and the failure may go unnoticed. Security function is defined as the hardware, software, and/or firmware of the information system responsible for enforcing the system security policy and supporting the isolation of code and data on which the protection is based. Security functionality includes, but is not limited to, establishing system accounts, configuring access authorizations (i.e., permissions, privileges), setting events to be audited, and setting intrusion detection parameters.\\n\\nThis requirement applies to operating systems performing security function verification/testing and/or systems and environments that require this functionality.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230282", + "group_title": "SRG-OS-000445-GPOS-00199", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230282r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:146", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32926r567593_fix", + "fixtext_fixref": "F-32926r567593_fix", + "ident": { + "text": "CCI-002696", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230282r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230281r627750_rule", + "version": "RHEL-08-010440", + "time": "2021-12-17T10:27:47", + "weight": "10.0", + "severity": "low", + "cdf:result": "pass", + "cdf:ident": { + "text": "CCI-002617", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-32925r567590_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:145", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must enable the SELinux targeted policy.", + "id": "V-230282", + "desc": "Without verification of the security functions, security functions may not operate correctly and the failure may go unnoticed. Security function is defined as the hardware, software, and/or firmware of the information system responsible for enforcing the system security policy and supporting the isolation of code and data on which the protection is based. Security functionality includes, but is not limited to, establishing system accounts, configuring access authorizations (i.e., permissions, privileges), setting events to be audited, and setting intrusion detection parameters.\n\nThis requirement applies to operating systems performing security function verification/testing and/or systems and environments that require this functionality.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:146", + "label": "check" + }, + { + "data": "Configure the operating system to verify correct operation of all security functions.\n\nSet the \"SELinuxtype\" to the \"targeted\" policy by modifying the \"/etc/selinux/config\" file to have the following line:\n\nSELINUXTYPE=targeted\n\nA reboot is required for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230282\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230282\",\n \"cdf:title\": \"SRG-OS-000445-GPOS-00199\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230282r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230282r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-010450\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must enable the SELinux targeted policy.\",\n \"cdf:description\": \"<VulnDiscussion>Without verification of the security functions, security functions may not operate correctly and the failure may go unnoticed. Security function is defined as the hardware, software, and/or firmware of the information system responsible for enforcing the system security policy and supporting the isolation of code and data on which the protection is based. Security functionality includes, but is not limited to, establishing system accounts, configuring access authorizations (i.e., permissions, privileges), setting events to be audited, and setting intrusion detection parameters.\\n\\nThis requirement applies to operating systems performing security function verification/testing and/or systems and environments that require this functionality.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-002696\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to verify correct operation of all security functions.\\n\\nSet the \\\"SELinuxtype\\\" to the \\\"targeted\\\" policy by modifying the \\\"/etc/selinux/config\\\" file to have the following line:\\n\\nSELINUXTYPE=targeted\\n\\nA reboot is required for the changes to take effect.\",\n \"fixref\": \"F-32926r567593_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-32926r567593_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:146\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:27:47" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "high", + "description": "{\"VulnDiscussion\":\"The \\\"shosts.equiv\\\" files are used to configure host-based authentication for the system via SSH. Host-based authentication is not sufficient for preventing unauthorized access to the system, as it does not require interactive identification and authentication of a connection request, or for the use of two-factor authentication.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230283", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230283r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:147", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32927r567596_fix", + "fixtext_fixref": "F-32927r567596_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230283r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230282r627750_rule", + "version": "RHEL-08-010450", + "time": "2021-12-17T10:27:47", + "weight": "10.0", + "severity": "medium", + "cdf:result": "pass", + "cdf:ident": { + "text": "CCI-002696", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-32926r567593_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:146", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "There must be no shosts.equiv files on the RHEL 8 operating system.", + "id": "V-230283", + "desc": "The \"shosts.equiv\" files are used to configure host-based authentication for the system via SSH. Host-based authentication is not sufficient for preventing unauthorized access to the system, as it does not require interactive identification and authentication of a connection request, or for the use of two-factor authentication.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:147", + "label": "check" + }, + { + "data": "Remove any found \"shosts.equiv\" files from the system.\n\n$ sudo rm /etc/ssh/shosts.equiv", + "label": "fix" + } + ], + "impact": 0.7, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230283\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230283\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230283r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230283r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"high\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-010460\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"There must be no shosts.equiv files on the RHEL 8 operating system.\",\n \"cdf:description\": \"<VulnDiscussion>The \\\"shosts.equiv\\\" files are used to configure host-based authentication for the system via SSH. Host-based authentication is not sufficient for preventing unauthorized access to the system, as it does not require interactive identification and authentication of a connection request, or for the use of two-factor authentication.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Remove any found \\\"shosts.equiv\\\" files from the system.\\n\\n$ sudo rm /etc/ssh/shosts.equiv\",\n \"fixref\": \"F-32927r567596_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-32927r567596_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:147\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:27:47" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "high", + "description": "{\"VulnDiscussion\":\"The \\\".shosts\\\" files are used to configure host-based authentication for individual users or the system via SSH. Host-based authentication is not sufficient for preventing unauthorized access to the system, as it does not require interactive identification and authentication of a connection request, or for the use of two-factor authentication.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230284", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230284r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:148", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32928r567599_fix", + "fixtext_fixref": "F-32928r567599_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230284r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230283r627750_rule", + "version": "RHEL-08-010460", + "time": "2021-12-17T10:27:47", + "weight": "10.0", + "severity": "high", + "cdf:result": "pass", + "cdf:ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-32927r567596_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:147", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "There must be no .shosts files on the RHEL 8 operating system.", + "id": "V-230284", + "desc": "The \".shosts\" files are used to configure host-based authentication for individual users or the system via SSH. Host-based authentication is not sufficient for preventing unauthorized access to the system, as it does not require interactive identification and authentication of a connection request, or for the use of two-factor authentication.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:148", + "label": "check" + }, + { + "data": "Remove any found \".shosts\" files from the system.\n\n$ sudo rm /[path]/[to]/[file]/.shosts", + "label": "fix" + } + ], + "impact": 0.7, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230284\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230284\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230284r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230284r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"high\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-010470\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"There must be no .shosts files on the RHEL 8 operating system.\",\n \"cdf:description\": \"<VulnDiscussion>The \\\".shosts\\\" files are used to configure host-based authentication for individual users or the system via SSH. Host-based authentication is not sufficient for preventing unauthorized access to the system, as it does not require interactive identification and authentication of a connection request, or for the use of two-factor authentication.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Remove any found \\\".shosts\\\" files from the system.\\n\\n$ sudo rm /[path]/[to]/[file]/.shosts\",\n \"fixref\": \"F-32928r567599_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-32928r567599_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:148\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:30:11" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"If a public host key file is modified by an unauthorized user, the SSH service may be compromised.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230286", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230286r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:149", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32930r567605_fix", + "fixtext_fixref": "F-32930r567605_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230286r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230284r627750_rule", + "version": "RHEL-08-010470", + "time": "2021-12-17T10:30:11", + "weight": "10.0", + "severity": "high", + "cdf:result": "pass", + "cdf:ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-32928r567599_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:148", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The RHEL 8 SSH public host key files must have mode 0644 or less permissive.", + "id": "V-230286", + "desc": "If a public host key file is modified by an unauthorized user, the SSH service may be compromised.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:149", + "label": "check" + }, + { + "data": "Change the mode of public host key files under \"/etc/ssh\" to \"0644\" with the following command:\n\n$ sudo chmod 0644 /etc/ssh/*key.pub\n\nThe SSH daemon must be restarted for the changes to take effect. To restart the SSH daemon, run the following command:\n\n$ sudo systemctl restart sshd.service", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230286\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230286\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230286r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230286r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-010480\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The RHEL 8 SSH public host key files must have mode 0644 or less permissive.\",\n \"cdf:description\": \"<VulnDiscussion>If a public host key file is modified by an unauthorized user, the SSH service may be compromised.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Change the mode of public host key files under \\\"/etc/ssh\\\" to \\\"0644\\\" with the following command:\\n\\n$ sudo chmod 0644 /etc/ssh/*key.pub\\n\\nThe SSH daemon must be restarted for the changes to take effect. To restart the SSH daemon, run the following command:\\n\\n$ sudo systemctl restart sshd.service\",\n \"fixref\": \"F-32930r567605_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-32930r567605_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:149\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:30:11" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"If an unauthorized user obtains the private SSH host key file, the host could be impersonated.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230287", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230287r743951_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:150", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32931r743950_fix", + "fixtext_fixref": "F-32931r743950_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230287r743951_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230286r627750_rule", + "version": "RHEL-08-010480", + "time": "2021-12-17T10:30:11", + "weight": "10.0", + "severity": "medium", + "cdf:result": "pass", + "cdf:ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-32930r567605_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:149", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The RHEL 8 SSH private host key files must have mode 0600 or less permissive.", + "id": "V-230287", + "desc": "If an unauthorized user obtains the private SSH host key file, the host could be impersonated.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:150", + "label": "check" + }, + { + "data": "Configure the mode of SSH private host key files under \"/etc/ssh\" to \"0600\" with the following command:\n\n$ sudo chmod 0600 /etc/ssh/ssh_host*key\n\nThe SSH daemon must be restarted for the changes to take effect. To restart the SSH daemon, run the following command:\n\n$ sudo systemctl restart sshd.service", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230287\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230287\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230287r743951_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230287r743951_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-010490\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The RHEL 8 SSH private host key files must have mode 0600 or less permissive.\",\n \"cdf:description\": \"<VulnDiscussion>If an unauthorized user obtains the private SSH host key file, the host could be impersonated.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the mode of SSH private host key files under \\\"/etc/ssh\\\" to \\\"0600\\\" with the following command:\\n\\n$ sudo chmod 0600 /etc/ssh/ssh_host*key\\n\\nThe SSH daemon must be restarted for the changes to take effect. To restart the SSH daemon, run the following command:\\n\\n$ sudo systemctl restart sshd.service\",\n \"fixref\": \"F-32931r743950_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-32931r743950_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:150\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:12" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"If other users have access to modify user-specific SSH configuration files, they may be able to log on to the system as another user.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230288", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230288r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:151", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32932r567611_fix", + "fixtext_fixref": "F-32932r567611_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230288r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230287r743951_rule", + "version": "RHEL-08-010490", + "time": "2021-12-17T10:30:12", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-32931r743950_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:150", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The RHEL 8 SSH daemon must perform strict mode checking of home directory configuration files.", + "id": "V-230288", + "desc": "If other users have access to modify user-specific SSH configuration files, they may be able to log on to the system as another user.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:151", + "label": "check" + }, + { + "data": "Configure SSH to perform strict mode checking of home directory configuration files. Uncomment the \"StrictModes\" keyword in \"/etc/ssh/sshd_config\" and set the value to \"yes\":\n\nStrictModes yes\n\nThe SSH daemon must be restarted for the changes to take effect. To restart the SSH daemon, run the following command:\n\n$ sudo systemctl restart sshd.service", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230288\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230288\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230288r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230288r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-010500\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The RHEL 8 SSH daemon must perform strict mode checking of home directory configuration files.\",\n \"cdf:description\": \"<VulnDiscussion>If other users have access to modify user-specific SSH configuration files, they may be able to log on to the system as another user.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure SSH to perform strict mode checking of home directory configuration files. Uncomment the \\\"StrictModes\\\" keyword in \\\"/etc/ssh/sshd_config\\\" and set the value to \\\"yes\\\":\\n\\nStrictModes yes\\n\\nThe SSH daemon must be restarted for the changes to take effect. To restart the SSH daemon, run the following command:\\n\\n$ sudo systemctl restart sshd.service\",\n \"fixref\": \"F-32932r567611_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-32932r567611_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:151\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:12" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"If compression is allowed in an SSH connection prior to authentication, vulnerabilities in the compression software could result in compromise of the system from an unauthenticated connection, potentially with root privileges.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230289", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230289r743954_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:152", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32933r743953_fix", + "fixtext_fixref": "F-32933r743953_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230289r743954_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230288r627750_rule", + "version": "RHEL-08-010500", + "time": "2021-12-17T10:30:12", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-32932r567611_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:151", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The RHEL 8 SSH daemon must not allow compression or must only allow compression after successful authentication.", + "id": "V-230289", + "desc": "If compression is allowed in an SSH connection prior to authentication, vulnerabilities in the compression software could result in compromise of the system from an unauthenticated connection, potentially with root privileges.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:152", + "label": "check" + }, + { + "data": "Uncomment the \"Compression\" keyword in \"/etc/ssh/sshd_config\" (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor) on the system and set the value to \"delayed\" or \"no\":\n\nCompression no\n\nThe SSH service must be restarted for changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230289\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230289\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230289r743954_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230289r743954_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-010510\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The RHEL 8 SSH daemon must not allow compression or must only allow compression after successful authentication.\",\n \"cdf:description\": \"<VulnDiscussion>If compression is allowed in an SSH connection prior to authentication, vulnerabilities in the compression software could result in compromise of the system from an unauthenticated connection, potentially with root privileges.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Uncomment the \\\"Compression\\\" keyword in \\\"/etc/ssh/sshd_config\\\" (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor) on the system and set the value to \\\"delayed\\\" or \\\"no\\\":\\n\\nCompression no\\n\\nThe SSH service must be restarted for changes to take effect.\",\n \"fixref\": \"F-32933r743953_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-32933r743953_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:152\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:12" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Configuring this setting for the SSH daemon provides additional assurance that remote logon via SSH will require a password, even in the event of misconfiguration elsewhere.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230290", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230290r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:153", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32934r567617_fix", + "fixtext_fixref": "F-32934r567617_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230290r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230289r743954_rule", + "version": "RHEL-08-010510", + "time": "2021-12-17T10:30:12", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-32933r743953_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:152", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The RHEL 8 SSH daemon must not allow authentication using known host's authentication.", + "id": "V-230290", + "desc": "Configuring this setting for the SSH daemon provides additional assurance that remote logon via SSH will require a password, even in the event of misconfiguration elsewhere.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:153", + "label": "check" + }, + { + "data": "Configure the SSH daemon to not allow authentication using known host's authentication.\n\nAdd the following line in \"/etc/ssh/sshd_config\", or uncomment the line and set the value to \"yes\":\n\nIgnoreUserKnownHosts yes\n\nThe SSH daemon must be restarted for the changes to take effect. To restart the SSH daemon, run the following command:\n\n$ sudo systemctl restart sshd.service", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230290\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230290\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230290r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230290r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-010520\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The RHEL 8 SSH daemon must not allow authentication using known host's authentication.\",\n \"cdf:description\": \"<VulnDiscussion>Configuring this setting for the SSH daemon provides additional assurance that remote logon via SSH will require a password, even in the event of misconfiguration elsewhere.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the SSH daemon to not allow authentication using known host's authentication.\\n\\nAdd the following line in \\\"/etc/ssh/sshd_config\\\", or uncomment the line and set the value to \\\"yes\\\":\\n\\nIgnoreUserKnownHosts yes\\n\\nThe SSH daemon must be restarted for the changes to take effect. To restart the SSH daemon, run the following command:\\n\\n$ sudo systemctl restart sshd.service\",\n \"fixref\": \"F-32934r567617_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-32934r567617_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:153\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:12" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Configuring these settings for the SSH daemon provides additional assurance that remote logon via SSH will not use unused methods of authentication, even in the event of misconfiguration elsewhere.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230291", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230291r743957_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:154", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32935r743956_fix", + "fixtext_fixref": "F-32935r743956_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230291r743957_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230290r627750_rule", + "version": "RHEL-08-010520", + "time": "2021-12-17T10:30:12", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-32934r567617_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:153", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The RHEL 8 SSH daemon must not allow Kerberos authentication, except to fulfill documented and validated mission requirements.", + "id": "V-230291", + "desc": "Configuring these settings for the SSH daemon provides additional assurance that remote logon via SSH will not use unused methods of authentication, even in the event of misconfiguration elsewhere.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:154", + "label": "check" + }, + { + "data": "Configure the SSH daemon to not allow Kerberos authentication.\n\nAdd the following line in \"/etc/ssh/sshd_config\", or uncomment the line and set the value to \"no\":\n\nKerberosAuthentication no\n\nThe SSH daemon must be restarted for the changes to take effect. To restart the SSH daemon, run the following command:\n\n$ sudo systemctl restart sshd.service", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230291\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230291\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230291r743957_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230291r743957_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-010521\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The RHEL 8 SSH daemon must not allow Kerberos authentication, except to fulfill documented and validated mission requirements.\",\n \"cdf:description\": \"<VulnDiscussion>Configuring these settings for the SSH daemon provides additional assurance that remote logon via SSH will not use unused methods of authentication, even in the event of misconfiguration elsewhere.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the SSH daemon to not allow Kerberos authentication.\\n\\nAdd the following line in \\\"/etc/ssh/sshd_config\\\", or uncomment the line and set the value to \\\"no\\\":\\n\\nKerberosAuthentication no\\n\\nThe SSH daemon must be restarted for the changes to take effect. To restart the SSH daemon, run the following command:\\n\\n$ sudo systemctl restart sshd.service\",\n \"fixref\": \"F-32935r743956_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-32935r743956_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:154\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:12" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "low", + "description": "{\"VulnDiscussion\":\"The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230292", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230292r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:155", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32936r567623_fix", + "fixtext_fixref": "F-32936r567623_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230292r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230291r743957_rule", + "version": "RHEL-08-010521", + "time": "2021-12-17T10:30:12", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-32935r743956_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:154", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must use a separate file system for /var.", + "id": "V-230292", + "desc": "The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:155", + "label": "check" + }, + { + "data": "Migrate the \"/var\" path onto a separate file system.", + "label": "fix" + } + ], + "impact": 0.3, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230292\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230292\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230292r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230292r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"low\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-010540\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must use a separate file system for /var.\",\n \"cdf:description\": \"<VulnDiscussion>The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Migrate the \\\"/var\\\" path onto a separate file system.\",\n \"fixref\": \"F-32936r567623_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-32936r567623_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:155\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:12" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "low", + "description": "{\"VulnDiscussion\":\"The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230293", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230293r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:156", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32937r567626_fix", + "fixtext_fixref": "F-32937r567626_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230293r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230292r627750_rule", + "version": "RHEL-08-010540", + "time": "2021-12-17T10:30:12", + "weight": "10.0", + "severity": "low", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-32936r567623_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:155", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must use a separate file system for /var/log.", + "id": "V-230293", + "desc": "The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:156", + "label": "check" + }, + { + "data": "Migrate the \"/var/log\" path onto a separate file system.", + "label": "fix" + } + ], + "impact": 0.3, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230293\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230293\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230293r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230293r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"low\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-010541\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must use a separate file system for /var/log.\",\n \"cdf:description\": \"<VulnDiscussion>The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Migrate the \\\"/var/log\\\" path onto a separate file system.\",\n \"fixref\": \"F-32937r567626_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-32937r567626_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:156\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:12" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "low", + "description": "{\"VulnDiscussion\":\"The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230294", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230294r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:157", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32938r567629_fix", + "fixtext_fixref": "F-32938r567629_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230294r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230293r627750_rule", + "version": "RHEL-08-010541", + "time": "2021-12-17T10:30:12", + "weight": "10.0", + "severity": "low", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-32937r567626_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:156", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must use a separate file system for the system audit data path.", + "id": "V-230294", + "desc": "The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:157", + "label": "check" + }, + { + "data": "Migrate the system audit data path onto a separate file system.", + "label": "fix" + } + ], + "impact": 0.3, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230294\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230294\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230294r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230294r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"low\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-010542\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must use a separate file system for the system audit data path.\",\n \"cdf:description\": \"<VulnDiscussion>The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Migrate the system audit data path onto a separate file system.\",\n \"fixref\": \"F-32938r567629_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-32938r567629_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:157\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:13" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230295", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230295r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:158", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32939r567632_fix", + "fixtext_fixref": "F-32939r567632_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230295r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230294r627750_rule", + "version": "RHEL-08-010542", + "time": "2021-12-17T10:30:13", + "weight": "10.0", + "severity": "low", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-32938r567629_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:157", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "A separate RHEL 8 filesystem must be used for the /tmp directory.", + "id": "V-230295", + "desc": "The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:158", + "label": "check" + }, + { + "data": "Migrate the \"/tmp\" directory onto a separate file system/partition.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230295\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230295\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230295r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230295r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-010543\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"A separate RHEL 8 filesystem must be used for the /tmp directory.\",\n \"cdf:description\": \"<VulnDiscussion>The use of separate file systems for different paths can protect the system from failures resulting from a file system becoming full or failing.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Migrate the \\\"/tmp\\\" directory onto a separate file system/partition.\",\n \"fixref\": \"F-32939r567632_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-32939r567632_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:158\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:13" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000770" + ], + "nist": [ + "IA-2 (5)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Even though the communications channel may be encrypted, an additional layer of security is gained by extending the policy of not logging on directly as root. In addition, logging on with a user-specific account provides individual accountability of actions performed on the system.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230296", + "group_title": "SRG-OS-000109-GPOS-00056", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230296r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:159", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32940r567635_fix", + "fixtext_fixref": "F-32940r567635_fix", + "ident": { + "text": "CCI-000770", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230296r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230295r627750_rule", + "version": "RHEL-08-010543", + "time": "2021-12-17T10:30:13", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-32939r567632_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:158", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must not permit direct logons to the root account using remote access via SSH.", + "id": "V-230296", + "desc": "Even though the communications channel may be encrypted, an additional layer of security is gained by extending the policy of not logging on directly as root. In addition, logging on with a user-specific account provides individual accountability of actions performed on the system.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:159", + "label": "check" + }, + { + "data": "Configure RHEL 8 to stop users from logging on remotely as the \"root\" user via SSH.\n\nEdit the appropriate \"/etc/ssh/sshd_config\" file to uncomment or add the line for the \"PermitRootLogin\" keyword and set its value to \"no\":\n\nPermitRootLogin no\n\nThe SSH daemon must be restarted for the changes to take effect. To restart the SSH daemon, run the following command:\n\n$ sudo systemctl restart sshd.service", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230296\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230296\",\n \"cdf:title\": \"SRG-OS-000109-GPOS-00056\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230296r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230296r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-010550\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must not permit direct logons to the root account using remote access via SSH.\",\n \"cdf:description\": \"<VulnDiscussion>Even though the communications channel may be encrypted, an additional layer of security is gained by extending the policy of not logging on directly as root. In addition, logging on with a user-specific account provides individual accountability of actions performed on the system.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000770\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure RHEL 8 to stop users from logging on remotely as the \\\"root\\\" user via SSH.\\n\\nEdit the appropriate \\\"/etc/ssh/sshd_config\\\" file to uncomment or add the line for the \\\"PermitRootLogin\\\" keyword and set its value to \\\"no\\\":\\n\\nPermitRootLogin no\\n\\nThe SSH daemon must be restarted for the changes to take effect. To restart the SSH daemon, run the following command:\\n\\n$ sudo systemctl restart sshd.service\",\n \"fixref\": \"F-32940r567635_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-32940r567635_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:159\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:13" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Configuring RHEL 8 to implement organization-wide security implementation guides and security checklists ensures compliance with federal standards and establishes a common security baseline across the DoD that reflects the most restrictive security posture consistent with operational requirements.\\n\\nConfiguration settings are the set of parameters that can be changed in hardware, software, or firmware components of the system that affect the security posture and/or functionality of the system. Security-related parameters are those parameters impacting the security state of the system, including the parameters required to satisfy other security control requirements. Security-related parameters include, for example: registry settings; account, file, directory permission settings; and settings for functions, ports, protocols, services, and remote connections.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230297", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230297r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:160", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32941r567638_fix", + "fixtext_fixref": "F-32941r567638_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230297r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230296r627750_rule", + "version": "RHEL-08-010550", + "time": "2021-12-17T10:30:13", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000770", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-32940r567635_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:159", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The auditd service must be running in RHEL 8.", + "id": "V-230297", + "desc": "Configuring RHEL 8 to implement organization-wide security implementation guides and security checklists ensures compliance with federal standards and establishes a common security baseline across the DoD that reflects the most restrictive security posture consistent with operational requirements.\n\nConfiguration settings are the set of parameters that can be changed in hardware, software, or firmware components of the system that affect the security posture and/or functionality of the system. Security-related parameters are those parameters impacting the security state of the system, including the parameters required to satisfy other security control requirements. Security-related parameters include, for example: registry settings; account, file, directory permission settings; and settings for functions, ports, protocols, services, and remote connections.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:160", + "label": "check" + }, + { + "data": "Start the auditd service, and enable the auditd service with the following commands:\n\n$ sudo systemctl start auditd.service\n\n$ sudo systemctl enable auditd.service", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230297\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230297\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230297r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230297r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-010560\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The auditd service must be running in RHEL 8.\",\n \"cdf:description\": \"<VulnDiscussion>Configuring RHEL 8 to implement organization-wide security implementation guides and security checklists ensures compliance with federal standards and establishes a common security baseline across the DoD that reflects the most restrictive security posture consistent with operational requirements.\\n\\nConfiguration settings are the set of parameters that can be changed in hardware, software, or firmware components of the system that affect the security posture and/or functionality of the system. Security-related parameters are those parameters impacting the security state of the system, including the parameters required to satisfy other security control requirements. Security-related parameters include, for example: registry settings; account, file, directory permission settings; and settings for functions, ports, protocols, services, and remote connections.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Start the auditd service, and enable the auditd service with the following commands:\\n\\n$ sudo systemctl start auditd.service\\n\\n$ sudo systemctl enable auditd.service\",\n \"fixref\": \"F-32941r567638_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-32941r567638_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:160\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:30:13" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Configuring RHEL 8 to implement organization-wide security implementation guides and security checklists ensures compliance with federal standards and establishes a common security baseline across the DoD that reflects the most restrictive security posture consistent with operational requirements.\\n\\nConfiguration settings are the set of parameters that can be changed in hardware, software, or firmware components of the system that affect the security posture and/or functionality of the system. Security-related parameters are those parameters impacting the security state of the system, including the parameters required to satisfy other security control requirements. Security-related parameters include, for example: registry settings; account, file, directory permission settings; and settings for functions, ports, protocols, services, and remote connections.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230298", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230298r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:161", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32942r567641_fix", + "fixtext_fixref": "F-32942r567641_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230298r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230297r627750_rule", + "version": "RHEL-08-010560", + "time": "2021-12-17T10:30:13", + "weight": "10.0", + "severity": "medium", + "cdf:result": "pass", + "cdf:ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-32941r567638_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:160", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The rsyslog service must be running in RHEL 8.", + "id": "V-230298", + "desc": "Configuring RHEL 8 to implement organization-wide security implementation guides and security checklists ensures compliance with federal standards and establishes a common security baseline across the DoD that reflects the most restrictive security posture consistent with operational requirements.\n\nConfiguration settings are the set of parameters that can be changed in hardware, software, or firmware components of the system that affect the security posture and/or functionality of the system. Security-related parameters are those parameters impacting the security state of the system, including the parameters required to satisfy other security control requirements. Security-related parameters include, for example: registry settings; account, file, directory permission settings; and settings for functions, ports, protocols, services, and remote connections.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:161", + "label": "check" + }, + { + "data": "Start the auditd service, and enable the rsyslog service with the following commands:\n\n$ sudo systemctl start rsyslog.service\n\n$ sudo systemctl enable rsyslog.service", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230298\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230298\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230298r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230298r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-010561\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The rsyslog service must be running in RHEL 8.\",\n \"cdf:description\": \"<VulnDiscussion>Configuring RHEL 8 to implement organization-wide security implementation guides and security checklists ensures compliance with federal standards and establishes a common security baseline across the DoD that reflects the most restrictive security posture consistent with operational requirements.\\n\\nConfiguration settings are the set of parameters that can be changed in hardware, software, or firmware components of the system that affect the security posture and/or functionality of the system. Security-related parameters are those parameters impacting the security state of the system, including the parameters required to satisfy other security control requirements. Security-related parameters include, for example: registry settings; account, file, directory permission settings; and settings for functions, ports, protocols, services, and remote connections.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Start the auditd service, and enable the rsyslog service with the following commands:\\n\\n$ sudo systemctl start rsyslog.service\\n\\n$ sudo systemctl enable rsyslog.service\",\n \"fixref\": \"F-32942r567641_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-32942r567641_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:161\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:30:16" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"The \\\"nosuid\\\" mount option causes the system not to execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230300", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230300r743959_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:162", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32944r567647_fix", + "fixtext_fixref": "F-32944r567647_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230300r743959_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230298r627750_rule", + "version": "RHEL-08-010561", + "time": "2021-12-17T10:30:16", + "weight": "10.0", + "severity": "medium", + "cdf:result": "pass", + "cdf:ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-32942r567641_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:161", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must prevent files with the setuid and setgid bit set from being executed on the /boot directory.", + "id": "V-230300", + "desc": "The \"nosuid\" mount option causes the system not to execute \"setuid\" and \"setgid\" files with owner privileges. This option must be used for mounting any file system not containing approved \"setuid\" and \"setguid\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:162", + "label": "check" + }, + { + "data": "Configure the \"/etc/fstab\" to use the \"nosuid\" option on the /boot directory.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230300\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230300\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230300r743959_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230300r743959_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-010571\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must prevent files with the setuid and setgid bit set from being executed on the /boot directory.\",\n \"cdf:description\": \"<VulnDiscussion>The \\\"nosuid\\\" mount option causes the system not to execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the \\\"/etc/fstab\\\" to use the \\\"nosuid\\\" option on the /boot directory.\",\n \"fixref\": \"F-32944r567647_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-32944r567647_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:162\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:30:19" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"The \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access. The only legitimate location for device files is the /dev directory located on the root partition.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230301", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230301r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:163", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32945r567650_fix", + "fixtext_fixref": "F-32945r567650_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230301r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230300r743959_rule", + "version": "RHEL-08-010571", + "time": "2021-12-17T10:30:19", + "weight": "10.0", + "severity": "medium", + "cdf:result": "pass", + "cdf:ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-32944r567647_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:162", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must prevent special devices on non-root local partitions.", + "id": "V-230301", + "desc": "The \"nodev\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access. The only legitimate location for device files is the /dev directory located on the root partition.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:163", + "label": "check" + }, + { + "data": "Configure the \"/etc/fstab\" to use the \"nodev\" option on all non-root local partitions.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230301\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230301\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230301r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230301r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-010580\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must prevent special devices on non-root local partitions.\",\n \"cdf:description\": \"<VulnDiscussion>The \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access. The only legitimate location for device files is the /dev directory located on the root partition.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the \\\"/etc/fstab\\\" to use the \\\"nodev\\\" option on all non-root local partitions.\",\n \"fixref\": \"F-32945r567650_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-32945r567650_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:163\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:19" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"The \\\"noexec\\\" mount option causes the system not to execute binary files. This option must be used for mounting any file system not containing approved binary as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230306", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230306r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:165", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32950r567665_fix", + "fixtext_fixref": "F-32950r567665_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230306r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230301r627750_rule", + "version": "RHEL-08-010580", + "time": "2021-12-17T10:30:19", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-32945r567650_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:163", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must prevent code from being executed on file systems that are imported via Network File System (NFS).", + "id": "V-230306", + "desc": "The \"noexec\" mount option causes the system not to execute binary files. This option must be used for mounting any file system not containing approved binary as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:165", + "label": "check" + }, + { + "data": "Configure the \"/etc/fstab\" to use the \"noexec\" option on file systems that are being imported via NFS.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230306\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230306\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230306r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230306r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-010630\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must prevent code from being executed on file systems that are imported via Network File System (NFS).\",\n \"cdf:description\": \"<VulnDiscussion>The \\\"noexec\\\" mount option causes the system not to execute binary files. This option must be used for mounting any file system not containing approved binary as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the \\\"/etc/fstab\\\" to use the \\\"noexec\\\" option on file systems that are being imported via NFS.\",\n \"fixref\": \"F-32950r567665_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-32950r567665_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:165\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:30:21" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"The \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230307", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230307r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:166", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32951r567668_fix", + "fixtext_fixref": "F-32951r567668_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230307r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230306r627750_rule", + "version": "RHEL-08-010630", + "time": "2021-12-17T10:30:21", + "weight": "10.0", + "severity": "medium", + "cdf:result": "pass", + "cdf:ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-32950r567665_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:165", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must prevent special devices on file systems that are imported via Network File System (NFS).", + "id": "V-230307", + "desc": "The \"nodev\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:166", + "label": "check" + }, + { + "data": "Configure the \"/etc/fstab\" to use the \"nodev\" option on file systems that are being imported via NFS.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230307\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230307\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230307r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230307r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-010640\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must prevent special devices on file systems that are imported via Network File System (NFS).\",\n \"cdf:description\": \"<VulnDiscussion>The \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the \\\"/etc/fstab\\\" to use the \\\"nodev\\\" option on file systems that are being imported via NFS.\",\n \"fixref\": \"F-32951r567668_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-32951r567668_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:166\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:30:21" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"The \\\"nosuid\\\" mount option causes the system not to execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230308", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230308r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:167", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32952r567671_fix", + "fixtext_fixref": "F-32952r567671_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230308r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230307r627750_rule", + "version": "RHEL-08-010640", + "time": "2021-12-17T10:30:21", + "weight": "10.0", + "severity": "medium", + "cdf:result": "pass", + "cdf:ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-32951r567668_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:166", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must prevent files with the setuid and setgid bit set from being executed on file systems that are imported via Network File System (NFS).", + "id": "V-230308", + "desc": "The \"nosuid\" mount option causes the system not to execute \"setuid\" and \"setgid\" files with owner privileges. This option must be used for mounting any file system not containing approved \"setuid\" and \"setguid\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:167", + "label": "check" + }, + { + "data": "Configure the \"/etc/fstab\" to use the \"nosuid\" option on file systems that are being imported via NFS.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230308\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230308\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230308r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230308r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-010650\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must prevent files with the setuid and setgid bit set from being executed on file systems that are imported via Network File System (NFS).\",\n \"cdf:description\": \"<VulnDiscussion>The \\\"nosuid\\\" mount option causes the system not to execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the \\\"/etc/fstab\\\" to use the \\\"nosuid\\\" option on file systems that are being imported via NFS.\",\n \"fixref\": \"F-32952r567671_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-32952r567671_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:167\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:30:21" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230311", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230311r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:168", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32955r567680_fix", + "fixtext_fixref": "F-32955r567680_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230311r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230308r627750_rule", + "version": "RHEL-08-010650", + "time": "2021-12-17T10:30:21", + "weight": "10.0", + "severity": "medium", + "cdf:result": "pass", + "cdf:ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-32952r567671_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:167", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must disable the kernel.core_pattern.", + "id": "V-230311", + "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:168", + "label": "check" + }, + { + "data": "Configure RHEL 8 to disable storing core dumps by adding the following line to a file in the \"/etc/sysctl.d\" directory:\n\nkernel.core_pattern = |/bin/false\n\nThe system configuration files need to be reloaded for the changes to take effect. To reload the contents of the files, run the following command:\n\n$ sudo sysctl --system", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230311\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230311\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230311r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230311r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-010671\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must disable the kernel.core_pattern.\",\n \"cdf:description\": \"<VulnDiscussion>It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure RHEL 8 to disable storing core dumps by adding the following line to a file in the \\\"/etc/sysctl.d\\\" directory:\\n\\nkernel.core_pattern = |/bin/false\\n\\nThe system configuration files need to be reloaded for the changes to take effect. To reload the contents of the files, run the following command:\\n\\n$ sudo sysctl --system\",\n \"fixref\": \"F-32955r567680_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-32955r567680_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:168\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:21" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nA core dump includes a memory image taken at the time the operating system terminates an application. The memory image could contain sensitive data and is generally useful only for developers trying to debug problems.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230313", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230313r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:169", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32957r619861_fix", + "fixtext_fixref": "F-32957r619861_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230313r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230311r627750_rule", + "version": "RHEL-08-010671", + "time": "2021-12-17T10:30:21", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-32955r567680_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:168", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must disable core dumps for all users.", + "id": "V-230313", + "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nA core dump includes a memory image taken at the time the operating system terminates an application. The memory image could contain sensitive data and is generally useful only for developers trying to debug problems.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:169", + "label": "check" + }, + { + "data": "Configure the operating system to disable core dumps for all users.\n\nAdd the following line to the top of the /etc/security/limits.conf or in a \".conf\" file defined in /etc/security/limits.d/:\n\n* hard core 0", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230313\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230313\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230313r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230313r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-010673\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must disable core dumps for all users.\",\n \"cdf:description\": \"<VulnDiscussion>It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nA core dump includes a memory image taken at the time the operating system terminates an application. The memory image could contain sensitive data and is generally useful only for developers trying to debug problems.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to disable core dumps for all users.\\n\\nAdd the following line to the top of the /etc/security/limits.conf or in a \\\".conf\\\" file defined in /etc/security/limits.d/:\\n\\n* hard core 0\",\n \"fixref\": \"F-32957r619861_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-32957r619861_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:169\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:21" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nA core dump includes a memory image taken at the time the operating system terminates an application. The memory image could contain sensitive data and is generally useful only for developers trying to debug problems.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230314", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230314r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:170", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32958r567689_fix", + "fixtext_fixref": "F-32958r567689_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230314r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230313r627750_rule", + "version": "RHEL-08-010673", + "time": "2021-12-17T10:30:21", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-32957r619861_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:169", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must disable storing core dumps.", + "id": "V-230314", + "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nA core dump includes a memory image taken at the time the operating system terminates an application. The memory image could contain sensitive data and is generally useful only for developers trying to debug problems.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:170", + "label": "check" + }, + { + "data": "Configure the operating system to disable storing core dumps for all users.\n\nAdd or modify the following line in /etc/systemd/coredump.conf:\n\nStorage=none", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230314\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230314\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230314r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230314r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-010674\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must disable storing core dumps.\",\n \"cdf:description\": \"<VulnDiscussion>It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nA core dump includes a memory image taken at the time the operating system terminates an application. The memory image could contain sensitive data and is generally useful only for developers trying to debug problems.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to disable storing core dumps for all users.\\n\\nAdd or modify the following line in /etc/systemd/coredump.conf:\\n\\nStorage=none\",\n \"fixref\": \"F-32958r567689_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-32958r567689_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:170\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:21" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nA core dump includes a memory image taken at the time the operating system terminates an application. The memory image could contain sensitive data and is generally useful only for developers trying to debug problems.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230315", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230315r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:171", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32959r567692_fix", + "fixtext_fixref": "F-32959r567692_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230315r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230314r627750_rule", + "version": "RHEL-08-010674", + "time": "2021-12-17T10:30:21", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-32958r567689_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:170", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must disable core dump backtraces.", + "id": "V-230315", + "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nA core dump includes a memory image taken at the time the operating system terminates an application. The memory image could contain sensitive data and is generally useful only for developers trying to debug problems.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:171", + "label": "check" + }, + { + "data": "Configure the operating system to disable core dump backtraces.\n\nAdd or modify the following line in /etc/systemd/coredump.conf:\n\nProcessSizeMax=0", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230315\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230315\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230315r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230315r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-010675\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must disable core dump backtraces.\",\n \"cdf:description\": \"<VulnDiscussion>It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nA core dump includes a memory image taken at the time the operating system terminates an application. The memory image could contain sensitive data and is generally useful only for developers trying to debug problems.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to disable core dump backtraces.\\n\\nAdd or modify the following line in /etc/systemd/coredump.conf:\\n\\nProcessSizeMax=0\",\n \"fixref\": \"F-32959r567692_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-32959r567692_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:171\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:21" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"If local interactive users are not assigned a valid home directory, there is no place for the storage and control of files they should own.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230324", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230324r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:177", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32968r567719_fix", + "fixtext_fixref": "F-32968r567719_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230324r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230315r627750_rule", + "version": "RHEL-08-010675", + "time": "2021-12-17T10:30:21", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-32959r567692_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:171", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "All RHEL 8 local interactive user accounts must be assigned a home directory upon creation.", + "id": "V-230324", + "desc": "If local interactive users are not assigned a valid home directory, there is no place for the storage and control of files they should own.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:177", + "label": "check" + }, + { + "data": "Configure RHEL 8 to assign home directories to all new local interactive users by setting the \"CREATE_HOME\" parameter in \"/etc/login.defs\" to \"yes\" as follows.\n\nCREATE_HOME yes", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230324\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230324\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230324r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230324r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-010760\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"All RHEL 8 local interactive user accounts must be assigned a home directory upon creation.\",\n \"cdf:description\": \"<VulnDiscussion>If local interactive users are not assigned a valid home directory, there is no place for the storage and control of files they should own.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure RHEL 8 to assign home directories to all new local interactive users by setting the \\\"CREATE_HOME\\\" parameter in \\\"/etc/login.defs\\\" to \\\"yes\\\" as follows.\\n\\nCREATE_HOME yes\",\n \"fixref\": \"F-32968r567719_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-32968r567719_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:177\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:30:21" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"SSH environment options potentially allow users to bypass access restriction in some configurations.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230330", + "group_title": "SRG-OS-000480-GPOS-00229", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230330r646870_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:179", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32974r567737_fix", + "fixtext_fixref": "F-32974r567737_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230330r646870_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230324r627750_rule", + "version": "RHEL-08-010760", + "time": "2021-12-17T10:30:21", + "weight": "10.0", + "severity": "medium", + "cdf:result": "pass", + "cdf:ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-32968r567719_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:177", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must not allow users to override SSH environment variables.", + "id": "V-230330", + "desc": "SSH environment options potentially allow users to bypass access restriction in some configurations.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:179", + "label": "check" + }, + { + "data": "Configure RHEL 8 to allow the SSH daemon to not allow unattended or automatic logon to the system.\n\nAdd or edit the following line in the \"/etc/ssh/sshd_config\" file:\n\nPermitUserEnvironment no\n\nThe SSH daemon must be restarted for the changes to take effect. To restart the SSH daemon, run the following command:\n\n$ sudo systemctl restart sshd.service", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230330\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230330\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00229\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230330r646870_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230330r646870_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-010830\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must not allow users to override SSH environment variables.\",\n \"cdf:description\": \"<VulnDiscussion>SSH environment options potentially allow users to bypass access restriction in some configurations.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure RHEL 8 to allow the SSH daemon to not allow unattended or automatic logon to the system.\\n\\nAdd or edit the following line in the \\\"/etc/ssh/sshd_config\\\" file:\\n\\nPermitUserEnvironment no\\n\\nThe SSH daemon must be restarted for the changes to take effect. To restart the SSH daemon, run the following command:\\n\\n$ sudo systemctl restart sshd.service\",\n \"fixref\": \"F-32974r567737_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-32974r567737_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:179\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:21" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000044" + ], + "nist": [ + "AC-7 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\\n\\nRHEL 8 can utilize the \\\"pam_faillock.so\\\" for this purpose. Note that manual changes to the listed files may be overwritten by the \\\"authselect\\\" program.\\n\\nFrom \\\"Pam_Faillock\\\" man pages: Note that the default directory that \\\"pam_faillock\\\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \\\"dir\\\" option.\\n\\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230332", + "group_title": "SRG-OS-000021-GPOS-00005", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230332r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:180", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32976r567743_fix", + "fixtext_fixref": "F-32976r567743_fix", + "ident": { + "text": "CCI-000044", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230332r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230330r646870_rule", + "version": "RHEL-08-010830", + "time": "2021-12-17T10:30:21", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-32974r567737_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:179", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must automatically lock an account when three unsuccessful logon attempts occur.", + "id": "V-230332", + "desc": "By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\n\nRHEL 8 can utilize the \"pam_faillock.so\" for this purpose. Note that manual changes to the listed files may be overwritten by the \"authselect\" program.\n\nFrom \"Pam_Faillock\" man pages: Note that the default directory that \"pam_faillock\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \"dir\" option.\n\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:180", + "label": "check" + }, + { + "data": "Configure the operating system to lock an account when three unsuccessful logon attempts occur.\n\nAdd/Modify the appropriate sections of the \"/etc/pam.d/system-auth\" and \"/etc/pam.d/password-auth\" files to match the following lines:\n\nauth required pam_faillock.so preauth dir=/var/log/faillock silent audit deny=3 even_deny_root fail_interval=900 unlock_time=0\nauth required pam_faillock.so authfail dir=/var/log/faillock unlock_time=0\naccount required pam_faillock.so\n\nThe \"sssd\" service must be restarted for the changes to take effect. To restart the \"sssd\" service, run the following command:\n\n$ sudo systemctl restart sssd.service", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230332\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230332\",\n \"cdf:title\": \"SRG-OS-000021-GPOS-00005\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230332r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230332r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-020010\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must automatically lock an account when three unsuccessful logon attempts occur.\",\n \"cdf:description\": \"<VulnDiscussion>By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\\n\\nRHEL 8 can utilize the \\\"pam_faillock.so\\\" for this purpose. Note that manual changes to the listed files may be overwritten by the \\\"authselect\\\" program.\\n\\nFrom \\\"Pam_Faillock\\\" man pages: Note that the default directory that \\\"pam_faillock\\\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \\\"dir\\\" option.\\n\\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000044\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to lock an account when three unsuccessful logon attempts occur.\\n\\nAdd/Modify the appropriate sections of the \\\"/etc/pam.d/system-auth\\\" and \\\"/etc/pam.d/password-auth\\\" files to match the following lines:\\n\\nauth required pam_faillock.so preauth dir=/var/log/faillock silent audit deny=3 even_deny_root fail_interval=900 unlock_time=0\\nauth required pam_faillock.so authfail dir=/var/log/faillock unlock_time=0\\naccount required pam_faillock.so\\n\\nThe \\\"sssd\\\" service must be restarted for the changes to take effect. To restart the \\\"sssd\\\" service, run the following command:\\n\\n$ sudo systemctl restart sssd.service\",\n \"fixref\": \"F-32976r567743_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-32976r567743_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:180\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:21" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000044" + ], + "nist": [ + "AC-7 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\\n\\nIn RHEL 8.2 the \\\"/etc/security/faillock.conf\\\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \\\"local_users_only\\\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\\n\\nFrom \\\"faillock.conf\\\" man pages: Note that the default directory that \\\"pam_faillock\\\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \\\"dir\\\" option.\\n\\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230333", + "group_title": "SRG-OS-000021-GPOS-00005", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230333r743966_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:181", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32977r743965_fix", + "fixtext_fixref": "F-32977r743965_fix", + "ident": { + "text": "CCI-000044", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230333r743966_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230332r627750_rule", + "version": "RHEL-08-020010", + "time": "2021-12-17T10:30:21", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000044", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-32976r567743_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:180", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must automatically lock an account when three unsuccessful logon attempts occur.", + "id": "V-230333", + "desc": "By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\n\nIn RHEL 8.2 the \"/etc/security/faillock.conf\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \"local_users_only\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\n\nFrom \"faillock.conf\" man pages: Note that the default directory that \"pam_faillock\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \"dir\" option.\n\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:181", + "label": "check" + }, + { + "data": "Configure the operating system to lock an account when three unsuccessful logon attempts occur.\n\nAdd/Modify the \"/etc/security/faillock.conf\" file to match the following line:\n\ndeny = 3", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230333\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230333\",\n \"cdf:title\": \"SRG-OS-000021-GPOS-00005\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230333r743966_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230333r743966_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-020011\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must automatically lock an account when three unsuccessful logon attempts occur.\",\n \"cdf:description\": \"<VulnDiscussion>By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\\n\\nIn RHEL 8.2 the \\\"/etc/security/faillock.conf\\\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \\\"local_users_only\\\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\\n\\nFrom \\\"faillock.conf\\\" man pages: Note that the default directory that \\\"pam_faillock\\\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \\\"dir\\\" option.\\n\\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000044\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to lock an account when three unsuccessful logon attempts occur.\\n\\nAdd/Modify the \\\"/etc/security/faillock.conf\\\" file to match the following line:\\n\\ndeny = 3\",\n \"fixref\": \"F-32977r743965_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-32977r743965_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:181\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:21" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000044" + ], + "nist": [ + "AC-7 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\\n\\nRHEL 8 can utilize the \\\"pam_faillock.so\\\" for this purpose. Note that manual changes to the listed files may be overwritten by the \\\"authselect\\\" program.\\n\\nFrom \\\"Pam_Faillock\\\" man pages: Note that the default directory that \\\"pam_faillock\\\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \\\"dir\\\" option.\\n\\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230334", + "group_title": "SRG-OS-000021-GPOS-00005", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230334r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:182", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32978r567749_fix", + "fixtext_fixref": "F-32978r567749_fix", + "ident": { + "text": "CCI-000044", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230334r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230333r743966_rule", + "version": "RHEL-08-020011", + "time": "2021-12-17T10:30:21", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000044", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-32977r743965_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:181", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must automatically lock an account when three unsuccessful logon attempts occur during a 15-minute time period.", + "id": "V-230334", + "desc": "By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\n\nRHEL 8 can utilize the \"pam_faillock.so\" for this purpose. Note that manual changes to the listed files may be overwritten by the \"authselect\" program.\n\nFrom \"Pam_Faillock\" man pages: Note that the default directory that \"pam_faillock\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \"dir\" option.\n\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:182", + "label": "check" + }, + { + "data": "Configure the operating system to lock an account when three unsuccessful logon attempts occur in 15 minutes.\n\nAdd/Modify the appropriate sections of the \"/etc/pam.d/system-auth\" and \"/etc/pam.d/password-auth\" files to match the following lines:\n\nauth required pam_faillock.so preauth dir=/var/log/faillock silent audit deny=3 even_deny_root fail_interval=900 unlock_time=0\nauth required pam_faillock.so authfail dir=/var/log/faillock unlock_time=0\naccount required pam_faillock.so\n\nThe \"sssd\" service must be restarted for the changes to take effect. To restart the \"sssd\" service, run the following command:\n\n$ sudo systemctl restart sssd.service", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230334\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230334\",\n \"cdf:title\": \"SRG-OS-000021-GPOS-00005\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230334r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230334r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-020012\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must automatically lock an account when three unsuccessful logon attempts occur during a 15-minute time period.\",\n \"cdf:description\": \"<VulnDiscussion>By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\\n\\nRHEL 8 can utilize the \\\"pam_faillock.so\\\" for this purpose. Note that manual changes to the listed files may be overwritten by the \\\"authselect\\\" program.\\n\\nFrom \\\"Pam_Faillock\\\" man pages: Note that the default directory that \\\"pam_faillock\\\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \\\"dir\\\" option.\\n\\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000044\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to lock an account when three unsuccessful logon attempts occur in 15 minutes.\\n\\nAdd/Modify the appropriate sections of the \\\"/etc/pam.d/system-auth\\\" and \\\"/etc/pam.d/password-auth\\\" files to match the following lines:\\n\\nauth required pam_faillock.so preauth dir=/var/log/faillock silent audit deny=3 even_deny_root fail_interval=900 unlock_time=0\\nauth required pam_faillock.so authfail dir=/var/log/faillock unlock_time=0\\naccount required pam_faillock.so\\n\\nThe \\\"sssd\\\" service must be restarted for the changes to take effect. To restart the \\\"sssd\\\" service, run the following command:\\n\\n$ sudo systemctl restart sssd.service\",\n \"fixref\": \"F-32978r567749_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-32978r567749_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:182\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:21" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000044" + ], + "nist": [ + "AC-7 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\\n\\nIn RHEL 8.2 the \\\"/etc/security/faillock.conf\\\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \\\"local_users_only\\\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\\n\\nFrom \\\"faillock.conf\\\" man pages: Note that the default directory that \\\"pam_faillock\\\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \\\"dir\\\" option.\\n\\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230335", + "group_title": "SRG-OS-000021-GPOS-00005", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230335r743969_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:183", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32979r743968_fix", + "fixtext_fixref": "F-32979r743968_fix", + "ident": { + "text": "CCI-000044", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230335r743969_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230334r627750_rule", + "version": "RHEL-08-020012", + "time": "2021-12-17T10:30:21", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000044", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-32978r567749_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:182", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must automatically lock an account when three unsuccessful logon attempts occur during a 15-minute time period.", + "id": "V-230335", + "desc": "By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\n\nIn RHEL 8.2 the \"/etc/security/faillock.conf\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \"local_users_only\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\n\nFrom \"faillock.conf\" man pages: Note that the default directory that \"pam_faillock\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \"dir\" option.\n\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:183", + "label": "check" + }, + { + "data": "Configure the operating system to lock an account when three unsuccessful logon attempts occur in 15 minutes.\n\nAdd/Modify the \"/etc/security/faillock.conf\" file to match the following line:\n\nfail_interval = 900", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230335\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230335\",\n \"cdf:title\": \"SRG-OS-000021-GPOS-00005\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230335r743969_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230335r743969_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-020013\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must automatically lock an account when three unsuccessful logon attempts occur during a 15-minute time period.\",\n \"cdf:description\": \"<VulnDiscussion>By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\\n\\nIn RHEL 8.2 the \\\"/etc/security/faillock.conf\\\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \\\"local_users_only\\\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\\n\\nFrom \\\"faillock.conf\\\" man pages: Note that the default directory that \\\"pam_faillock\\\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \\\"dir\\\" option.\\n\\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000044\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to lock an account when three unsuccessful logon attempts occur in 15 minutes.\\n\\nAdd/Modify the \\\"/etc/security/faillock.conf\\\" file to match the following line:\\n\\nfail_interval = 900\",\n \"fixref\": \"F-32979r743968_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-32979r743968_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:183\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:21" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000044" + ], + "nist": [ + "AC-7 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\\n\\nRHEL 8 can utilize the \\\"pam_faillock.so\\\" for this purpose. Note that manual changes to the listed files may be overwritten by the \\\"authselect\\\" program.\\n\\nFrom \\\"Pam_Faillock\\\" man pages: Note that the default directory that \\\"pam_faillock\\\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \\\"dir\\\" option.\\n\\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230336", + "group_title": "SRG-OS-000021-GPOS-00005", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230336r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:184", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32980r567755_fix", + "fixtext_fixref": "F-32980r567755_fix", + "ident": { + "text": "CCI-000044", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230336r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230335r743969_rule", + "version": "RHEL-08-020013", + "time": "2021-12-17T10:30:21", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000044", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-32979r743968_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:183", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must automatically lock an account until the locked account is released by an administrator when three unsuccessful logon attempts occur during a 15-minute time period.", + "id": "V-230336", + "desc": "By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\n\nRHEL 8 can utilize the \"pam_faillock.so\" for this purpose. Note that manual changes to the listed files may be overwritten by the \"authselect\" program.\n\nFrom \"Pam_Faillock\" man pages: Note that the default directory that \"pam_faillock\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \"dir\" option.\n\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:184", + "label": "check" + }, + { + "data": "Configure the operating system to lock an account until released by an administrator when three unsuccessful logon attempts occur in 15 minutes.\n\nAdd/Modify the appropriate sections of the \"/etc/pam.d/system-auth\" and \"/etc/pam.d/password-auth\" files to match the following lines:\n\nauth required pam_faillock.so preauth dir=/var/log/faillock silent audit deny=3 even_deny_root fail_interval=900 unlock_time=0\nauth required pam_faillock.so authfail dir=/var/log/faillock unlock_time=0\naccount required pam_faillock.so\n\nThe \"sssd\" service must be restarted for the changes to take effect. To restart the \"sssd\" service, run the following command:\n\n$ sudo systemctl restart sssd.service", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230336\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230336\",\n \"cdf:title\": \"SRG-OS-000021-GPOS-00005\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230336r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230336r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-020014\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must automatically lock an account until the locked account is released by an administrator when three unsuccessful logon attempts occur during a 15-minute time period.\",\n \"cdf:description\": \"<VulnDiscussion>By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\\n\\nRHEL 8 can utilize the \\\"pam_faillock.so\\\" for this purpose. Note that manual changes to the listed files may be overwritten by the \\\"authselect\\\" program.\\n\\nFrom \\\"Pam_Faillock\\\" man pages: Note that the default directory that \\\"pam_faillock\\\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \\\"dir\\\" option.\\n\\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000044\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to lock an account until released by an administrator when three unsuccessful logon attempts occur in 15 minutes.\\n\\nAdd/Modify the appropriate sections of the \\\"/etc/pam.d/system-auth\\\" and \\\"/etc/pam.d/password-auth\\\" files to match the following lines:\\n\\nauth required pam_faillock.so preauth dir=/var/log/faillock silent audit deny=3 even_deny_root fail_interval=900 unlock_time=0\\nauth required pam_faillock.so authfail dir=/var/log/faillock unlock_time=0\\naccount required pam_faillock.so\\n\\nThe \\\"sssd\\\" service must be restarted for the changes to take effect. To restart the \\\"sssd\\\" service, run the following command:\\n\\n$ sudo systemctl restart sssd.service\",\n \"fixref\": \"F-32980r567755_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-32980r567755_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:184\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:21" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000044" + ], + "nist": [ + "AC-7 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\\n\\nIn RHEL 8.2 the \\\"/etc/security/faillock.conf\\\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \\\"local_users_only\\\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\\n\\nFrom \\\"faillock.conf\\\" man pages: Note that the default directory that \\\"pam_faillock\\\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \\\"dir\\\" option.\\n\\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230337", + "group_title": "SRG-OS-000021-GPOS-00005", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230337r743972_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:185", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32981r743971_fix", + "fixtext_fixref": "F-32981r743971_fix", + "ident": { + "text": "CCI-000044", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230337r743972_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230336r627750_rule", + "version": "RHEL-08-020014", + "time": "2021-12-17T10:30:21", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000044", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-32980r567755_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:184", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must automatically lock an account until the locked account is released by an administrator when three unsuccessful logon attempts occur during a 15-minute time period.", + "id": "V-230337", + "desc": "By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\n\nIn RHEL 8.2 the \"/etc/security/faillock.conf\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \"local_users_only\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\n\nFrom \"faillock.conf\" man pages: Note that the default directory that \"pam_faillock\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \"dir\" option.\n\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:185", + "label": "check" + }, + { + "data": "Configure the operating system to lock an account until released by an administrator when three unsuccessful logon attempts occur in 15 minutes.\n\nAdd/Modify the \"/etc/security/faillock.conf\" file to match the following line:\n\nunlock_time = 0", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230337\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230337\",\n \"cdf:title\": \"SRG-OS-000021-GPOS-00005\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230337r743972_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230337r743972_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-020015\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must automatically lock an account until the locked account is released by an administrator when three unsuccessful logon attempts occur during a 15-minute time period.\",\n \"cdf:description\": \"<VulnDiscussion>By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\\n\\nIn RHEL 8.2 the \\\"/etc/security/faillock.conf\\\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \\\"local_users_only\\\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\\n\\nFrom \\\"faillock.conf\\\" man pages: Note that the default directory that \\\"pam_faillock\\\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \\\"dir\\\" option.\\n\\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000044\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to lock an account until released by an administrator when three unsuccessful logon attempts occur in 15 minutes.\\n\\nAdd/Modify the \\\"/etc/security/faillock.conf\\\" file to match the following line:\\n\\nunlock_time = 0\",\n \"fixref\": \"F-32981r743971_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-32981r743971_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:185\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:22" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000044" + ], + "nist": [ + "AC-7 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\\n\\nRHEL 8 can utilize the \\\"pam_faillock.so\\\" for this purpose. Note that manual changes to the listed files may be overwritten by the \\\"authselect\\\" program.\\n\\nFrom \\\"Pam_Faillock\\\" man pages: Note that the default directory that \\\"pam_faillock\\\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \\\"dir\\\" option.\\n\\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230340", + "group_title": "SRG-OS-000021-GPOS-00005", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230340r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:186", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32984r567767_fix", + "fixtext_fixref": "F-32984r567767_fix", + "ident": { + "text": "CCI-000044", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230340r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230337r743972_rule", + "version": "RHEL-08-020015", + "time": "2021-12-17T10:30:22", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000044", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-32981r743971_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:185", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must prevent system messages from being presented when three unsuccessful logon attempts occur.", + "id": "V-230340", + "desc": "By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\n\nRHEL 8 can utilize the \"pam_faillock.so\" for this purpose. Note that manual changes to the listed files may be overwritten by the \"authselect\" program.\n\nFrom \"Pam_Faillock\" man pages: Note that the default directory that \"pam_faillock\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \"dir\" option.\n\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:186", + "label": "check" + }, + { + "data": "Configure the operating system to prevent informative messages from being presented at logon attempts.\n\nAdd/Modify the appropriate sections of the \"/etc/pam.d/system-auth\" and \"/etc/pam.d/password-auth\" files to match the following lines:\n\nauth required pam_faillock.so preauth dir=/var/log/faillock silent audit deny=3 even_deny_root fail_interval=900 unlock_time=0\nauth required pam_faillock.so authfail dir=/var/log/faillock unlock_time=0\naccount required pam_faillock.so\n\nThe \"sssd\" service must be restarted for the changes to take effect. To restart the \"sssd\" service, run the following command:\n\n$ sudo systemctl restart sssd.service", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230340\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230340\",\n \"cdf:title\": \"SRG-OS-000021-GPOS-00005\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230340r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230340r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-020018\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must prevent system messages from being presented when three unsuccessful logon attempts occur.\",\n \"cdf:description\": \"<VulnDiscussion>By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\\n\\nRHEL 8 can utilize the \\\"pam_faillock.so\\\" for this purpose. Note that manual changes to the listed files may be overwritten by the \\\"authselect\\\" program.\\n\\nFrom \\\"Pam_Faillock\\\" man pages: Note that the default directory that \\\"pam_faillock\\\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \\\"dir\\\" option.\\n\\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000044\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to prevent informative messages from being presented at logon attempts.\\n\\nAdd/Modify the appropriate sections of the \\\"/etc/pam.d/system-auth\\\" and \\\"/etc/pam.d/password-auth\\\" files to match the following lines:\\n\\nauth required pam_faillock.so preauth dir=/var/log/faillock silent audit deny=3 even_deny_root fail_interval=900 unlock_time=0\\nauth required pam_faillock.so authfail dir=/var/log/faillock unlock_time=0\\naccount required pam_faillock.so\\n\\nThe \\\"sssd\\\" service must be restarted for the changes to take effect. To restart the \\\"sssd\\\" service, run the following command:\\n\\n$ sudo systemctl restart sssd.service\",\n \"fixref\": \"F-32984r567767_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-32984r567767_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:186\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:22" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000044" + ], + "nist": [ + "AC-7 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\\n\\nIn RHEL 8.2 the \\\"/etc/security/faillock.conf\\\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \\\"local_users_only\\\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\\n\\nFrom \\\"faillock.conf\\\" man pages: Note that the default directory that \\\"pam_faillock\\\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \\\"dir\\\" option.\\n\\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230341", + "group_title": "SRG-OS-000021-GPOS-00005", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230341r743978_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:187", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32985r743977_fix", + "fixtext_fixref": "F-32985r743977_fix", + "ident": { + "text": "CCI-000044", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230341r743978_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230340r627750_rule", + "version": "RHEL-08-020018", + "time": "2021-12-17T10:30:22", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000044", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-32984r567767_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:186", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must prevent system messages from being presented when three unsuccessful logon attempts occur.", + "id": "V-230341", + "desc": "By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\n\nIn RHEL 8.2 the \"/etc/security/faillock.conf\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \"local_users_only\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\n\nFrom \"faillock.conf\" man pages: Note that the default directory that \"pam_faillock\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \"dir\" option.\n\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:187", + "label": "check" + }, + { + "data": "Configure the operating system to prevent informative messages from being presented at logon attempts.\n\nAdd/Modify the \"/etc/security/faillock.conf\" file to match the following line:\n\nsilent", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230341\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230341\",\n \"cdf:title\": \"SRG-OS-000021-GPOS-00005\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230341r743978_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230341r743978_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-020019\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must prevent system messages from being presented when three unsuccessful logon attempts occur.\",\n \"cdf:description\": \"<VulnDiscussion>By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\\n\\nIn RHEL 8.2 the \\\"/etc/security/faillock.conf\\\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \\\"local_users_only\\\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\\n\\nFrom \\\"faillock.conf\\\" man pages: Note that the default directory that \\\"pam_faillock\\\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \\\"dir\\\" option.\\n\\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000044\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to prevent informative messages from being presented at logon attempts.\\n\\nAdd/Modify the \\\"/etc/security/faillock.conf\\\" file to match the following line:\\n\\nsilent\",\n \"fixref\": \"F-32985r743977_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-32985r743977_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:187\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:22" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000044" + ], + "nist": [ + "AC-7 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\\n\\nRHEL 8 can utilize the \\\"pam_faillock.so\\\" for this purpose. Note that manual changes to the listed files may be overwritten by the \\\"authselect\\\" program.\\n\\nFrom \\\"Pam_Faillock\\\" man pages: Note that the default directory that \\\"pam_faillock\\\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \\\"dir\\\" option.\\n\\nIn RHEL 8.2 the \\\"/etc/security/faillock.conf\\\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \\\"local_users_only\\\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\\n\\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230342", + "group_title": "SRG-OS-000021-GPOS-00005", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230342r646872_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:188", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32986r567773_fix", + "fixtext_fixref": "F-32986r567773_fix", + "ident": { + "text": "CCI-000044", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230342r646872_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230341r743978_rule", + "version": "RHEL-08-020019", + "time": "2021-12-17T10:30:22", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000044", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-32985r743977_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:187", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must log user name information when unsuccessful logon attempts occur.", + "id": "V-230342", + "desc": "By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\n\nRHEL 8 can utilize the \"pam_faillock.so\" for this purpose. Note that manual changes to the listed files may be overwritten by the \"authselect\" program.\n\nFrom \"Pam_Faillock\" man pages: Note that the default directory that \"pam_faillock\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \"dir\" option.\n\nIn RHEL 8.2 the \"/etc/security/faillock.conf\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \"local_users_only\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\n\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:188", + "label": "check" + }, + { + "data": "Configure the operating system to log user name information when unsuccessful logon attempts occur.\n\nAdd/Modify the appropriate sections of the \"/etc/pam.d/system-auth\" and \"/etc/pam.d/password-auth\" files to match the following lines:\n\nauth required pam_faillock.so preauth dir=/var/log/faillock silent audit deny=3 even_deny_root fail_interval=900 unlock_time=0\nauth required pam_faillock.so authfail dir=/var/log/faillock unlock_time=0\naccount required pam_faillock.so\n\nThe \"sssd\" service must be restarted for the changes to take effect. To restart the \"sssd\" service, run the following command:\n\n$ sudo systemctl restart sssd.service", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230342\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230342\",\n \"cdf:title\": \"SRG-OS-000021-GPOS-00005\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230342r646872_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230342r646872_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-020020\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must log user name information when unsuccessful logon attempts occur.\",\n \"cdf:description\": \"<VulnDiscussion>By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\\n\\nRHEL 8 can utilize the \\\"pam_faillock.so\\\" for this purpose. Note that manual changes to the listed files may be overwritten by the \\\"authselect\\\" program.\\n\\nFrom \\\"Pam_Faillock\\\" man pages: Note that the default directory that \\\"pam_faillock\\\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \\\"dir\\\" option.\\n\\nIn RHEL 8.2 the \\\"/etc/security/faillock.conf\\\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \\\"local_users_only\\\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\\n\\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000044\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to log user name information when unsuccessful logon attempts occur.\\n\\nAdd/Modify the appropriate sections of the \\\"/etc/pam.d/system-auth\\\" and \\\"/etc/pam.d/password-auth\\\" files to match the following lines:\\n\\nauth required pam_faillock.so preauth dir=/var/log/faillock silent audit deny=3 even_deny_root fail_interval=900 unlock_time=0\\nauth required pam_faillock.so authfail dir=/var/log/faillock unlock_time=0\\naccount required pam_faillock.so\\n\\nThe \\\"sssd\\\" service must be restarted for the changes to take effect. To restart the \\\"sssd\\\" service, run the following command:\\n\\n$ sudo systemctl restart sssd.service\",\n \"fixref\": \"F-32986r567773_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-32986r567773_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:188\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:22" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000044" + ], + "nist": [ + "AC-7 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\\n\\nIn RHEL 8.2 the \\\"/etc/security/faillock.conf\\\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \\\"local_users_only\\\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\\n\\nFrom \\\"faillock.conf\\\" man pages: Note that the default directory that \\\"pam_faillock\\\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \\\"dir\\\" option.\\n\\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230343", + "group_title": "SRG-OS-000021-GPOS-00005", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230343r743981_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:189", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32987r743980_fix", + "fixtext_fixref": "F-32987r743980_fix", + "ident": { + "text": "CCI-000044", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230343r743981_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230342r646872_rule", + "version": "RHEL-08-020020", + "time": "2021-12-17T10:30:22", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000044", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-32986r567773_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:188", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must log user name information when unsuccessful logon attempts occur.", + "id": "V-230343", + "desc": "By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\n\nIn RHEL 8.2 the \"/etc/security/faillock.conf\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \"local_users_only\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\n\nFrom \"faillock.conf\" man pages: Note that the default directory that \"pam_faillock\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \"dir\" option.\n\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:189", + "label": "check" + }, + { + "data": "Configure the operating system to log user name information when unsuccessful logon attempts occur.\n\nAdd/Modify the \"/etc/security/faillock.conf\" file to match the following line:\n\naudit", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230343\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230343\",\n \"cdf:title\": \"SRG-OS-000021-GPOS-00005\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230343r743981_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230343r743981_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-020021\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must log user name information when unsuccessful logon attempts occur.\",\n \"cdf:description\": \"<VulnDiscussion>By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\\n\\nIn RHEL 8.2 the \\\"/etc/security/faillock.conf\\\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \\\"local_users_only\\\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\\n\\nFrom \\\"faillock.conf\\\" man pages: Note that the default directory that \\\"pam_faillock\\\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \\\"dir\\\" option.\\n\\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000044\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to log user name information when unsuccessful logon attempts occur.\\n\\nAdd/Modify the \\\"/etc/security/faillock.conf\\\" file to match the following line:\\n\\naudit\",\n \"fixref\": \"F-32987r743980_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-32987r743980_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:189\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:22" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000044" + ], + "nist": [ + "AC-7 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\\n\\nRHEL 8 can utilize the \\\"pam_faillock.so\\\" for this purpose. Note that manual changes to the listed files may be overwritten by the \\\"authselect\\\" program.\\n\\nFrom \\\"Pam_Faillock\\\" man pages: Note that the default directory that \\\"pam_faillock\\\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \\\"dir\\\" option.\\n\\nIn RHEL 8.2 the \\\"/etc/security/faillock.conf\\\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \\\"local_users_only\\\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\\n\\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230344", + "group_title": "SRG-OS-000021-GPOS-00005", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230344r646874_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:190", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32988r567779_fix", + "fixtext_fixref": "F-32988r567779_fix", + "ident": { + "text": "CCI-000044", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230344r646874_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230343r743981_rule", + "version": "RHEL-08-020021", + "time": "2021-12-17T10:30:22", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000044", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-32987r743980_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:189", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must include root when automatically locking an account until the locked account is released by an administrator when three unsuccessful logon attempts occur during a 15-minute time period.", + "id": "V-230344", + "desc": "By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\n\nRHEL 8 can utilize the \"pam_faillock.so\" for this purpose. Note that manual changes to the listed files may be overwritten by the \"authselect\" program.\n\nFrom \"Pam_Faillock\" man pages: Note that the default directory that \"pam_faillock\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \"dir\" option.\n\nIn RHEL 8.2 the \"/etc/security/faillock.conf\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \"local_users_only\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\n\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:190", + "label": "check" + }, + { + "data": "Configure the operating system to include root when locking an account after three unsuccessful logon attempts occur in 15 minutes.\n\nAdd/Modify the appropriate sections of the \"/etc/pam.d/system-auth\" and \"/etc/pam.d/password-auth\" files to match the following lines:\n\nauth required pam_faillock.so preauth dir=/var/log/faillock silent audit deny=3 even_deny_root fail_interval=900 unlock_time=0\nauth required pam_faillock.so authfail dir=/var/log/faillock unlock_time=0\naccount required pam_faillock.so\n\nThe \"sssd\" service must be restarted for the changes to take effect. To restart the \"sssd\" service, run the following command:\n\n$ sudo systemctl restart sssd.service", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230344\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230344\",\n \"cdf:title\": \"SRG-OS-000021-GPOS-00005\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230344r646874_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230344r646874_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-020022\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must include root when automatically locking an account until the locked account is released by an administrator when three unsuccessful logon attempts occur during a 15-minute time period.\",\n \"cdf:description\": \"<VulnDiscussion>By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\\n\\nRHEL 8 can utilize the \\\"pam_faillock.so\\\" for this purpose. Note that manual changes to the listed files may be overwritten by the \\\"authselect\\\" program.\\n\\nFrom \\\"Pam_Faillock\\\" man pages: Note that the default directory that \\\"pam_faillock\\\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \\\"dir\\\" option.\\n\\nIn RHEL 8.2 the \\\"/etc/security/faillock.conf\\\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \\\"local_users_only\\\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\\n\\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000044\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to include root when locking an account after three unsuccessful logon attempts occur in 15 minutes.\\n\\nAdd/Modify the appropriate sections of the \\\"/etc/pam.d/system-auth\\\" and \\\"/etc/pam.d/password-auth\\\" files to match the following lines:\\n\\nauth required pam_faillock.so preauth dir=/var/log/faillock silent audit deny=3 even_deny_root fail_interval=900 unlock_time=0\\nauth required pam_faillock.so authfail dir=/var/log/faillock unlock_time=0\\naccount required pam_faillock.so\\n\\nThe \\\"sssd\\\" service must be restarted for the changes to take effect. To restart the \\\"sssd\\\" service, run the following command:\\n\\n$ sudo systemctl restart sssd.service\",\n \"fixref\": \"F-32988r567779_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-32988r567779_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:190\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:22" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000044" + ], + "nist": [ + "AC-7 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\\n\\nIn RHEL 8.2 the \\\"/etc/security/faillock.conf\\\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \\\"local_users_only\\\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\\n\\nFrom \\\"faillock.conf\\\" man pages: Note that the default directory that \\\"pam_faillock\\\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \\\"dir\\\" option.\\n\\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230345", + "group_title": "SRG-OS-000021-GPOS-00005", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230345r743984_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:191", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32989r743983_fix", + "fixtext_fixref": "F-32989r743983_fix", + "ident": { + "text": "CCI-000044", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230345r743984_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230344r646874_rule", + "version": "RHEL-08-020022", + "time": "2021-12-17T10:30:22", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000044", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-32988r567779_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:190", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must include root when automatically locking an account until the locked account is released by an administrator when three unsuccessful logon attempts occur during a 15-minute time period.", + "id": "V-230345", + "desc": "By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\n\nIn RHEL 8.2 the \"/etc/security/faillock.conf\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \"local_users_only\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\n\nFrom \"faillock.conf\" man pages: Note that the default directory that \"pam_faillock\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \"dir\" option.\n\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:191", + "label": "check" + }, + { + "data": "Configure the operating system to include root when locking an account after three unsuccessful logon attempts occur in 15 minutes.\n\nAdd/Modify the \"/etc/security/faillock.conf\" file to match the following line:\n\neven_deny_root", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230345\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230345\",\n \"cdf:title\": \"SRG-OS-000021-GPOS-00005\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230345r743984_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230345r743984_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-020023\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must include root when automatically locking an account until the locked account is released by an administrator when three unsuccessful logon attempts occur during a 15-minute time period.\",\n \"cdf:description\": \"<VulnDiscussion>By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account.\\n\\nIn RHEL 8.2 the \\\"/etc/security/faillock.conf\\\" file was incorporated to centralize the configuration of the pam_faillock.so module. Also introduced is a \\\"local_users_only\\\" option that will only track failed user authentication attempts for local users in /etc/passwd and ignore centralized (AD, IdM, LDAP, etc.) users to allow the centralized platform to solely manage user lockout.\\n\\nFrom \\\"faillock.conf\\\" man pages: Note that the default directory that \\\"pam_faillock\\\" uses is usually cleared on system boot so the access will be reenabled after system reboot. If that is undesirable a different tally directory must be set with the \\\"dir\\\" option.\\n\\nSatisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000044\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to include root when locking an account after three unsuccessful logon attempts occur in 15 minutes.\\n\\nAdd/Modify the \\\"/etc/security/faillock.conf\\\" file to match the following line:\\n\\neven_deny_root\",\n \"fixref\": \"F-32989r743983_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-32989r743983_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:191\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:22" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000054" + ], + "nist": [ + "AC-10" + ], + "severity": "low", + "description": "{\"VulnDiscussion\":\"Operating system management includes the ability to control the number of users and user sessions that utilize an operating system. Limiting the number of allowed users and sessions per user is helpful in reducing the risks related to DoS attacks.\\n\\nThis requirement addresses concurrent sessions for information system accounts and does not address concurrent sessions by single users via multiple system accounts. The maximum number of concurrent sessions should be defined based on mission needs and the operational environment for each system.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230346", + "group_title": "SRG-OS-000027-GPOS-00008", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230346r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:192", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32990r619863_fix", + "fixtext_fixref": "F-32990r619863_fix", + "ident": { + "text": "CCI-000054", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230346r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230345r743984_rule", + "version": "RHEL-08-020023", + "time": "2021-12-17T10:30:22", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000044", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-32989r743983_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:191", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must limit the number of concurrent sessions to ten for all accounts and/or account types.", + "id": "V-230346", + "desc": "Operating system management includes the ability to control the number of users and user sessions that utilize an operating system. Limiting the number of allowed users and sessions per user is helpful in reducing the risks related to DoS attacks.\n\nThis requirement addresses concurrent sessions for information system accounts and does not address concurrent sessions by single users via multiple system accounts. The maximum number of concurrent sessions should be defined based on mission needs and the operational environment for each system.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:192", + "label": "check" + }, + { + "data": "Configure the operating system to limit the number of concurrent sessions to \"10\" for all accounts and/or account types.\n\nAdd the following line to the top of the /etc/security/limits.conf or in a \".conf\" file defined in /etc/security/limits.d/:\n\n* hard maxlogins 10", + "label": "fix" + } + ], + "impact": 0.3, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230346\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230346\",\n \"cdf:title\": \"SRG-OS-000027-GPOS-00008\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230346r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230346r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"low\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-020024\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must limit the number of concurrent sessions to ten for all accounts and/or account types.\",\n \"cdf:description\": \"<VulnDiscussion>Operating system management includes the ability to control the number of users and user sessions that utilize an operating system. Limiting the number of allowed users and sessions per user is helpful in reducing the risks related to DoS attacks.\\n\\nThis requirement addresses concurrent sessions for information system accounts and does not address concurrent sessions by single users via multiple system accounts. The maximum number of concurrent sessions should be defined based on mission needs and the operational environment for each system.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000054\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to limit the number of concurrent sessions to \\\"10\\\" for all accounts and/or account types.\\n\\nAdd the following line to the top of the /etc/security/limits.conf or in a \\\".conf\\\" file defined in /etc/security/limits.d/:\\n\\n* hard maxlogins 10\",\n \"fixref\": \"F-32990r619863_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-32990r619863_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:192\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:22" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000056" + ], + "nist": [ + "AC-11 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"A session lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not want to log out because of the temporary nature of the absence.\\n\\nThe session lock is implemented at the point where session activity can be determined. Rather than be forced to wait for a period of time to expire before the user session can be locked, RHEL 8 needs to provide users with the ability to manually invoke a session lock so users can secure their session if it is necessary to temporarily vacate the immediate physical vicinity.\\n\\nTmux is a terminal multiplexer that enables a number of terminals to be created, accessed, and controlled from a single screen. Red Hat endorses tmux as the recommended session controlling package.\\n\\nSatisfies: SRG-OS-000028-GPOS-00009, SRG-OS-000030-GPOS-00011\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230348", + "group_title": "SRG-OS-000028-GPOS-00009", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230348r743987_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:193", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32992r743986_fix", + "fixtext_fixref": "F-32992r743986_fix", + "ident": { + "text": "CCI-000056", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230348r743987_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230346r627750_rule", + "version": "RHEL-08-020024", + "time": "2021-12-17T10:30:22", + "weight": "10.0", + "severity": "low", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000054", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-32990r619863_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:192", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must enable a user session lock until that user re-establishes access using established identification and authentication procedures for command line sessions.", + "id": "V-230348", + "desc": "A session lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not want to log out because of the temporary nature of the absence.\n\nThe session lock is implemented at the point where session activity can be determined. Rather than be forced to wait for a period of time to expire before the user session can be locked, RHEL 8 needs to provide users with the ability to manually invoke a session lock so users can secure their session if it is necessary to temporarily vacate the immediate physical vicinity.\n\nTmux is a terminal multiplexer that enables a number of terminals to be created, accessed, and controlled from a single screen. Red Hat endorses tmux as the recommended session controlling package.\n\nSatisfies: SRG-OS-000028-GPOS-00009, SRG-OS-000030-GPOS-00011", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:193", + "label": "check" + }, + { + "data": "Configure the operating system to enable a user to initiate a session lock via tmux.\n\nCreate a global configuration file \"/etc/tmux.conf\" and add the following line:\n\nset -g lock-command vlock", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230348\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230348\",\n \"cdf:title\": \"SRG-OS-000028-GPOS-00009\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230348r743987_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230348r743987_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-020040\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must enable a user session lock until that user re-establishes access using established identification and authentication procedures for command line sessions.\",\n \"cdf:description\": \"<VulnDiscussion>A session lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not want to log out because of the temporary nature of the absence.\\n\\nThe session lock is implemented at the point where session activity can be determined. Rather than be forced to wait for a period of time to expire before the user session can be locked, RHEL 8 needs to provide users with the ability to manually invoke a session lock so users can secure their session if it is necessary to temporarily vacate the immediate physical vicinity.\\n\\nTmux is a terminal multiplexer that enables a number of terminals to be created, accessed, and controlled from a single screen. Red Hat endorses tmux as the recommended session controlling package.\\n\\nSatisfies: SRG-OS-000028-GPOS-00009, SRG-OS-000030-GPOS-00011</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000056\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to enable a user to initiate a session lock via tmux.\\n\\nCreate a global configuration file \\\"/etc/tmux.conf\\\" and add the following line:\\n\\nset -g lock-command vlock\",\n \"fixref\": \"F-32992r743986_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-32992r743986_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:193\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:22" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000056" + ], + "nist": [ + "AC-11 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"A session lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not want to log out because of the temporary nature of the absence.\\n\\nThe session lock is implemented at the point where session activity can be determined. Rather than be forced to wait for a period of time to expire before the user session can be locked, RHEL 8 needs to provide users with the ability to manually invoke a session lock so users can secure their session if it is necessary to temporarily vacate the immediate physical vicinity.\\n\\nTmux is a terminal multiplexer that enables a number of terminals to be created, accessed, and controlled from a single screen. Red Hat endorses tmux as the recommended session controlling package.\\n\\nSatisfies: SRG-OS-000028-GPOS-00009, SRG-OS-000030-GPOS-00011\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230349", + "group_title": "SRG-OS-000028-GPOS-00009", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230349r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:194", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32993r567794_fix", + "fixtext_fixref": "F-32993r567794_fix", + "ident": { + "text": "CCI-000056", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230349r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230348r743987_rule", + "version": "RHEL-08-020040", + "time": "2021-12-17T10:30:22", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000056", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-32992r743986_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:193", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must ensure session control is automatically started at shell initialization.", + "id": "V-230349", + "desc": "A session lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not want to log out because of the temporary nature of the absence.\n\nThe session lock is implemented at the point where session activity can be determined. Rather than be forced to wait for a period of time to expire before the user session can be locked, RHEL 8 needs to provide users with the ability to manually invoke a session lock so users can secure their session if it is necessary to temporarily vacate the immediate physical vicinity.\n\nTmux is a terminal multiplexer that enables a number of terminals to be created, accessed, and controlled from a single screen. Red Hat endorses tmux as the recommended session controlling package.\n\nSatisfies: SRG-OS-000028-GPOS-00009, SRG-OS-000030-GPOS-00011", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:194", + "label": "check" + }, + { + "data": "Configure the operating system to initialize the tmux terminal multiplexer as each shell is called by adding the following line to the end of the \"/etc/bashrc\" configuration file:\n\n[ -n \"$PS1\" -a -z \"$TMUX\" ] && exec tmux\n\nThis setting will take effect at next logon.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230349\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230349\",\n \"cdf:title\": \"SRG-OS-000028-GPOS-00009\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230349r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230349r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-020041\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must ensure session control is automatically started at shell initialization.\",\n \"cdf:description\": \"<VulnDiscussion>A session lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not want to log out because of the temporary nature of the absence.\\n\\nThe session lock is implemented at the point where session activity can be determined. Rather than be forced to wait for a period of time to expire before the user session can be locked, RHEL 8 needs to provide users with the ability to manually invoke a session lock so users can secure their session if it is necessary to temporarily vacate the immediate physical vicinity.\\n\\nTmux is a terminal multiplexer that enables a number of terminals to be created, accessed, and controlled from a single screen. Red Hat endorses tmux as the recommended session controlling package.\\n\\nSatisfies: SRG-OS-000028-GPOS-00009, SRG-OS-000030-GPOS-00011</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000056\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to initialize the tmux terminal multiplexer as each shell is called by adding the following line to the end of the \\\"/etc/bashrc\\\" configuration file:\\n\\n[ -n \\\"$PS1\\\" -a -z \\\"$TMUX\\\" ] && exec tmux\\n\\nThis setting will take effect at next logon.\",\n \"fixref\": \"F-32993r567794_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-32993r567794_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:194\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:22" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000056" + ], + "nist": [ + "AC-11 b" + ], + "severity": "low", + "description": "{\"VulnDiscussion\":\"A session lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not want to log out because of the temporary nature of the absence.\\n\\nThe session lock is implemented at the point where session activity can be determined. Rather than be forced to wait for a period of time to expire before the user session can be locked, RHEL 8 needs to provide users with the ability to manually invoke a session lock so users can secure their session if it is necessary to temporarily vacate the immediate physical vicinity.\\n\\nTmux is a terminal multiplexer that enables a number of terminals to be created, accessed, and controlled from a single screen. Red Hat endorses tmux as the recommended session controlling package.\\n\\nSatisfies: SRG-OS-000028-GPOS-00009, SRG-OS-000030-GPOS-00011\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230350", + "group_title": "SRG-OS-000028-GPOS-00009", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230350r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:195", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-32994r567797_fix", + "fixtext_fixref": "F-32994r567797_fix", + "ident": { + "text": "CCI-000056", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230350r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230349r627750_rule", + "version": "RHEL-08-020041", + "time": "2021-12-17T10:30:22", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000056", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-32993r567794_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:194", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must prevent users from disabling session control mechanisms.", + "id": "V-230350", + "desc": "A session lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not want to log out because of the temporary nature of the absence.\n\nThe session lock is implemented at the point where session activity can be determined. Rather than be forced to wait for a period of time to expire before the user session can be locked, RHEL 8 needs to provide users with the ability to manually invoke a session lock so users can secure their session if it is necessary to temporarily vacate the immediate physical vicinity.\n\nTmux is a terminal multiplexer that enables a number of terminals to be created, accessed, and controlled from a single screen. Red Hat endorses tmux as the recommended session controlling package.\n\nSatisfies: SRG-OS-000028-GPOS-00009, SRG-OS-000030-GPOS-00011", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:195", + "label": "check" + }, + { + "data": "Configure the operating system to prevent users from disabling the tmux terminal multiplexer by editing the \"/etc/shells\" configuration file to remove any instances of tmux.", + "label": "fix" + } + ], + "impact": 0.3, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230350\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230350\",\n \"cdf:title\": \"SRG-OS-000028-GPOS-00009\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230350r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230350r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"low\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-020042\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must prevent users from disabling session control mechanisms.\",\n \"cdf:description\": \"<VulnDiscussion>A session lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not want to log out because of the temporary nature of the absence.\\n\\nThe session lock is implemented at the point where session activity can be determined. Rather than be forced to wait for a period of time to expire before the user session can be locked, RHEL 8 needs to provide users with the ability to manually invoke a session lock so users can secure their session if it is necessary to temporarily vacate the immediate physical vicinity.\\n\\nTmux is a terminal multiplexer that enables a number of terminals to be created, accessed, and controlled from a single screen. Red Hat endorses tmux as the recommended session controlling package.\\n\\nSatisfies: SRG-OS-000028-GPOS-00009, SRG-OS-000030-GPOS-00011</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000056\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to prevent users from disabling the tmux terminal multiplexer by editing the \\\"/etc/shells\\\" configuration file to remove any instances of tmux.\",\n \"fixref\": \"F-32994r567797_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-32994r567797_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:195\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:30:22" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000192" + ], + "nist": [ + "IA-5 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. \\\"pwquality\\\" enforces complex password construction configuration and has the ability to limit brute-force attacks on the system.\\n\\nRHEL 8 utilizes \\\"pwquality\\\" as a mechanism to enforce password complexity. This is set in both:\\n/etc/pam.d/password-auth\\n/etc/pam.d/system-auth\\n\\nNote the value of \\\"retry\\\" set in these configuration files should be between \\\"1\\\" and \\\"3\\\". Manual changes to the listed files may be overwritten by the \\\"authselect\\\" program.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230356", + "group_title": "SRG-OS-000069-GPOS-00037", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230356r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:196", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33000r567815_fix", + "fixtext_fixref": "F-33000r567815_fix", + "ident": { + "text": "CCI-000192", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230356r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230350r627750_rule", + "version": "RHEL-08-020042", + "time": "2021-12-17T10:30:22", + "weight": "10.0", + "severity": "low", + "cdf:result": "pass", + "cdf:ident": { + "text": "CCI-000056", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-32994r567797_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:195", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must ensure a password complexity module is enabled.", + "id": "V-230356", + "desc": "Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. \"pwquality\" enforces complex password construction configuration and has the ability to limit brute-force attacks on the system.\n\nRHEL 8 utilizes \"pwquality\" as a mechanism to enforce password complexity. This is set in both:\n/etc/pam.d/password-auth\n/etc/pam.d/system-auth\n\nNote the value of \"retry\" set in these configuration files should be between \"1\" and \"3\". Manual changes to the listed files may be overwritten by the \"authselect\" program.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:196", + "label": "check" + }, + { + "data": "Configure the operating system to use \"pwquality\" to enforce password complexity rules.\n\nAdd the following line to both \"/etc/pam.d/password-auth\" and \"/etc/pam.d/system-auth\" (or modify the line to have the required value):\n\npassword required pam_pwquality.so retry=3", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230356\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230356\",\n \"cdf:title\": \"SRG-OS-000069-GPOS-00037\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230356r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230356r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-020100\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must ensure a password complexity module is enabled.\",\n \"cdf:description\": \"<VulnDiscussion>Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. \\\"pwquality\\\" enforces complex password construction configuration and has the ability to limit brute-force attacks on the system.\\n\\nRHEL 8 utilizes \\\"pwquality\\\" as a mechanism to enforce password complexity. This is set in both:\\n/etc/pam.d/password-auth\\n/etc/pam.d/system-auth\\n\\nNote the value of \\\"retry\\\" set in these configuration files should be between \\\"1\\\" and \\\"3\\\". Manual changes to the listed files may be overwritten by the \\\"authselect\\\" program.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000192\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to use \\\"pwquality\\\" to enforce password complexity rules.\\n\\nAdd the following line to both \\\"/etc/pam.d/password-auth\\\" and \\\"/etc/pam.d/system-auth\\\" (or modify the line to have the required value):\\n\\npassword required pam_pwquality.so retry=3\",\n \"fixref\": \"F-33000r567815_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33000r567815_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:196\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:22" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000192" + ], + "nist": [ + "IA-5 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\\n\\nRHEL 8 utilizes pwquality as a mechanism to enforce password complexity. Note that in order to require uppercase characters, without degrading the \\\"minlen\\\" value, the credit value must be expressed as a negative number in \\\"/etc/security/pwquality.conf\\\".\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230357", + "group_title": "SRG-OS-000069-GPOS-00037", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230357r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:197", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33001r567818_fix", + "fixtext_fixref": "F-33001r567818_fix", + "ident": { + "text": "CCI-000192", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230357r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230356r627750_rule", + "version": "RHEL-08-020100", + "time": "2021-12-17T10:30:22", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000192", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33000r567815_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:196", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must enforce password complexity by requiring that at least one uppercase character be used.", + "id": "V-230357", + "desc": "Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\n\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\n\nRHEL 8 utilizes pwquality as a mechanism to enforce password complexity. Note that in order to require uppercase characters, without degrading the \"minlen\" value, the credit value must be expressed as a negative number in \"/etc/security/pwquality.conf\".", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:197", + "label": "check" + }, + { + "data": "Configure the operating system to enforce password complexity by requiring that at least one uppercase character be used by setting the \"ucredit\" option.\n\nAdd the following line to /etc/security/pwquality.conf (or modify the line to have the required value):\n\nucredit = -1", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230357\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230357\",\n \"cdf:title\": \"SRG-OS-000069-GPOS-00037\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230357r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230357r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-020110\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must enforce password complexity by requiring that at least one uppercase character be used.\",\n \"cdf:description\": \"<VulnDiscussion>Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\\n\\nRHEL 8 utilizes pwquality as a mechanism to enforce password complexity. Note that in order to require uppercase characters, without degrading the \\\"minlen\\\" value, the credit value must be expressed as a negative number in \\\"/etc/security/pwquality.conf\\\".</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000192\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to enforce password complexity by requiring that at least one uppercase character be used by setting the \\\"ucredit\\\" option.\\n\\nAdd the following line to /etc/security/pwquality.conf (or modify the line to have the required value):\\n\\nucredit = -1\",\n \"fixref\": \"F-33001r567818_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33001r567818_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:197\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:22" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000193" + ], + "nist": [ + "IA-5 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\\n\\nRHEL 8 utilizes pwquality as a mechanism to enforce password complexity. Note that in order to require lower-case characters without degrading the \\\"minlen\\\" value, the credit value must be expressed as a negative number in \\\"/etc/security/pwquality.conf\\\".\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230358", + "group_title": "SRG-OS-000070-GPOS-00038", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230358r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:198", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33002r567821_fix", + "fixtext_fixref": "F-33002r567821_fix", + "ident": { + "text": "CCI-000193", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230358r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230357r627750_rule", + "version": "RHEL-08-020110", + "time": "2021-12-17T10:30:22", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000192", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33001r567818_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:197", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must enforce password complexity by requiring that at least one lower-case character be used.", + "id": "V-230358", + "desc": "Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\n\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\n\nRHEL 8 utilizes pwquality as a mechanism to enforce password complexity. Note that in order to require lower-case characters without degrading the \"minlen\" value, the credit value must be expressed as a negative number in \"/etc/security/pwquality.conf\".", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:198", + "label": "check" + }, + { + "data": "Configure the operating system to enforce password complexity by requiring that at least one lower-case character be used by setting the \"lcredit\" option.\n\nAdd the following line to /etc/security/pwquality.conf (or modify the line to have the required value):\n\nlcredit = -1", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230358\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230358\",\n \"cdf:title\": \"SRG-OS-000070-GPOS-00038\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230358r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230358r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-020120\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must enforce password complexity by requiring that at least one lower-case character be used.\",\n \"cdf:description\": \"<VulnDiscussion>Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\\n\\nRHEL 8 utilizes pwquality as a mechanism to enforce password complexity. Note that in order to require lower-case characters without degrading the \\\"minlen\\\" value, the credit value must be expressed as a negative number in \\\"/etc/security/pwquality.conf\\\".</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000193\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to enforce password complexity by requiring that at least one lower-case character be used by setting the \\\"lcredit\\\" option.\\n\\nAdd the following line to /etc/security/pwquality.conf (or modify the line to have the required value):\\n\\nlcredit = -1\",\n \"fixref\": \"F-33002r567821_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33002r567821_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:198\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:22" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000194" + ], + "nist": [ + "IA-5 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\\n\\nRHEL 8 utilizes \\\"pwquality\\\" as a mechanism to enforce password complexity. Note that in order to require numeric characters, without degrading the minlen value, the credit value must be expressed as a negative number in \\\"/etc/security/pwquality.conf\\\".\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230359", + "group_title": "SRG-OS-000071-GPOS-00039", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230359r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:199", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33003r567824_fix", + "fixtext_fixref": "F-33003r567824_fix", + "ident": { + "text": "CCI-000194", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230359r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230358r627750_rule", + "version": "RHEL-08-020120", + "time": "2021-12-17T10:30:22", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000193", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33002r567821_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:198", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must enforce password complexity by requiring that at least one numeric character be used.", + "id": "V-230359", + "desc": "Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\n\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\n\nRHEL 8 utilizes \"pwquality\" as a mechanism to enforce password complexity. Note that in order to require numeric characters, without degrading the minlen value, the credit value must be expressed as a negative number in \"/etc/security/pwquality.conf\".", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:199", + "label": "check" + }, + { + "data": "Configure the operating system to enforce password complexity by requiring that at least one numeric character be used by setting the \"dcredit\" option.\n\nAdd the following line to /etc/security/pwquality.conf (or modify the line to have the required value):\n\ndcredit = -1", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230359\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230359\",\n \"cdf:title\": \"SRG-OS-000071-GPOS-00039\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230359r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230359r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-020130\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must enforce password complexity by requiring that at least one numeric character be used.\",\n \"cdf:description\": \"<VulnDiscussion>Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\\n\\nRHEL 8 utilizes \\\"pwquality\\\" as a mechanism to enforce password complexity. Note that in order to require numeric characters, without degrading the minlen value, the credit value must be expressed as a negative number in \\\"/etc/security/pwquality.conf\\\".</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000194\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to enforce password complexity by requiring that at least one numeric character be used by setting the \\\"dcredit\\\" option.\\n\\nAdd the following line to /etc/security/pwquality.conf (or modify the line to have the required value):\\n\\ndcredit = -1\",\n \"fixref\": \"F-33003r567824_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33003r567824_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:199\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:22" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000195" + ], + "nist": [ + "IA-5 (1) (b)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\\n\\nRHEL 8 utilizes \\\"pwquality\\\" as a mechanism to enforce password complexity. The \\\"maxclassrepeat\\\" option sets the maximum number of allowed same consecutive characters in the same class in the new password.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230360", + "group_title": "SRG-OS-000072-GPOS-00040", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230360r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:200", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33004r567827_fix", + "fixtext_fixref": "F-33004r567827_fix", + "ident": { + "text": "CCI-000195", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230360r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230359r627750_rule", + "version": "RHEL-08-020130", + "time": "2021-12-17T10:30:22", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000194", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33003r567824_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:199", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must require the maximum number of repeating characters of the same character class be limited to four when passwords are changed.", + "id": "V-230360", + "desc": "Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\n\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\n\nRHEL 8 utilizes \"pwquality\" as a mechanism to enforce password complexity. The \"maxclassrepeat\" option sets the maximum number of allowed same consecutive characters in the same class in the new password.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:200", + "label": "check" + }, + { + "data": "Configure the operating system to require the change of the number of repeating characters of the same character class when passwords are changed by setting the \"maxclassrepeat\" option.\n\nAdd the following line to \"/etc/security/pwquality.conf\" conf (or modify the line to have the required value):\n\nmaxclassrepeat = 4", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230360\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230360\",\n \"cdf:title\": \"SRG-OS-000072-GPOS-00040\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230360r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230360r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-020140\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must require the maximum number of repeating characters of the same character class be limited to four when passwords are changed.\",\n \"cdf:description\": \"<VulnDiscussion>Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\\n\\nRHEL 8 utilizes \\\"pwquality\\\" as a mechanism to enforce password complexity. The \\\"maxclassrepeat\\\" option sets the maximum number of allowed same consecutive characters in the same class in the new password.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000195\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to require the change of the number of repeating characters of the same character class when passwords are changed by setting the \\\"maxclassrepeat\\\" option.\\n\\nAdd the following line to \\\"/etc/security/pwquality.conf\\\" conf (or modify the line to have the required value):\\n\\nmaxclassrepeat = 4\",\n \"fixref\": \"F-33004r567827_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33004r567827_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:200\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:22" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000195" + ], + "nist": [ + "IA-5 (1) (b)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\\n\\nRHEL 8 utilizes \\\"pwquality\\\" as a mechanism to enforce password complexity. The \\\"maxrepeat\\\" option sets the maximum number of allowed same consecutive characters in a new password.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230361", + "group_title": "SRG-OS-000072-GPOS-00040", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230361r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:201", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33005r567830_fix", + "fixtext_fixref": "F-33005r567830_fix", + "ident": { + "text": "CCI-000195", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230361r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230360r627750_rule", + "version": "RHEL-08-020140", + "time": "2021-12-17T10:30:22", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000195", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33004r567827_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:200", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must require the maximum number of repeating characters be limited to three when passwords are changed.", + "id": "V-230361", + "desc": "Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\n\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\n\nRHEL 8 utilizes \"pwquality\" as a mechanism to enforce password complexity. The \"maxrepeat\" option sets the maximum number of allowed same consecutive characters in a new password.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:201", + "label": "check" + }, + { + "data": "Configure the operating system to require the change of the number of repeating consecutive characters when passwords are changed by setting the \"maxrepeat\" option.\n\nAdd the following line to \"/etc/security/pwquality.conf conf\" (or modify the line to have the required value):\n\nmaxrepeat = 3", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230361\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230361\",\n \"cdf:title\": \"SRG-OS-000072-GPOS-00040\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230361r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230361r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-020150\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must require the maximum number of repeating characters be limited to three when passwords are changed.\",\n \"cdf:description\": \"<VulnDiscussion>Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\\n\\nRHEL 8 utilizes \\\"pwquality\\\" as a mechanism to enforce password complexity. The \\\"maxrepeat\\\" option sets the maximum number of allowed same consecutive characters in a new password.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000195\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to require the change of the number of repeating consecutive characters when passwords are changed by setting the \\\"maxrepeat\\\" option.\\n\\nAdd the following line to \\\"/etc/security/pwquality.conf conf\\\" (or modify the line to have the required value):\\n\\nmaxrepeat = 3\",\n \"fixref\": \"F-33005r567830_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33005r567830_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:201\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:22" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000195" + ], + "nist": [ + "IA-5 (1) (b)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\\n\\nRHEL 8 utilizes \\\"pwquality\\\" as a mechanism to enforce password complexity. The \\\"minclass\\\" option sets the minimum number of required classes of characters for the new password (digits, uppercase, lowercase, others).\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230362", + "group_title": "SRG-OS-000072-GPOS-00040", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230362r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:202", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33006r567833_fix", + "fixtext_fixref": "F-33006r567833_fix", + "ident": { + "text": "CCI-000195", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230362r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230361r627750_rule", + "version": "RHEL-08-020150", + "time": "2021-12-17T10:30:22", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000195", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33005r567830_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:201", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must require the change of at least four character classes when passwords are changed.", + "id": "V-230362", + "desc": "Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\n\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\n\nRHEL 8 utilizes \"pwquality\" as a mechanism to enforce password complexity. The \"minclass\" option sets the minimum number of required classes of characters for the new password (digits, uppercase, lowercase, others).", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:202", + "label": "check" + }, + { + "data": "Configure the operating system to require the change of at least four character classes when passwords are changed by setting the \"minclass\" option.\n\nAdd the following line to \"/etc/security/pwquality.conf conf\" (or modify the line to have the required value):\n\nminclass = 4", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230362\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230362\",\n \"cdf:title\": \"SRG-OS-000072-GPOS-00040\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230362r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230362r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-020160\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must require the change of at least four character classes when passwords are changed.\",\n \"cdf:description\": \"<VulnDiscussion>Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\\n\\nRHEL 8 utilizes \\\"pwquality\\\" as a mechanism to enforce password complexity. The \\\"minclass\\\" option sets the minimum number of required classes of characters for the new password (digits, uppercase, lowercase, others).</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000195\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to require the change of at least four character classes when passwords are changed by setting the \\\"minclass\\\" option.\\n\\nAdd the following line to \\\"/etc/security/pwquality.conf conf\\\" (or modify the line to have the required value):\\n\\nminclass = 4\",\n \"fixref\": \"F-33006r567833_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33006r567833_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:202\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:22" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000195" + ], + "nist": [ + "IA-5 (1) (b)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\\n\\nRHEL 8 utilizes \\\"pwquality\\\" as a mechanism to enforce password complexity. The \\\"difok\\\" option sets the number of characters in a password that must not be present in the old password.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230363", + "group_title": "SRG-OS-000072-GPOS-00040", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230363r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:203", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33007r567836_fix", + "fixtext_fixref": "F-33007r567836_fix", + "ident": { + "text": "CCI-000195", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230363r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230362r627750_rule", + "version": "RHEL-08-020160", + "time": "2021-12-17T10:30:22", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000195", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33006r567833_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:202", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must require the change of at least 8 characters when passwords are changed.", + "id": "V-230363", + "desc": "Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\n\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\n\nRHEL 8 utilizes \"pwquality\" as a mechanism to enforce password complexity. The \"difok\" option sets the number of characters in a password that must not be present in the old password.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:203", + "label": "check" + }, + { + "data": "Configure the operating system to require the change of at least eight of the total number of characters when passwords are changed by setting the \"difok\" option.\n\nAdd the following line to \"/etc/security/pwquality.conf\" (or modify the line to have the required value):\n\ndifok = 8", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230363\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230363\",\n \"cdf:title\": \"SRG-OS-000072-GPOS-00040\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230363r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230363r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-020170\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must require the change of at least 8 characters when passwords are changed.\",\n \"cdf:description\": \"<VulnDiscussion>Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\\n\\nRHEL 8 utilizes \\\"pwquality\\\" as a mechanism to enforce password complexity. The \\\"difok\\\" option sets the number of characters in a password that must not be present in the old password.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000195\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to require the change of at least eight of the total number of characters when passwords are changed by setting the \\\"difok\\\" option.\\n\\nAdd the following line to \\\"/etc/security/pwquality.conf\\\" (or modify the line to have the required value):\\n\\ndifok = 8\",\n \"fixref\": \"F-33007r567836_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33007r567836_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:203\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:22" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000198" + ], + "nist": [ + "IA-5 (1) (d)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Enforcing a minimum password lifetime helps to prevent repeated password changes to defeat the password reuse or history enforcement requirement. If users are allowed to immediately and continually change their password, the password could be repeatedly changed in a short period of time to defeat the organization's policy regarding password reuse.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230364", + "group_title": "SRG-OS-000075-GPOS-00043", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230364r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:204", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33008r567839_fix", + "fixtext_fixref": "F-33008r567839_fix", + "ident": { + "text": "CCI-000198", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230364r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230363r627750_rule", + "version": "RHEL-08-020170", + "time": "2021-12-17T10:30:22", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000195", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33007r567836_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:203", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 passwords must have a 24 hours/1 day minimum password lifetime restriction in /etc/shadow.", + "id": "V-230364", + "desc": "Enforcing a minimum password lifetime helps to prevent repeated password changes to defeat the password reuse or history enforcement requirement. If users are allowed to immediately and continually change their password, the password could be repeatedly changed in a short period of time to defeat the organization's policy regarding password reuse.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:204", + "label": "check" + }, + { + "data": "Configure non-compliant accounts to enforce a 24 hours/1 day minimum password lifetime:\n\n$ sudo chage -m 1 [user]", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230364\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230364\",\n \"cdf:title\": \"SRG-OS-000075-GPOS-00043\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230364r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230364r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-020180\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 passwords must have a 24 hours/1 day minimum password lifetime restriction in /etc/shadow.\",\n \"cdf:description\": \"<VulnDiscussion>Enforcing a minimum password lifetime helps to prevent repeated password changes to defeat the password reuse or history enforcement requirement. If users are allowed to immediately and continually change their password, the password could be repeatedly changed in a short period of time to defeat the organization's policy regarding password reuse.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000198\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure non-compliant accounts to enforce a 24 hours/1 day minimum password lifetime:\\n\\n$ sudo chage -m 1 [user]\",\n \"fixref\": \"F-33008r567839_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33008r567839_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:204\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:22" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000198" + ], + "nist": [ + "IA-5 (1) (d)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Enforcing a minimum password lifetime helps to prevent repeated password changes to defeat the password reuse or history enforcement requirement. If users are allowed to immediately and continually change their password, the password could be repeatedly changed in a short period of time to defeat the organization's policy regarding password reuse.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230365", + "group_title": "SRG-OS-000075-GPOS-00043", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230365r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:205", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33009r567842_fix", + "fixtext_fixref": "F-33009r567842_fix", + "ident": { + "text": "CCI-000198", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230365r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230364r627750_rule", + "version": "RHEL-08-020180", + "time": "2021-12-17T10:30:22", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000198", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33008r567839_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:204", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 passwords for new users or password changes must have a 24 hours/1 day minimum password lifetime restriction in /etc/logins.def.", + "id": "V-230365", + "desc": "Enforcing a minimum password lifetime helps to prevent repeated password changes to defeat the password reuse or history enforcement requirement. If users are allowed to immediately and continually change their password, the password could be repeatedly changed in a short period of time to defeat the organization's policy regarding password reuse.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:205", + "label": "check" + }, + { + "data": "Configure the operating system to enforce 24 hours/1 day as the minimum password lifetime.\n\nAdd the following line in \"/etc/login.defs\" (or modify the line to have the required value):\n\nPASS_MIN_DAYS 1", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230365\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230365\",\n \"cdf:title\": \"SRG-OS-000075-GPOS-00043\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230365r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230365r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-020190\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 passwords for new users or password changes must have a 24 hours/1 day minimum password lifetime restriction in /etc/logins.def.\",\n \"cdf:description\": \"<VulnDiscussion>Enforcing a minimum password lifetime helps to prevent repeated password changes to defeat the password reuse or history enforcement requirement. If users are allowed to immediately and continually change their password, the password could be repeatedly changed in a short period of time to defeat the organization's policy regarding password reuse.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000198\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to enforce 24 hours/1 day as the minimum password lifetime.\\n\\nAdd the following line in \\\"/etc/login.defs\\\" (or modify the line to have the required value):\\n\\nPASS_MIN_DAYS 1\",\n \"fixref\": \"F-33009r567842_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33009r567842_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:205\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:23" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000199" + ], + "nist": [ + "IA-5 (1) (d)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Any password, no matter how complex, can eventually be cracked. Therefore, passwords need to be changed periodically. If RHEL 8 does not limit the lifetime of passwords and force users to change their passwords, there is the risk that RHEL 8 passwords could be compromised.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230366", + "group_title": "SRG-OS-000076-GPOS-00044", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230366r646878_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:206", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33010r567845_fix", + "fixtext_fixref": "F-33010r567845_fix", + "ident": { + "text": "CCI-000199", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230366r646878_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230365r627750_rule", + "version": "RHEL-08-020190", + "time": "2021-12-17T10:30:23", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000198", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33009r567842_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:205", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 user account passwords must have a 60-day maximum password lifetime restriction.", + "id": "V-230366", + "desc": "Any password, no matter how complex, can eventually be cracked. Therefore, passwords need to be changed periodically. If RHEL 8 does not limit the lifetime of passwords and force users to change their passwords, there is the risk that RHEL 8 passwords could be compromised.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:206", + "label": "check" + }, + { + "data": "Configure RHEL 8 to enforce a 60-day maximum password lifetime.\n\nAdd, or modify the following line in the \"/etc/login.defs\" file:\n\nPASS_MAX_DAYS 60", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230366\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230366\",\n \"cdf:title\": \"SRG-OS-000076-GPOS-00044\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230366r646878_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230366r646878_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-020200\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 user account passwords must have a 60-day maximum password lifetime restriction.\",\n \"cdf:description\": \"<VulnDiscussion>Any password, no matter how complex, can eventually be cracked. Therefore, passwords need to be changed periodically. If RHEL 8 does not limit the lifetime of passwords and force users to change their passwords, there is the risk that RHEL 8 passwords could be compromised.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000199\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure RHEL 8 to enforce a 60-day maximum password lifetime.\\n\\nAdd, or modify the following line in the \\\"/etc/login.defs\\\" file:\\n\\nPASS_MAX_DAYS 60\",\n \"fixref\": \"F-33010r567845_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33010r567845_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:206\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:23" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000199" + ], + "nist": [ + "IA-5 (1) (d)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Any password, no matter how complex, can eventually be cracked. Therefore, passwords need to be changed periodically. If RHEL 8 does not limit the lifetime of passwords and force users to change their passwords, there is the risk that RHEL 8 passwords could be compromised.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230367", + "group_title": "SRG-OS-000076-GPOS-00044", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230367r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:207", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33011r567848_fix", + "fixtext_fixref": "F-33011r567848_fix", + "ident": { + "text": "CCI-000199", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230367r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230366r646878_rule", + "version": "RHEL-08-020200", + "time": "2021-12-17T10:30:23", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000199", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33010r567845_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:206", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 user account passwords must be configured so that existing passwords are restricted to a 60-day maximum lifetime.", + "id": "V-230367", + "desc": "Any password, no matter how complex, can eventually be cracked. Therefore, passwords need to be changed periodically. If RHEL 8 does not limit the lifetime of passwords and force users to change their passwords, there is the risk that RHEL 8 passwords could be compromised.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:207", + "label": "check" + }, + { + "data": "Configure non-compliant accounts to enforce a 60-day maximum password lifetime restriction.\n\n$ sudo chage -M 60 [user]", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230367\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230367\",\n \"cdf:title\": \"SRG-OS-000076-GPOS-00044\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230367r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230367r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-020210\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 user account passwords must be configured so that existing passwords are restricted to a 60-day maximum lifetime.\",\n \"cdf:description\": \"<VulnDiscussion>Any password, no matter how complex, can eventually be cracked. Therefore, passwords need to be changed periodically. If RHEL 8 does not limit the lifetime of passwords and force users to change their passwords, there is the risk that RHEL 8 passwords could be compromised.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000199\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure non-compliant accounts to enforce a 60-day maximum password lifetime restriction.\\n\\n$ sudo chage -M 60 [user]\",\n \"fixref\": \"F-33011r567848_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33011r567848_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:207\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:23" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000200" + ], + "nist": [ + "IA-5 (1) (e)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. If the information system or application allows the user to reuse their password consecutively when that password has exceeded its defined lifetime, the end result is a password that is not changed per policy requirements.\\n\\nRHEL 8 utilizes \\\"pwquality\\\" consecutively as a mechanism to enforce password complexity. This is set in both:\\n/etc/pam.d/password-auth\\n/etc/pam.d/system-auth.\\n\\nNote that manual changes to the listed files may be overwritten by the \\\"authselect\\\" program.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230368", + "group_title": "SRG-OS-000077-GPOS-00045", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230368r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:208", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33012r567851_fix", + "fixtext_fixref": "F-33012r567851_fix", + "ident": { + "text": "CCI-000200", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230368r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230367r627750_rule", + "version": "RHEL-08-020210", + "time": "2021-12-17T10:30:23", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000199", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33011r567848_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:207", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 passwords must be prohibited from reuse for a minimum of five generations.", + "id": "V-230368", + "desc": "Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. If the information system or application allows the user to reuse their password consecutively when that password has exceeded its defined lifetime, the end result is a password that is not changed per policy requirements.\n\nRHEL 8 utilizes \"pwquality\" consecutively as a mechanism to enforce password complexity. This is set in both:\n/etc/pam.d/password-auth\n/etc/pam.d/system-auth.\n\nNote that manual changes to the listed files may be overwritten by the \"authselect\" program.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:208", + "label": "check" + }, + { + "data": "Configure the operating system to prohibit password reuse for a minimum of five generations.\n\nAdd the following line in \"/etc/pam.d/system-auth\" and \"/etc/pam.d/password-auth\" (or modify the line to have the required value):\n\npassword required pam_pwhistory.so use_authtok remember=5 retry=3", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230368\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230368\",\n \"cdf:title\": \"SRG-OS-000077-GPOS-00045\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230368r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230368r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-020220\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 passwords must be prohibited from reuse for a minimum of five generations.\",\n \"cdf:description\": \"<VulnDiscussion>Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. If the information system or application allows the user to reuse their password consecutively when that password has exceeded its defined lifetime, the end result is a password that is not changed per policy requirements.\\n\\nRHEL 8 utilizes \\\"pwquality\\\" consecutively as a mechanism to enforce password complexity. This is set in both:\\n/etc/pam.d/password-auth\\n/etc/pam.d/system-auth.\\n\\nNote that manual changes to the listed files may be overwritten by the \\\"authselect\\\" program.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000200\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to prohibit password reuse for a minimum of five generations.\\n\\nAdd the following line in \\\"/etc/pam.d/system-auth\\\" and \\\"/etc/pam.d/password-auth\\\" (or modify the line to have the required value):\\n\\npassword required pam_pwhistory.so use_authtok remember=5 retry=3\",\n \"fixref\": \"F-33012r567851_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33012r567851_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:208\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:24" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000205" + ], + "nist": [ + "IA-5 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"The shorter the password, the lower the number of possible combinations that need to be tested before the password is compromised.\\n\\nPassword complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. Password length is one factor of several that helps to determine strength and how long it takes to crack a password. Use of more characters in a password helps to increase exponentially the time and/or resources required to compromise the password.\\n\\nRHEL 8 utilizes \\\"pwquality\\\" as a mechanism to enforce password complexity. Configurations are set in the \\\"etc/security/pwquality.conf\\\" file.\\n\\nThe \\\"minlen\\\", sometimes noted as minimum length, acts as a \\\"score\\\" of complexity based on the credit components of the \\\"pwquality\\\" module. By setting the credit components to a negative value, not only will those components be required, they will not count towards the total \\\"score\\\" of \\\"minlen\\\". This will enable \\\"minlen\\\" to require a 15-character minimum.\\n\\nThe DoD minimum password requirement is 15 characters.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230369", + "group_title": "SRG-OS-000078-GPOS-00046", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230369r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:209", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33013r567854_fix", + "fixtext_fixref": "F-33013r567854_fix", + "ident": { + "text": "CCI-000205", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230369r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230368r627750_rule", + "version": "RHEL-08-020220", + "time": "2021-12-17T10:30:24", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000200", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33012r567851_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:208", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 passwords must have a minimum of 15 characters.", + "id": "V-230369", + "desc": "The shorter the password, the lower the number of possible combinations that need to be tested before the password is compromised.\n\nPassword complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. Password length is one factor of several that helps to determine strength and how long it takes to crack a password. Use of more characters in a password helps to increase exponentially the time and/or resources required to compromise the password.\n\nRHEL 8 utilizes \"pwquality\" as a mechanism to enforce password complexity. Configurations are set in the \"etc/security/pwquality.conf\" file.\n\nThe \"minlen\", sometimes noted as minimum length, acts as a \"score\" of complexity based on the credit components of the \"pwquality\" module. By setting the credit components to a negative value, not only will those components be required, they will not count towards the total \"score\" of \"minlen\". This will enable \"minlen\" to require a 15-character minimum.\n\nThe DoD minimum password requirement is 15 characters.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:209", + "label": "check" + }, + { + "data": "Configure operating system to enforce a minimum 15-character password length.\n\nAdd the following line to \"/etc/security/pwquality.conf\" (or modify the line to have the required value):\n\nminlen = 15", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230369\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230369\",\n \"cdf:title\": \"SRG-OS-000078-GPOS-00046\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230369r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230369r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-020230\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 passwords must have a minimum of 15 characters.\",\n \"cdf:description\": \"<VulnDiscussion>The shorter the password, the lower the number of possible combinations that need to be tested before the password is compromised.\\n\\nPassword complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. Password length is one factor of several that helps to determine strength and how long it takes to crack a password. Use of more characters in a password helps to increase exponentially the time and/or resources required to compromise the password.\\n\\nRHEL 8 utilizes \\\"pwquality\\\" as a mechanism to enforce password complexity. Configurations are set in the \\\"etc/security/pwquality.conf\\\" file.\\n\\nThe \\\"minlen\\\", sometimes noted as minimum length, acts as a \\\"score\\\" of complexity based on the credit components of the \\\"pwquality\\\" module. By setting the credit components to a negative value, not only will those components be required, they will not count towards the total \\\"score\\\" of \\\"minlen\\\". This will enable \\\"minlen\\\" to require a 15-character minimum.\\n\\nThe DoD minimum password requirement is 15 characters.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000205\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure operating system to enforce a minimum 15-character password length.\\n\\nAdd the following line to \\\"/etc/security/pwquality.conf\\\" (or modify the line to have the required value):\\n\\nminlen = 15\",\n \"fixref\": \"F-33013r567854_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33013r567854_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:209\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:24" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000205" + ], + "nist": [ + "IA-5 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"The shorter the password, the lower the number of possible combinations that need to be tested before the password is compromised.\\n\\nPassword complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. Password length is one factor of several that helps to determine strength and how long it takes to crack a password. Use of more characters in a password helps to increase exponentially the time and/or resources required to compromise the password.\\n\\nThe DoD minimum password requirement is 15 characters.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230370", + "group_title": "SRG-OS-000078-GPOS-00046", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230370r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:210", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33014r567857_fix", + "fixtext_fixref": "F-33014r567857_fix", + "ident": { + "text": "CCI-000205", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230370r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230369r627750_rule", + "version": "RHEL-08-020230", + "time": "2021-12-17T10:30:24", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000205", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33013r567854_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:209", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 passwords for new users must have a minimum of 15 characters.", + "id": "V-230370", + "desc": "The shorter the password, the lower the number of possible combinations that need to be tested before the password is compromised.\n\nPassword complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. Password length is one factor of several that helps to determine strength and how long it takes to crack a password. Use of more characters in a password helps to increase exponentially the time and/or resources required to compromise the password.\n\nThe DoD minimum password requirement is 15 characters.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:210", + "label": "check" + }, + { + "data": "Configure operating system to enforce a minimum 15-character password length for new user accounts.\n\nAdd, or modify the following line in the \"/etc/login.defs\" file:\n\nPASS_MIN_LEN 15", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230370\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230370\",\n \"cdf:title\": \"SRG-OS-000078-GPOS-00046\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230370r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230370r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-020231\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 passwords for new users must have a minimum of 15 characters.\",\n \"cdf:description\": \"<VulnDiscussion>The shorter the password, the lower the number of possible combinations that need to be tested before the password is compromised.\\n\\nPassword complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. Password length is one factor of several that helps to determine strength and how long it takes to crack a password. Use of more characters in a password helps to increase exponentially the time and/or resources required to compromise the password.\\n\\nThe DoD minimum password requirement is 15 characters.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000205\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure operating system to enforce a minimum 15-character password length for new user accounts.\\n\\nAdd, or modify the following line in the \\\"/etc/login.defs\\\" file:\\n\\nPASS_MIN_LEN 15\",\n \"fixref\": \"F-33014r567857_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33014r567857_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:210\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:24" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000795" + ], + "nist": [ + "IA-4 e" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Inactive identifiers pose a risk to systems and applications because attackers may exploit an inactive identifier and potentially obtain undetected access to the system. Owners of inactive accounts will not notice if unauthorized access to their user account has been obtained.\\n\\nRHEL 8 needs to track periods of inactivity and disable application identifiers after 35 days of inactivity.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230373", + "group_title": "SRG-OS-000118-GPOS-00060", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230373r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:211", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33017r567866_fix", + "fixtext_fixref": "F-33017r567866_fix", + "ident": { + "text": "CCI-000795", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230373r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230370r627750_rule", + "version": "RHEL-08-020231", + "time": "2021-12-17T10:30:24", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000205", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33014r567857_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:210", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 account identifiers (individuals, groups, roles, and devices) must be disabled after 35 days of inactivity.", + "id": "V-230373", + "desc": "Inactive identifiers pose a risk to systems and applications because attackers may exploit an inactive identifier and potentially obtain undetected access to the system. Owners of inactive accounts will not notice if unauthorized access to their user account has been obtained.\n\nRHEL 8 needs to track periods of inactivity and disable application identifiers after 35 days of inactivity.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:211", + "label": "check" + }, + { + "data": "Configure RHEL 8 to disable account identifiers after 35 days of inactivity after the password expiration. \n\nRun the following command to change the configuration for useradd:\n\n$ sudo useradd -D -f 35\n\nDoD recommendation is 35 days, but a lower value is acceptable. The value \"-1\" will disable this feature, and \"0\" will disable the account immediately after the password expires.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230373\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230373\",\n \"cdf:title\": \"SRG-OS-000118-GPOS-00060\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230373r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230373r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-020260\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 account identifiers (individuals, groups, roles, and devices) must be disabled after 35 days of inactivity.\",\n \"cdf:description\": \"<VulnDiscussion>Inactive identifiers pose a risk to systems and applications because attackers may exploit an inactive identifier and potentially obtain undetected access to the system. Owners of inactive accounts will not notice if unauthorized access to their user account has been obtained.\\n\\nRHEL 8 needs to track periods of inactivity and disable application identifiers after 35 days of inactivity.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000795\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure RHEL 8 to disable account identifiers after 35 days of inactivity after the password expiration. \\n\\nRun the following command to change the configuration for useradd:\\n\\n$ sudo useradd -D -f 35\\n\\nDoD recommendation is 35 days, but a lower value is acceptable. The value \\\"-1\\\" will disable this feature, and \\\"0\\\" will disable the account immediately after the password expires.\",\n \"fixref\": \"F-33017r567866_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33017r567866_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:211\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:24" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001619" + ], + "nist": [ + "IA-5 (1) (a)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\\n\\nRHEL 8 utilizes \\\"pwquality\\\" as a mechanism to enforce password complexity. Note that to require special characters without degrading the \\\"minlen\\\" value, the credit value must be expressed as a negative number in \\\"/etc/security/pwquality.conf\\\".\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230375", + "group_title": "SRG-OS-000266-GPOS-00101", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230375r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:212", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33019r567872_fix", + "fixtext_fixref": "F-33019r567872_fix", + "ident": { + "text": "CCI-001619", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230375r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230373r627750_rule", + "version": "RHEL-08-020260", + "time": "2021-12-17T10:30:24", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000795", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33017r567866_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:211", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "All RHEL 8 passwords must contain at least one special character.", + "id": "V-230375", + "desc": "Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\n\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\n\nRHEL 8 utilizes \"pwquality\" as a mechanism to enforce password complexity. Note that to require special characters without degrading the \"minlen\" value, the credit value must be expressed as a negative number in \"/etc/security/pwquality.conf\".", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:212", + "label": "check" + }, + { + "data": "Configure the operating system to enforce password complexity by requiring that at least one special character be used by setting the \"ocredit\" option.\n\nAdd the following line to /etc/security/pwquality.conf (or modify the line to have the required value):\n\nocredit = -1", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230375\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230375\",\n \"cdf:title\": \"SRG-OS-000266-GPOS-00101\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230375r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230375r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-020280\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"All RHEL 8 passwords must contain at least one special character.\",\n \"cdf:description\": \"<VulnDiscussion>Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.\\n\\nPassword complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.\\n\\nRHEL 8 utilizes \\\"pwquality\\\" as a mechanism to enforce password complexity. Note that to require special characters without degrading the \\\"minlen\\\" value, the credit value must be expressed as a negative number in \\\"/etc/security/pwquality.conf\\\".</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-001619\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to enforce password complexity by requiring that at least one special character be used by setting the \\\"ocredit\\\" option.\\n\\nAdd the following line to /etc/security/pwquality.conf (or modify the line to have the required value):\\n\\nocredit = -1\",\n \"fixref\": \"F-33019r567872_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33019r567872_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:212\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:24" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"If RHEL 8 allows the user to select passwords based on dictionary words, this increases the chances of password compromise by increasing the opportunity for successful guesses, and brute-force attacks.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230377", + "group_title": "SRG-OS-000480-GPOS-00225", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230377r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:214", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33021r567878_fix", + "fixtext_fixref": "F-33021r567878_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230377r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230375r627750_rule", + "version": "RHEL-08-020280", + "time": "2021-12-17T10:30:24", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-001619", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33019r567872_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:212", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must prevent the use of dictionary words for passwords.", + "id": "V-230377", + "desc": "If RHEL 8 allows the user to select passwords based on dictionary words, this increases the chances of password compromise by increasing the opportunity for successful guesses, and brute-force attacks.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:214", + "label": "check" + }, + { + "data": "Configure RHEL 8 to prevent the use of dictionary words for passwords.\n\nAdd or update the following line in the \"/etc/security/pwquality.conf\" file or a configuration file in the /etc/pwquality.conf.d/ directory to contain the \"dictcheck\" parameter:\n\ndictcheck=1", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230377\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230377\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00225\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230377r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230377r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-020300\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must prevent the use of dictionary words for passwords.\",\n \"cdf:description\": \"<VulnDiscussion>If RHEL 8 allows the user to select passwords based on dictionary words, this increases the chances of password compromise by increasing the opportunity for successful guesses, and brute-force attacks.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure RHEL 8 to prevent the use of dictionary words for passwords.\\n\\nAdd or update the following line in the \\\"/etc/security/pwquality.conf\\\" file or a configuration file in the /etc/pwquality.conf.d/ directory to contain the \\\"dictcheck\\\" parameter:\\n\\ndictcheck=1\",\n \"fixref\": \"F-33021r567878_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33021r567878_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:214\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:24" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Configuring the operating system to implement organization-wide security implementation guides and security checklists verifies compliance with federal standards and establishes a common security baseline across the DoD that reflects the most restrictive security posture consistent with operational requirements.\\n\\nConfiguration settings are the set of parameters that can be changed in hardware, software, or firmware components of the system that affect the security posture and/or functionality of the system. Security-related parameters are those parameters impacting the security state of the system, including the parameters required to satisfy other security control requirements. Security-related parameters include, for example, registry settings; account, file, and directory permission settings; and settings for functions, ports, protocols, services, and remote connections.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230378", + "group_title": "SRG-OS-000480-GPOS-00226", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230378r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:215", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33022r567881_fix", + "fixtext_fixref": "F-33022r567881_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230378r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230377r627750_rule", + "version": "RHEL-08-020300", + "time": "2021-12-17T10:30:24", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33021r567878_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:214", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must enforce a delay of at least four seconds between logon prompts following a failed logon attempt.", + "id": "V-230378", + "desc": "Configuring the operating system to implement organization-wide security implementation guides and security checklists verifies compliance with federal standards and establishes a common security baseline across the DoD that reflects the most restrictive security posture consistent with operational requirements.\n\nConfiguration settings are the set of parameters that can be changed in hardware, software, or firmware components of the system that affect the security posture and/or functionality of the system. Security-related parameters are those parameters impacting the security state of the system, including the parameters required to satisfy other security control requirements. Security-related parameters include, for example, registry settings; account, file, and directory permission settings; and settings for functions, ports, protocols, services, and remote connections.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:215", + "label": "check" + }, + { + "data": "Configure the operating system to enforce a delay of at least four seconds between logon prompts following a failed console logon attempt.\n\nModify the \"/etc/login.defs\" file to set the \"FAIL_DELAY\" parameter to \"4\" or greater:\n\nFAIL_DELAY 4", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230378\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230378\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00226\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230378r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230378r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-020310\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must enforce a delay of at least four seconds between logon prompts following a failed logon attempt.\",\n \"cdf:description\": \"<VulnDiscussion>Configuring the operating system to implement organization-wide security implementation guides and security checklists verifies compliance with federal standards and establishes a common security baseline across the DoD that reflects the most restrictive security posture consistent with operational requirements.\\n\\nConfiguration settings are the set of parameters that can be changed in hardware, software, or firmware components of the system that affect the security posture and/or functionality of the system. Security-related parameters are those parameters impacting the security state of the system, including the parameters required to satisfy other security control requirements. Security-related parameters include, for example, registry settings; account, file, and directory permission settings; and settings for functions, ports, protocols, services, and remote connections.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to enforce a delay of at least four seconds between logon prompts following a failed console logon attempt.\\n\\nModify the \\\"/etc/login.defs\\\" file to set the \\\"FAIL_DELAY\\\" parameter to \\\"4\\\" or greater:\\n\\nFAIL_DELAY 4\",\n \"fixref\": \"F-33022r567881_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33022r567881_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:215\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:24" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "high", + "description": "{\"VulnDiscussion\":\"If an account has an empty password, anyone could log on and run commands with the privileges of that account. Accounts with empty passwords should never be used in operational environments.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230380", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230380r743993_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:216", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33024r743992_fix", + "fixtext_fixref": "F-33024r743992_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230380r743993_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230378r627750_rule", + "version": "RHEL-08-020310", + "time": "2021-12-17T10:30:24", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33022r567881_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:215", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must not allow accounts configured with blank or null passwords.", + "id": "V-230380", + "desc": "If an account has an empty password, anyone could log on and run commands with the privileges of that account. Accounts with empty passwords should never be used in operational environments.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:216", + "label": "check" + }, + { + "data": "Edit the following line in \"etc/ssh/sshd_config\" to prevent logons with empty passwords.\n\nPermitEmptyPasswords no\n\nThe SSH daemon must be restarted for the changes to take effect. To restart the SSH daemon, run the following command:\n\n$ sudo systemctl restart sshd.service", + "label": "fix" + } + ], + "impact": 0.7, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230380\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230380\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230380r743993_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230380r743993_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"high\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-020330\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must not allow accounts configured with blank or null passwords.\",\n \"cdf:description\": \"<VulnDiscussion>If an account has an empty password, anyone could log on and run commands with the privileges of that account. Accounts with empty passwords should never be used in operational environments.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Edit the following line in \\\"etc/ssh/sshd_config\\\" to prevent logons with empty passwords.\\n\\nPermitEmptyPasswords no\\n\\nThe SSH daemon must be restarted for the changes to take effect. To restart the SSH daemon, run the following command:\\n\\n$ sudo systemctl restart sshd.service\",\n \"fixref\": \"F-33024r743992_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33024r743992_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:216\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:30:24" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Providing users with feedback on when account accesses via SSH last occurred facilitates user recognition and reporting of unauthorized account use.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230382", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230382r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:218", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33026r567893_fix", + "fixtext_fixref": "F-33026r567893_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230382r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230380r743993_rule", + "version": "RHEL-08-020330", + "time": "2021-12-17T10:30:24", + "weight": "10.0", + "severity": "high", + "cdf:result": "pass", + "cdf:ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33024r743992_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:216", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must display the date and time of the last successful account logon upon an SSH logon.", + "id": "V-230382", + "desc": "Providing users with feedback on when account accesses via SSH last occurred facilitates user recognition and reporting of unauthorized account use.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:218", + "label": "check" + }, + { + "data": "Configure SSH to provide users with feedback on when account accesses last occurred by setting the required configuration options in \"/etc/pam.d/sshd\" or in the \"sshd_config\" file used by the system (\"/etc/ssh/sshd_config\" will be used in the example) (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor).\n\nModify the \"PrintLastLog\" line in \"/etc/ssh/sshd_config\" to match the following:\n\nPrintLastLog yes\n\nThe SSH service must be restarted for changes to \"sshd_config\" to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230382\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230382\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230382r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230382r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-020350\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must display the date and time of the last successful account logon upon an SSH logon.\",\n \"cdf:description\": \"<VulnDiscussion>Providing users with feedback on when account accesses via SSH last occurred facilitates user recognition and reporting of unauthorized account use.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure SSH to provide users with feedback on when account accesses last occurred by setting the required configuration options in \\\"/etc/pam.d/sshd\\\" or in the \\\"sshd_config\\\" file used by the system (\\\"/etc/ssh/sshd_config\\\" will be used in the example) (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor).\\n\\nModify the \\\"PrintLastLog\\\" line in \\\"/etc/ssh/sshd_config\\\" to match the following:\\n\\nPrintLastLog yes\\n\\nThe SSH service must be restarted for changes to \\\"sshd_config\\\" to take effect.\",\n \"fixref\": \"F-33026r567893_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33026r567893_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:218\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:24" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Setting the most restrictive default permissions ensures that when new accounts are created, they do not have unnecessary access.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230383", + "group_title": "SRG-OS-000480-GPOS-00228", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230383r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:219", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33027r567896_fix", + "fixtext_fixref": "F-33027r567896_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230383r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230382r627750_rule", + "version": "RHEL-08-020350", + "time": "2021-12-17T10:30:24", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33026r567893_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:218", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must define default permissions for all authenticated users in such a way that the user can only read and modify their own files.", + "id": "V-230383", + "desc": "Setting the most restrictive default permissions ensures that when new accounts are created, they do not have unnecessary access.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:219", + "label": "check" + }, + { + "data": "Configure the operating system to define default permissions for all authenticated users in such a way that the user can only read and modify their own files.\n\nAdd or edit the line for the \"UMASK\" parameter in \"/etc/login.defs\" file to \"077\":\n\nUMASK 077", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230383\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230383\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00228\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230383r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230383r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-020351\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must define default permissions for all authenticated users in such a way that the user can only read and modify their own files.\",\n \"cdf:description\": \"<VulnDiscussion>Setting the most restrictive default permissions ensures that when new accounts are created, they do not have unnecessary access.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to define default permissions for all authenticated users in such a way that the user can only read and modify their own files.\\n\\nAdd or edit the line for the \\\"UMASK\\\" parameter in \\\"/etc/login.defs\\\" file to \\\"077\\\":\\n\\nUMASK 077\",\n \"fixref\": \"F-33027r567896_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33027r567896_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:219\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:24" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-002233" + ], + "nist": [ + "AC-6 (8)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Misuse of privileged functions, either intentionally or unintentionally by authorized users, or by unauthorized external entities that have compromised information system accounts, is a serious and ongoing concern and can have significant adverse impacts on organizations. Auditing the use of privileged functions is one way to detect such misuse and identify the risk from insider threats and the advanced persistent threat.\\n\\nSatisfies: SRG-OS-000326-GPOS-00126, SRG-OS-000327-GPOS-00127\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230386", + "group_title": "SRG-OS-000326-GPOS-00126", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230386r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:220", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33030r567905_fix", + "fixtext_fixref": "F-33030r567905_fix", + "ident": { + "text": "CCI-002233", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230386r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230383r627750_rule", + "version": "RHEL-08-020351", + "time": "2021-12-17T10:30:24", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33027r567896_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:219", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The RHEL 8 audit system must be configured to audit the execution of privileged functions and prevent all software from executing at higher privilege levels than users executing the software.", + "id": "V-230386", + "desc": "Misuse of privileged functions, either intentionally or unintentionally by authorized users, or by unauthorized external entities that have compromised information system accounts, is a serious and ongoing concern and can have significant adverse impacts on organizations. Auditing the use of privileged functions is one way to detect such misuse and identify the risk from insider threats and the advanced persistent threat.\n\nSatisfies: SRG-OS-000326-GPOS-00126, SRG-OS-000327-GPOS-00127", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:220", + "label": "check" + }, + { + "data": "Configure RHEL 8 to audit the execution of the \"execve\" system call.\n\nAdd or update the following file system rules to \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S execve -C uid!=euid -F euid=0 -k execpriv \n-a always,exit -F arch=b64 -S execve -C uid!=euid -F euid=0 -k execpriv\n\n-a always,exit -F arch=b32 -S execve -C gid!=egid -F egid=0 -k execpriv \n-a always,exit -F arch=b64 -S execve -C gid!=egid -F egid=0 -k execpriv \n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230386\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230386\",\n \"cdf:title\": \"SRG-OS-000326-GPOS-00126\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230386r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230386r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030000\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The RHEL 8 audit system must be configured to audit the execution of privileged functions and prevent all software from executing at higher privilege levels than users executing the software.\",\n \"cdf:description\": \"<VulnDiscussion>Misuse of privileged functions, either intentionally or unintentionally by authorized users, or by unauthorized external entities that have compromised information system accounts, is a serious and ongoing concern and can have significant adverse impacts on organizations. Auditing the use of privileged functions is one way to detect such misuse and identify the risk from insider threats and the advanced persistent threat.\\n\\nSatisfies: SRG-OS-000326-GPOS-00126, SRG-OS-000327-GPOS-00127</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-002233\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure RHEL 8 to audit the execution of the \\\"execve\\\" system call.\\n\\nAdd or update the following file system rules to \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F arch=b32 -S execve -C uid!=euid -F euid=0 -k execpriv \\n-a always,exit -F arch=b64 -S execve -C uid!=euid -F euid=0 -k execpriv\\n\\n-a always,exit -F arch=b32 -S execve -C gid!=egid -F egid=0 -k execpriv \\n-a always,exit -F arch=b64 -S execve -C gid!=egid -F egid=0 -k execpriv \\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-33030r567905_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33030r567905_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:220\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:24" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000139" + ], + "nist": [ + "AU-5 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"It is critical for the appropriate personnel to be aware if a system is at risk of failing to process audit logs as required. Without this notification, the security personnel may be unaware of an impending failure of the audit capability, and system operation may be adversely affected.\\n\\nAudit processing failures include software/hardware errors, failures in the audit capturing mechanisms, and audit storage capacity being reached or exceeded.\\n\\nThis requirement applies to each audit data storage repository (i.e., distinct information system component where audit records are stored), the centralized audit storage capacity of organizations (i.e., all audit data storage repositories combined), or both.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230388", + "group_title": "SRG-OS-000046-GPOS-00022", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230388r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:222", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33032r567911_fix", + "fixtext_fixref": "F-33032r567911_fix", + "ident": { + "text": "CCI-000139", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230388r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230386r627750_rule", + "version": "RHEL-08-030000", + "time": "2021-12-17T10:30:24", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-002233", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33030r567905_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:220", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The RHEL 8 System Administrator (SA) and Information System Security Officer (ISSO) (at a minimum) must be alerted of an audit processing failure event.", + "id": "V-230388", + "desc": "It is critical for the appropriate personnel to be aware if a system is at risk of failing to process audit logs as required. Without this notification, the security personnel may be unaware of an impending failure of the audit capability, and system operation may be adversely affected.\n\nAudit processing failures include software/hardware errors, failures in the audit capturing mechanisms, and audit storage capacity being reached or exceeded.\n\nThis requirement applies to each audit data storage repository (i.e., distinct information system component where audit records are stored), the centralized audit storage capacity of organizations (i.e., all audit data storage repositories combined), or both.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:222", + "label": "check" + }, + { + "data": "Configure \"auditd\" service to notify the SA and ISSO in the event of an audit processing failure. \n\nEdit the following line in \"/etc/audit/auditd.conf\" to ensure that administrators are notified via email for those situations:\n\naction_mail_acct = root", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230388\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230388\",\n \"cdf:title\": \"SRG-OS-000046-GPOS-00022\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230388r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230388r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030020\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The RHEL 8 System Administrator (SA) and Information System Security Officer (ISSO) (at a minimum) must be alerted of an audit processing failure event.\",\n \"cdf:description\": \"<VulnDiscussion>It is critical for the appropriate personnel to be aware if a system is at risk of failing to process audit logs as required. Without this notification, the security personnel may be unaware of an impending failure of the audit capability, and system operation may be adversely affected.\\n\\nAudit processing failures include software/hardware errors, failures in the audit capturing mechanisms, and audit storage capacity being reached or exceeded.\\n\\nThis requirement applies to each audit data storage repository (i.e., distinct information system component where audit records are stored), the centralized audit storage capacity of organizations (i.e., all audit data storage repositories combined), or both.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000139\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure \\\"auditd\\\" service to notify the SA and ISSO in the event of an audit processing failure. \\n\\nEdit the following line in \\\"/etc/audit/auditd.conf\\\" to ensure that administrators are notified via email for those situations:\\n\\naction_mail_acct = root\",\n \"fixref\": \"F-33032r567911_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33032r567911_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:222\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:30:24" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000140" + ], + "nist": [ + "AU-5 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"It is critical for the appropriate personnel to be aware if a system is at risk of failing to process audit logs as required. Without this notification, the security personnel may be unaware of an impending failure of the audit capability, and system operation may be adversely affected.\\n\\nAudit processing failures include software/hardware errors, failures in the audit capturing mechanisms, and audit storage capacity being reached or exceeded.\\n\\nThis requirement applies to each audit data storage repository (i.e., distinct information system component where audit records are stored), the centralized audit storage capacity of organizations (i.e., all audit data storage repositories combined), or both.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230390", + "group_title": "SRG-OS-000047-GPOS-00023", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230390r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:223", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33034r567917_fix", + "fixtext_fixref": "F-33034r567917_fix", + "ident": { + "text": "CCI-000140", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230390r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230388r627750_rule", + "version": "RHEL-08-030020", + "time": "2021-12-17T10:30:24", + "weight": "10.0", + "severity": "medium", + "cdf:result": "pass", + "cdf:ident": { + "text": "CCI-000139", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33032r567911_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:222", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The RHEL 8 System must take appropriate action when an audit processing failure occurs.", + "id": "V-230390", + "desc": "It is critical for the appropriate personnel to be aware if a system is at risk of failing to process audit logs as required. Without this notification, the security personnel may be unaware of an impending failure of the audit capability, and system operation may be adversely affected.\n\nAudit processing failures include software/hardware errors, failures in the audit capturing mechanisms, and audit storage capacity being reached or exceeded.\n\nThis requirement applies to each audit data storage repository (i.e., distinct information system component where audit records are stored), the centralized audit storage capacity of organizations (i.e., all audit data storage repositories combined), or both.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:223", + "label": "check" + }, + { + "data": "Configure RHEL 8 to shut down by default upon audit failure (unless availability is an overriding concern).\n\nAdd or update the following line (depending on configuration \"disk_error_action\" can be set to \"SYSLOG\" or \"SINGLE\" depending on configuration) in \"/etc/audit/auditd.conf\" file:\n\ndisk_error_action = HALT\n\nIf availability has been determined to be more important, and this decision is documented with the ISSO, configure the operating system to notify system administration staff and ISSO staff in the event of an audit processing failure by setting the \"disk_error_action\" to \"SYSLOG\".", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230390\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230390\",\n \"cdf:title\": \"SRG-OS-000047-GPOS-00023\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230390r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230390r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030040\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The RHEL 8 System must take appropriate action when an audit processing failure occurs.\",\n \"cdf:description\": \"<VulnDiscussion>It is critical for the appropriate personnel to be aware if a system is at risk of failing to process audit logs as required. Without this notification, the security personnel may be unaware of an impending failure of the audit capability, and system operation may be adversely affected.\\n\\nAudit processing failures include software/hardware errors, failures in the audit capturing mechanisms, and audit storage capacity being reached or exceeded.\\n\\nThis requirement applies to each audit data storage repository (i.e., distinct information system component where audit records are stored), the centralized audit storage capacity of organizations (i.e., all audit data storage repositories combined), or both.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000140\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure RHEL 8 to shut down by default upon audit failure (unless availability is an overriding concern).\\n\\nAdd or update the following line (depending on configuration \\\"disk_error_action\\\" can be set to \\\"SYSLOG\\\" or \\\"SINGLE\\\" depending on configuration) in \\\"/etc/audit/auditd.conf\\\" file:\\n\\ndisk_error_action = HALT\\n\\nIf availability has been determined to be more important, and this decision is documented with the ISSO, configure the operating system to notify system administration staff and ISSO staff in the event of an audit processing failure by setting the \\\"disk_error_action\\\" to \\\"SYSLOG\\\".\",\n \"fixref\": \"F-33034r567917_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33034r567917_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:223\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:24" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000140" + ], + "nist": [ + "AU-5 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"It is critical that when RHEL 8 is at risk of failing to process audit logs as required, it takes action to mitigate the failure. Audit processing failures include software/hardware errors; failures in the audit capturing mechanisms; and audit storage capacity being reached or exceeded. Responses to audit failure depend upon the nature of the failure mode.\\n\\nWhen availability is an overriding concern, other approved actions in response to an audit failure are as follows:\\n\\n1) If the failure was caused by the lack of audit record storage capacity, RHEL 8 must continue generating audit records if possible (automatically restarting the audit service if necessary) and overwriting the oldest audit records in a first-in-first-out manner.\\n\\n2) If audit records are sent to a centralized collection server and communication with this server is lost or the server fails, RHEL 8 must queue audit records locally until communication is restored or until the audit records are retrieved manually. Upon restoration of the connection to the centralized collection server, action should be taken to synchronize the local audit data with the collection server.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230391", + "group_title": "SRG-OS-000047-GPOS-00023", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230391r743998_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:224", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33035r743997_fix", + "fixtext_fixref": "F-33035r743997_fix", + "ident": { + "text": "CCI-000140", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230391r743998_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230390r627750_rule", + "version": "RHEL-08-030040", + "time": "2021-12-17T10:30:24", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000140", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33034r567917_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:223", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The RHEL 8 System Administrator (SA) and Information System Security Officer (ISSO) (at a minimum) must be alerted when the audit storage volume is full.", + "id": "V-230391", + "desc": "It is critical that when RHEL 8 is at risk of failing to process audit logs as required, it takes action to mitigate the failure. Audit processing failures include software/hardware errors; failures in the audit capturing mechanisms; and audit storage capacity being reached or exceeded. Responses to audit failure depend upon the nature of the failure mode.\n\nWhen availability is an overriding concern, other approved actions in response to an audit failure are as follows:\n\n1) If the failure was caused by the lack of audit record storage capacity, RHEL 8 must continue generating audit records if possible (automatically restarting the audit service if necessary) and overwriting the oldest audit records in a first-in-first-out manner.\n\n2) If audit records are sent to a centralized collection server and communication with this server is lost or the server fails, RHEL 8 must queue audit records locally until communication is restored or until the audit records are retrieved manually. Upon restoration of the connection to the centralized collection server, action should be taken to synchronize the local audit data with the collection server.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:224", + "label": "check" + }, + { + "data": "Configure RHEL 8 to notify the System Administrator (SA) and Information System Security Officer (ISSO) when the audit storage volume is full by configuring the \"max_log_file_action\" parameter in the \"/etc/audit/auditd.conf\" file with the a value of \"syslog\" or \"keep_logs\":\n\nmax_log_file_action = syslog", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230391\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230391\",\n \"cdf:title\": \"SRG-OS-000047-GPOS-00023\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230391r743998_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230391r743998_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030050\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The RHEL 8 System Administrator (SA) and Information System Security Officer (ISSO) (at a minimum) must be alerted when the audit storage volume is full.\",\n \"cdf:description\": \"<VulnDiscussion>It is critical that when RHEL 8 is at risk of failing to process audit logs as required, it takes action to mitigate the failure. Audit processing failures include software/hardware errors; failures in the audit capturing mechanisms; and audit storage capacity being reached or exceeded. Responses to audit failure depend upon the nature of the failure mode.\\n\\nWhen availability is an overriding concern, other approved actions in response to an audit failure are as follows:\\n\\n1) If the failure was caused by the lack of audit record storage capacity, RHEL 8 must continue generating audit records if possible (automatically restarting the audit service if necessary) and overwriting the oldest audit records in a first-in-first-out manner.\\n\\n2) If audit records are sent to a centralized collection server and communication with this server is lost or the server fails, RHEL 8 must queue audit records locally until communication is restored or until the audit records are retrieved manually. Upon restoration of the connection to the centralized collection server, action should be taken to synchronize the local audit data with the collection server.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000140\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure RHEL 8 to notify the System Administrator (SA) and Information System Security Officer (ISSO) when the audit storage volume is full by configuring the \\\"max_log_file_action\\\" parameter in the \\\"/etc/audit/auditd.conf\\\" file with the a value of \\\"syslog\\\" or \\\"keep_logs\\\":\\n\\nmax_log_file_action = syslog\",\n \"fixref\": \"F-33035r743997_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33035r743997_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:224\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:24" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000140" + ], + "nist": [ + "AU-5 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"It is critical that when RHEL 8 is at risk of failing to process audit logs as required, it takes action to mitigate the failure. Audit processing failures include software/hardware errors; failures in the audit capturing mechanisms; and audit storage capacity being reached or exceeded. Responses to audit failure depend upon the nature of the failure mode.\\n\\nWhen availability is an overriding concern, other approved actions in response to an audit failure are as follows: \\n\\n1) If the failure was caused by the lack of audit record storage capacity, RHEL 8 must continue generating audit records if possible (automatically restarting the audit service if necessary) and overwriting the oldest audit records in a first-in-first-out manner.\\n\\n2) If audit records are sent to a centralized collection server and communication with this server is lost or the server fails, RHEL 8 must queue audit records locally until communication is restored or until the audit records are retrieved manually. Upon restoration of the connection to the centralized collection server, action should be taken to synchronize the local audit data with the collection server.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230392", + "group_title": "SRG-OS-000047-GPOS-00023", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230392r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:225", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33036r567923_fix", + "fixtext_fixref": "F-33036r567923_fix", + "ident": { + "text": "CCI-000140", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230392r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230391r743998_rule", + "version": "RHEL-08-030050", + "time": "2021-12-17T10:30:24", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000140", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33035r743997_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:224", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The RHEL 8 audit system must take appropriate action when the audit storage volume is full.", + "id": "V-230392", + "desc": "It is critical that when RHEL 8 is at risk of failing to process audit logs as required, it takes action to mitigate the failure. Audit processing failures include software/hardware errors; failures in the audit capturing mechanisms; and audit storage capacity being reached or exceeded. Responses to audit failure depend upon the nature of the failure mode.\n\nWhen availability is an overriding concern, other approved actions in response to an audit failure are as follows: \n\n1) If the failure was caused by the lack of audit record storage capacity, RHEL 8 must continue generating audit records if possible (automatically restarting the audit service if necessary) and overwriting the oldest audit records in a first-in-first-out manner.\n\n2) If audit records are sent to a centralized collection server and communication with this server is lost or the server fails, RHEL 8 must queue audit records locally until communication is restored or until the audit records are retrieved manually. Upon restoration of the connection to the centralized collection server, action should be taken to synchronize the local audit data with the collection server.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:225", + "label": "check" + }, + { + "data": "Configure RHEL 8 to shut down by default upon audit failure (unless availability is an overriding concern).\n\nAdd or update the following line (depending on configuration \"disk_full_action\" can be set to \"SYSLOG\" or \"SINGLE\" depending on configuration) in \"/etc/audit/auditd.conf\" file:\n\ndisk_full_action = HALT\n\nIf availability has been determined to be more important, and this decision is documented with the ISSO, configure the operating system to notify system administration staff and ISSO staff in the event of an audit processing failure by setting the \"disk_full_action\" to \"SYSLOG\".", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230392\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230392\",\n \"cdf:title\": \"SRG-OS-000047-GPOS-00023\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230392r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230392r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030060\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The RHEL 8 audit system must take appropriate action when the audit storage volume is full.\",\n \"cdf:description\": \"<VulnDiscussion>It is critical that when RHEL 8 is at risk of failing to process audit logs as required, it takes action to mitigate the failure. Audit processing failures include software/hardware errors; failures in the audit capturing mechanisms; and audit storage capacity being reached or exceeded. Responses to audit failure depend upon the nature of the failure mode.\\n\\nWhen availability is an overriding concern, other approved actions in response to an audit failure are as follows: \\n\\n1) If the failure was caused by the lack of audit record storage capacity, RHEL 8 must continue generating audit records if possible (automatically restarting the audit service if necessary) and overwriting the oldest audit records in a first-in-first-out manner.\\n\\n2) If audit records are sent to a centralized collection server and communication with this server is lost or the server fails, RHEL 8 must queue audit records locally until communication is restored or until the audit records are retrieved manually. Upon restoration of the connection to the centralized collection server, action should be taken to synchronize the local audit data with the collection server.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000140\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure RHEL 8 to shut down by default upon audit failure (unless availability is an overriding concern).\\n\\nAdd or update the following line (depending on configuration \\\"disk_full_action\\\" can be set to \\\"SYSLOG\\\" or \\\"SINGLE\\\" depending on configuration) in \\\"/etc/audit/auditd.conf\\\" file:\\n\\ndisk_full_action = HALT\\n\\nIf availability has been determined to be more important, and this decision is documented with the ISSO, configure the operating system to notify system administration staff and ISSO staff in the event of an audit processing failure by setting the \\\"disk_full_action\\\" to \\\"SYSLOG\\\".\",\n \"fixref\": \"F-33036r567923_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33036r567923_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:225\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:24" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without establishing what type of events occurred, the source of events, where events occurred, and the outcome of events, it would be difficult to establish, correlate, and investigate the events leading up to an outage or attack.\\n\\nAudit record content that may be necessary to satisfy this requirement includes, for example, time stamps, source and destination addresses, user/process identifiers, event descriptions, success/fail indications, filenames involved, and access control or flow control rules invoked.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230393", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230393r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:226", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33037r567926_fix", + "fixtext_fixref": "F-33037r567926_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230393r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230392r627750_rule", + "version": "RHEL-08-030060", + "time": "2021-12-17T10:30:24", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000140", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33036r567923_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:225", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The RHEL 8 audit system must audit local events.", + "id": "V-230393", + "desc": "Without establishing what type of events occurred, the source of events, where events occurred, and the outcome of events, it would be difficult to establish, correlate, and investigate the events leading up to an outage or attack.\n\nAudit record content that may be necessary to satisfy this requirement includes, for example, time stamps, source and destination addresses, user/process identifiers, event descriptions, success/fail indications, filenames involved, and access control or flow control rules invoked.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:226", + "label": "check" + }, + { + "data": "Configure RHEL 8 to audit local events on the system.\n\nAdd or update the following line in \"/etc/audit/auditd.conf\" file:\n\nlocal_events = yes", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230393\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230393\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230393r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230393r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030061\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The RHEL 8 audit system must audit local events.\",\n \"cdf:description\": \"<VulnDiscussion>Without establishing what type of events occurred, the source of events, where events occurred, and the outcome of events, it would be difficult to establish, correlate, and investigate the events leading up to an outage or attack.\\n\\nAudit record content that may be necessary to satisfy this requirement includes, for example, time stamps, source and destination addresses, user/process identifiers, event descriptions, success/fail indications, filenames involved, and access control or flow control rules invoked.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure RHEL 8 to audit local events on the system.\\n\\nAdd or update the following line in \\\"/etc/audit/auditd.conf\\\" file:\\n\\nlocal_events = yes\",\n \"fixref\": \"F-33037r567926_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33037r567926_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:226\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:30:24" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001851" + ], + "nist": [ + "AU-4 (1)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without establishing what type of events occurred, the source of events, where events occurred, and the outcome of events, it would be difficult to establish, correlate, and investigate the events leading up to an outage or attack.\\n\\nAudit record content that may be necessary to satisfy this requirement includes, for example, time stamps, source and destination addresses, user/process identifiers, event descriptions, success/fail indications, filenames involved, and access control or flow control rules invoked.\\n\\nEnriched logging is needed to determine who, what, and when events occur on a system. Without this, determining root cause of an event will be much more difficult.\\n\\nWhen audit logs are not labeled before they are sent to a central log server, the audit data will not be able to be analyzed and tied back to the correct system.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230394", + "group_title": "SRG-OS-000342-GPOS-00133", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230394r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:227", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33038r567929_fix", + "fixtext_fixref": "F-33038r567929_fix", + "ident": { + "text": "CCI-001851", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230394r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230393r627750_rule", + "version": "RHEL-08-030061", + "time": "2021-12-17T10:30:24", + "weight": "10.0", + "severity": "medium", + "cdf:result": "pass", + "cdf:ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33037r567926_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:226", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must label all off-loaded audit logs before sending them to the central log server.", + "id": "V-230394", + "desc": "Without establishing what type of events occurred, the source of events, where events occurred, and the outcome of events, it would be difficult to establish, correlate, and investigate the events leading up to an outage or attack.\n\nAudit record content that may be necessary to satisfy this requirement includes, for example, time stamps, source and destination addresses, user/process identifiers, event descriptions, success/fail indications, filenames involved, and access control or flow control rules invoked.\n\nEnriched logging is needed to determine who, what, and when events occur on a system. Without this, determining root cause of an event will be much more difficult.\n\nWhen audit logs are not labeled before they are sent to a central log server, the audit data will not be able to be analyzed and tied back to the correct system.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:227", + "label": "check" + }, + { + "data": "Edit the /etc/audit/auditd.conf file and add or update the \"name_format\" option:\n\nname_format = hostname\n\nThe audit daemon must be restarted for changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230394\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230394\",\n \"cdf:title\": \"SRG-OS-000342-GPOS-00133\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230394r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230394r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030062\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must label all off-loaded audit logs before sending them to the central log server.\",\n \"cdf:description\": \"<VulnDiscussion>Without establishing what type of events occurred, the source of events, where events occurred, and the outcome of events, it would be difficult to establish, correlate, and investigate the events leading up to an outage or attack.\\n\\nAudit record content that may be necessary to satisfy this requirement includes, for example, time stamps, source and destination addresses, user/process identifiers, event descriptions, success/fail indications, filenames involved, and access control or flow control rules invoked.\\n\\nEnriched logging is needed to determine who, what, and when events occur on a system. Without this, determining root cause of an event will be much more difficult.\\n\\nWhen audit logs are not labeled before they are sent to a central log server, the audit data will not be able to be analyzed and tied back to the correct system.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-001851\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Edit the /etc/audit/auditd.conf file and add or update the \\\"name_format\\\" option:\\n\\nname_format = hostname\\n\\nThe audit daemon must be restarted for changes to take effect.\",\n \"fixref\": \"F-33038r567929_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33038r567929_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:227\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:24" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "low", + "description": "{\"VulnDiscussion\":\"Without establishing what type of events occurred, the source of events, where events occurred, and the outcome of events, it would be difficult to establish, correlate, and investigate the events leading up to an outage or attack.\\n\\nAudit record content that may be necessary to satisfy this requirement includes, for example, time stamps, source and destination addresses, user/process identifiers, event descriptions, success/fail indications, filenames involved, and access control or flow control rules invoked.\\n\\nEnriched logging aids in making sense of who, what, and when events occur on a system. Without this, determining root cause of an event will be much more difficult.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230395", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230395r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:228", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33039r567932_fix", + "fixtext_fixref": "F-33039r567932_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230395r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230394r627750_rule", + "version": "RHEL-08-030062", + "time": "2021-12-17T10:30:24", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-001851", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33038r567929_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:227", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must resolve audit information before writing to disk.", + "id": "V-230395", + "desc": "Without establishing what type of events occurred, the source of events, where events occurred, and the outcome of events, it would be difficult to establish, correlate, and investigate the events leading up to an outage or attack.\n\nAudit record content that may be necessary to satisfy this requirement includes, for example, time stamps, source and destination addresses, user/process identifiers, event descriptions, success/fail indications, filenames involved, and access control or flow control rules invoked.\n\nEnriched logging aids in making sense of who, what, and when events occur on a system. Without this, determining root cause of an event will be much more difficult.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:228", + "label": "check" + }, + { + "data": "Edit the /etc/audit/auditd.conf file and add or update the \"log_format\" option:\n\nlog_format = ENRICHED\n\nThe audit daemon must be restarted for changes to take effect.", + "label": "fix" + } + ], + "impact": 0.3, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230395\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230395\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230395r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230395r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"low\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030063\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must resolve audit information before writing to disk.\",\n \"cdf:description\": \"<VulnDiscussion>Without establishing what type of events occurred, the source of events, where events occurred, and the outcome of events, it would be difficult to establish, correlate, and investigate the events leading up to an outage or attack.\\n\\nAudit record content that may be necessary to satisfy this requirement includes, for example, time stamps, source and destination addresses, user/process identifiers, event descriptions, success/fail indications, filenames involved, and access control or flow control rules invoked.\\n\\nEnriched logging aids in making sense of who, what, and when events occur on a system. Without this, determining root cause of an event will be much more difficult.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Edit the /etc/audit/auditd.conf file and add or update the \\\"log_format\\\" option:\\n\\nlog_format = ENRICHED\\n\\nThe audit daemon must be restarted for changes to take effect.\",\n \"fixref\": \"F-33039r567932_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33039r567932_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:228\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:30:25" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000162" + ], + "nist": [ + "AU-9 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\\n\\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.\\n\\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029, SRG-OS-000206-GPOS-00084\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230396", + "group_title": "SRG-OS-000057-GPOS-00027", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230396r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:229", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33040r567935_fix", + "fixtext_fixref": "F-33040r567935_fix", + "ident": { + "text": "CCI-000162", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230396r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230395r627750_rule", + "version": "RHEL-08-030063", + "time": "2021-12-17T10:30:25", + "weight": "10.0", + "severity": "low", + "cdf:result": "pass", + "cdf:ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33039r567932_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:228", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 audit logs must have a mode of 0600 or less permissive to prevent unauthorized read access.", + "id": "V-230396", + "desc": "Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\n\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.\n\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029, SRG-OS-000206-GPOS-00084", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:229", + "label": "check" + }, + { + "data": "Configure the audit log to be protected from unauthorized read access by configuring the log group in the /etc/audit/auditd.conf file:\n\nlog_group = root", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230396\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230396\",\n \"cdf:title\": \"SRG-OS-000057-GPOS-00027\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230396r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230396r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030070\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 audit logs must have a mode of 0600 or less permissive to prevent unauthorized read access.\",\n \"cdf:description\": \"<VulnDiscussion>Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\\n\\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.\\n\\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029, SRG-OS-000206-GPOS-00084</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000162\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the audit log to be protected from unauthorized read access by configuring the log group in the /etc/audit/auditd.conf file:\\n\\nlog_group = root\",\n \"fixref\": \"F-33040r567935_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33040r567935_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:229\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:30:25" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000162" + ], + "nist": [ + "AU-9 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\\n\\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.\\n\\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029, SRG-OS-000206-GPOS-00084\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230397", + "group_title": "SRG-OS-000057-GPOS-00027", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230397r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:230", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33041r567938_fix", + "fixtext_fixref": "F-33041r567938_fix", + "ident": { + "text": "CCI-000162", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230397r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230396r627750_rule", + "version": "RHEL-08-030070", + "time": "2021-12-17T10:30:25", + "weight": "10.0", + "severity": "medium", + "cdf:result": "pass", + "cdf:ident": { + "text": "CCI-000162", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33040r567935_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:229", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 audit logs must be owned by root to prevent unauthorized read access.", + "id": "V-230397", + "desc": "Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\n\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.\n\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029, SRG-OS-000206-GPOS-00084", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:230", + "label": "check" + }, + { + "data": "Configure the audit log to be protected from unauthorized read access, by setting the correct owner as \"root\" with the following command:\n\n$ sudo chown root [audit_log_file]\n\nReplace \"[audit_log_file]\" to the correct audit log path, by default this location is \"/var/log/audit/audit.log\".", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230397\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230397\",\n \"cdf:title\": \"SRG-OS-000057-GPOS-00027\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230397r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230397r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030080\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 audit logs must be owned by root to prevent unauthorized read access.\",\n \"cdf:description\": \"<VulnDiscussion>Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the RHEL 8 system or platform. Additionally, Personally Identifiable Information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.\\n\\nThe structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.\\n\\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029, SRG-OS-000206-GPOS-00084</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000162\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the audit log to be protected from unauthorized read access, by setting the correct owner as \\\"root\\\" with the following command:\\n\\n$ sudo chown root [audit_log_file]\\n\\nReplace \\\"[audit_log_file]\\\" to the correct audit log path, by default this location is \\\"/var/log/audit/audit.log\\\".\",\n \"fixref\": \"F-33041r567938_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33041r567938_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:230\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:30:25" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000162" + ], + "nist": [ + "AU-9 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Unauthorized disclosure of audit records can reveal system and configuration data to attackers, thus compromising its confidentiality.\\n\\nAudit information includes all information (e.g., audit records, audit settings, audit reports) needed to successfully audit RHEL 8 activity.\\n\\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230398", + "group_title": "SRG-OS-000057-GPOS-00027", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230398r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:231", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33042r567941_fix", + "fixtext_fixref": "F-33042r567941_fix", + "ident": { + "text": "CCI-000162", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230398r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230397r627750_rule", + "version": "RHEL-08-030080", + "time": "2021-12-17T10:30:25", + "weight": "10.0", + "severity": "medium", + "cdf:result": "pass", + "cdf:ident": { + "text": "CCI-000162", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33041r567938_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:230", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 audit logs must be group-owned by root to prevent unauthorized read access.", + "id": "V-230398", + "desc": "Unauthorized disclosure of audit records can reveal system and configuration data to attackers, thus compromising its confidentiality.\n\nAudit information includes all information (e.g., audit records, audit settings, audit reports) needed to successfully audit RHEL 8 activity.\n\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:231", + "label": "check" + }, + { + "data": "Configure the audit log to be owned by root by configuring the log group in the /etc/audit/auditd.conf file:\n\nlog_group = root", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230398\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230398\",\n \"cdf:title\": \"SRG-OS-000057-GPOS-00027\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230398r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230398r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030090\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 audit logs must be group-owned by root to prevent unauthorized read access.\",\n \"cdf:description\": \"<VulnDiscussion>Unauthorized disclosure of audit records can reveal system and configuration data to attackers, thus compromising its confidentiality.\\n\\nAudit information includes all information (e.g., audit records, audit settings, audit reports) needed to successfully audit RHEL 8 activity.\\n\\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000162\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the audit log to be owned by root by configuring the log group in the /etc/audit/auditd.conf file:\\n\\nlog_group = root\",\n \"fixref\": \"F-33042r567941_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33042r567941_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:231\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:30:25" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000162" + ], + "nist": [ + "AU-9 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Unauthorized disclosure of audit records can reveal system and configuration data to attackers, thus compromising its confidentiality.\\n\\nAudit information includes all information (e.g., audit records, audit settings, audit reports) needed to successfully audit RHEL 8 activity.\\n\\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230399", + "group_title": "SRG-OS-000057-GPOS-00027", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230399r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:232", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33043r567944_fix", + "fixtext_fixref": "F-33043r567944_fix", + "ident": { + "text": "CCI-000162", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230399r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230398r627750_rule", + "version": "RHEL-08-030090", + "time": "2021-12-17T10:30:25", + "weight": "10.0", + "severity": "medium", + "cdf:result": "pass", + "cdf:ident": { + "text": "CCI-000162", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33042r567941_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:231", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 audit log directory must be owned by root to prevent unauthorized read access.", + "id": "V-230399", + "desc": "Unauthorized disclosure of audit records can reveal system and configuration data to attackers, thus compromising its confidentiality.\n\nAudit information includes all information (e.g., audit records, audit settings, audit reports) needed to successfully audit RHEL 8 activity.\n\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:232", + "label": "check" + }, + { + "data": "Configure the audit log to be protected from unauthorized read access, by setting the correct owner as \"root\" with the following command:\n\n$ sudo chown root [audit_log_directory]\n\nReplace \"[audit_log_directory]\" with the correct audit log directory path, by default this location is usually \"/var/log/audit\".", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230399\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230399\",\n \"cdf:title\": \"SRG-OS-000057-GPOS-00027\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230399r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230399r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030100\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 audit log directory must be owned by root to prevent unauthorized read access.\",\n \"cdf:description\": \"<VulnDiscussion>Unauthorized disclosure of audit records can reveal system and configuration data to attackers, thus compromising its confidentiality.\\n\\nAudit information includes all information (e.g., audit records, audit settings, audit reports) needed to successfully audit RHEL 8 activity.\\n\\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000162\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the audit log to be protected from unauthorized read access, by setting the correct owner as \\\"root\\\" with the following command:\\n\\n$ sudo chown root [audit_log_directory]\\n\\nReplace \\\"[audit_log_directory]\\\" with the correct audit log directory path, by default this location is usually \\\"/var/log/audit\\\".\",\n \"fixref\": \"F-33043r567944_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33043r567944_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:232\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:30:25" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000162" + ], + "nist": [ + "AU-9 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Unauthorized disclosure of audit records can reveal system and configuration data to attackers, thus compromising its confidentiality.\\n\\nAudit information includes all information (e.g., audit records, audit settings, audit reports) needed to successfully audit RHEL 8 activity.\\n\\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230400", + "group_title": "SRG-OS-000057-GPOS-00027", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230400r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:233", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33044r567947_fix", + "fixtext_fixref": "F-33044r567947_fix", + "ident": { + "text": "CCI-000162", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230400r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230399r627750_rule", + "version": "RHEL-08-030100", + "time": "2021-12-17T10:30:25", + "weight": "10.0", + "severity": "medium", + "cdf:result": "pass", + "cdf:ident": { + "text": "CCI-000162", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33043r567944_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:232", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 audit log directory must be group-owned by root to prevent unauthorized read access.", + "id": "V-230400", + "desc": "Unauthorized disclosure of audit records can reveal system and configuration data to attackers, thus compromising its confidentiality.\n\nAudit information includes all information (e.g., audit records, audit settings, audit reports) needed to successfully audit RHEL 8 activity.\n\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:233", + "label": "check" + }, + { + "data": "Configure the audit log to be protected from unauthorized read access by setting the correct group-owner as \"root\" with the following command:\n\n$ sudo chgrp root [audit_log_directory]\n\nReplace \"[audit_log_directory]\" with the correct audit log directory path, by default this location is usually \"/var/log/audit\".", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230400\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230400\",\n \"cdf:title\": \"SRG-OS-000057-GPOS-00027\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230400r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230400r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030110\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 audit log directory must be group-owned by root to prevent unauthorized read access.\",\n \"cdf:description\": \"<VulnDiscussion>Unauthorized disclosure of audit records can reveal system and configuration data to attackers, thus compromising its confidentiality.\\n\\nAudit information includes all information (e.g., audit records, audit settings, audit reports) needed to successfully audit RHEL 8 activity.\\n\\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000162\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the audit log to be protected from unauthorized read access by setting the correct group-owner as \\\"root\\\" with the following command:\\n\\n$ sudo chgrp root [audit_log_directory]\\n\\nReplace \\\"[audit_log_directory]\\\" with the correct audit log directory path, by default this location is usually \\\"/var/log/audit\\\".\",\n \"fixref\": \"F-33044r567947_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33044r567947_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:233\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:30:25" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000162" + ], + "nist": [ + "AU-9 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Unauthorized disclosure of audit records can reveal system and configuration data to attackers, thus compromising its confidentiality.\\n\\nAudit information includes all information (e.g., audit records, audit settings, audit reports) needed to successfully audit RHEL 8 system activity.\\n\\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230401", + "group_title": "SRG-OS-000057-GPOS-00027", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230401r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:234", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33045r567950_fix", + "fixtext_fixref": "F-33045r567950_fix", + "ident": { + "text": "CCI-000162", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230401r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230400r627750_rule", + "version": "RHEL-08-030110", + "time": "2021-12-17T10:30:25", + "weight": "10.0", + "severity": "medium", + "cdf:result": "pass", + "cdf:ident": { + "text": "CCI-000162", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33044r567947_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:233", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 audit log directory must have a mode of 0700 or less permissive to prevent unauthorized read access.", + "id": "V-230401", + "desc": "Unauthorized disclosure of audit records can reveal system and configuration data to attackers, thus compromising its confidentiality.\n\nAudit information includes all information (e.g., audit records, audit settings, audit reports) needed to successfully audit RHEL 8 system activity.\n\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:234", + "label": "check" + }, + { + "data": "Configure the audit log directory to be protected from unauthorized read access by setting the correct permissive mode with the following command:\n\n$ sudo chmod 0700 [audit_log_directory]\n\nReplace \"[audit_log_directory]\" to the correct audit log directory path, by default this location is \"/var/log/audit\".", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230401\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230401\",\n \"cdf:title\": \"SRG-OS-000057-GPOS-00027\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230401r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230401r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030120\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 audit log directory must have a mode of 0700 or less permissive to prevent unauthorized read access.\",\n \"cdf:description\": \"<VulnDiscussion>Unauthorized disclosure of audit records can reveal system and configuration data to attackers, thus compromising its confidentiality.\\n\\nAudit information includes all information (e.g., audit records, audit settings, audit reports) needed to successfully audit RHEL 8 system activity.\\n\\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000162\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the audit log directory to be protected from unauthorized read access by setting the correct permissive mode with the following command:\\n\\n$ sudo chmod 0700 [audit_log_directory]\\n\\nReplace \\\"[audit_log_directory]\\\" to the correct audit log directory path, by default this location is \\\"/var/log/audit\\\".\",\n \"fixref\": \"F-33045r567950_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33045r567950_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:234\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:30:25" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000162" + ], + "nist": [ + "AU-9 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Unauthorized disclosure of audit records can reveal system and configuration data to attackers, thus compromising its confidentiality.\\n\\nAudit information includes all information (e.g., audit records, audit settings, audit reports) needed to successfully audit RHEL 8 system activity.\\n\\nIn immutable mode, unauthorized users cannot execute changes to the audit system to potentially hide malicious activity and then put the audit rules back. A system reboot would be noticeable and a system administrator could then investigate the unauthorized changes.\\n\\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230402", + "group_title": "SRG-OS-000057-GPOS-00027", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230402r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:235", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33046r567953_fix", + "fixtext_fixref": "F-33046r567953_fix", + "ident": { + "text": "CCI-000162", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230402r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230401r627750_rule", + "version": "RHEL-08-030120", + "time": "2021-12-17T10:30:25", + "weight": "10.0", + "severity": "medium", + "cdf:result": "pass", + "cdf:ident": { + "text": "CCI-000162", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33045r567950_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:234", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 audit system must protect auditing rules from unauthorized change.", + "id": "V-230402", + "desc": "Unauthorized disclosure of audit records can reveal system and configuration data to attackers, thus compromising its confidentiality.\n\nAudit information includes all information (e.g., audit records, audit settings, audit reports) needed to successfully audit RHEL 8 system activity.\n\nIn immutable mode, unauthorized users cannot execute changes to the audit system to potentially hide malicious activity and then put the audit rules back. A system reboot would be noticeable and a system administrator could then investigate the unauthorized changes.\n\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:235", + "label": "check" + }, + { + "data": "Configure the audit system to set the audit rules to be immutable by adding the following line to \"/etc/audit/rules.d/audit.rules\"\n\n-e 2\n\nNote: Once set, the system must be rebooted for auditing to be changed. It is recommended to add this option as the last step in securing the system.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230402\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230402\",\n \"cdf:title\": \"SRG-OS-000057-GPOS-00027\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230402r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230402r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030121\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 audit system must protect auditing rules from unauthorized change.\",\n \"cdf:description\": \"<VulnDiscussion>Unauthorized disclosure of audit records can reveal system and configuration data to attackers, thus compromising its confidentiality.\\n\\nAudit information includes all information (e.g., audit records, audit settings, audit reports) needed to successfully audit RHEL 8 system activity.\\n\\nIn immutable mode, unauthorized users cannot execute changes to the audit system to potentially hide malicious activity and then put the audit rules back. A system reboot would be noticeable and a system administrator could then investigate the unauthorized changes.\\n\\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000162\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the audit system to set the audit rules to be immutable by adding the following line to \\\"/etc/audit/rules.d/audit.rules\\\"\\n\\n-e 2\\n\\nNote: Once set, the system must be rebooted for auditing to be changed. It is recommended to add this option as the last step in securing the system.\",\n \"fixref\": \"F-33046r567953_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33046r567953_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:235\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:25" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000162" + ], + "nist": [ + "AU-9 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Unauthorized disclosure of audit records can reveal system and configuration data to attackers, thus compromising its confidentiality.\\n\\nAudit information includes all information (e.g., audit records, audit settings, audit reports) needed to successfully audit RHEL 8 system activity.\\n\\nIn immutable mode, unauthorized users cannot execute changes to the audit system to potentially hide malicious activity and then put the audit rules back. A system reboot would be noticeable and a system administrator could then investigate the unauthorized changes.\\n\\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230403", + "group_title": "SRG-OS-000057-GPOS-00027", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230403r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:236", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33047r567956_fix", + "fixtext_fixref": "F-33047r567956_fix", + "ident": { + "text": "CCI-000162", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230403r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230402r627750_rule", + "version": "RHEL-08-030121", + "time": "2021-12-17T10:30:25", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000162", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33046r567953_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:235", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 audit system must protect logon UIDs from unauthorized change.", + "id": "V-230403", + "desc": "Unauthorized disclosure of audit records can reveal system and configuration data to attackers, thus compromising its confidentiality.\n\nAudit information includes all information (e.g., audit records, audit settings, audit reports) needed to successfully audit RHEL 8 system activity.\n\nIn immutable mode, unauthorized users cannot execute changes to the audit system to potentially hide malicious activity and then put the audit rules back. A system reboot would be noticeable and a system administrator could then investigate the unauthorized changes.\n\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:236", + "label": "check" + }, + { + "data": "Configure the audit system to set the logon UIDs to be immutable by adding the following line to \"/etc/audit/rules.d/audit.rules\"\n\n--loginuid-immutable", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230403\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230403\",\n \"cdf:title\": \"SRG-OS-000057-GPOS-00027\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230403r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230403r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030122\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 audit system must protect logon UIDs from unauthorized change.\",\n \"cdf:description\": \"<VulnDiscussion>Unauthorized disclosure of audit records can reveal system and configuration data to attackers, thus compromising its confidentiality.\\n\\nAudit information includes all information (e.g., audit records, audit settings, audit reports) needed to successfully audit RHEL 8 system activity.\\n\\nIn immutable mode, unauthorized users cannot execute changes to the audit system to potentially hide malicious activity and then put the audit rules back. A system reboot would be noticeable and a system administrator could then investigate the unauthorized changes.\\n\\nSatisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000162\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the audit system to set the logon UIDs to be immutable by adding the following line to \\\"/etc/audit/rules.d/audit.rules\\\"\\n\\n--loginuid-immutable\",\n \"fixref\": \"F-33047r567956_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33047r567956_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:236\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:25" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000004-GPOS-00004, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000304-GPOS-00121, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000470-GPOS-00214, SRG-OS-000471-GPOS-00215, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000304-GPOS-00121, SRG-OS-000466-GPOS-00210, SRG-OS-000476-GPOS-00221\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230404", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230404r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:237", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33048r567959_fix", + "fixtext_fixref": "F-33048r567959_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230404r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230403r627750_rule", + "version": "RHEL-08-030122", + "time": "2021-12-17T10:30:25", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000162", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33047r567956_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:236", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/shadow.", + "id": "V-230404", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000004-GPOS-00004, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000304-GPOS-00121, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000470-GPOS-00214, SRG-OS-000471-GPOS-00215, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000304-GPOS-00121, SRG-OS-000466-GPOS-00210, SRG-OS-000476-GPOS-00221", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:237", + "label": "check" + }, + { + "data": "Configure RHEL 8 to generate audit records for all account creations, modifications, disabling, and termination events that affect \"/etc/shadow\".\n\nAdd or update the following file system rule to \"/etc/audit/rules.d/audit.rules\":\n\n-w /etc/shadow -p wa -k identity\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230404\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230404\",\n \"cdf:title\": \"SRG-OS-000062-GPOS-00031\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230404r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230404r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030130\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/shadow.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000004-GPOS-00004, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000304-GPOS-00121, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000470-GPOS-00214, SRG-OS-000471-GPOS-00215, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000304-GPOS-00121, SRG-OS-000466-GPOS-00210, SRG-OS-000476-GPOS-00221</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure RHEL 8 to generate audit records for all account creations, modifications, disabling, and termination events that affect \\\"/etc/shadow\\\".\\n\\nAdd or update the following file system rule to \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-w /etc/shadow -p wa -k identity\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-33048r567959_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33048r567959_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:237\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:25" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000004-GPOS-00004, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000304-GPOS-00121, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000470-GPOS-00214, SRG-OS-000471-GPOS-00215, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000304-GPOS-00121, SRG-OS-000476-GPOS-00221\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230405", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230405r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:238", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33049r567962_fix", + "fixtext_fixref": "F-33049r567962_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230405r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230404r627750_rule", + "version": "RHEL-08-030130", + "time": "2021-12-17T10:30:25", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33048r567959_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:237", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/security/opasswd.", + "id": "V-230405", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000004-GPOS-00004, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000304-GPOS-00121, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000470-GPOS-00214, SRG-OS-000471-GPOS-00215, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000304-GPOS-00121, SRG-OS-000476-GPOS-00221", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:238", + "label": "check" + }, + { + "data": "Configure RHEL 8 to generate audit records for all account creations, modifications, disabling, and termination events that affect \"/etc/security/opasswd\".\n\nAdd or update the following file system rule to \"/etc/audit/rules.d/audit.rules\":\n\n-w /etc/security/opasswd -p wa -k identity\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230405\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230405\",\n \"cdf:title\": \"SRG-OS-000062-GPOS-00031\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230405r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230405r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030140\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/security/opasswd.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000004-GPOS-00004, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000304-GPOS-00121, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000470-GPOS-00214, SRG-OS-000471-GPOS-00215, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000304-GPOS-00121, SRG-OS-000476-GPOS-00221</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure RHEL 8 to generate audit records for all account creations, modifications, disabling, and termination events that affect \\\"/etc/security/opasswd\\\".\\n\\nAdd or update the following file system rule to \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-w /etc/security/opasswd -p wa -k identity\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-33049r567962_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33049r567962_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:238\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:25" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000004-GPOS-00004, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000304-GPOS-00121, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000470-GPOS-00214, SRG-OS-000471-GPOS-00215, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000304-GPOS-00121, SRG-OS-000466-GPOS-00210, SRG-OS-000476-GPOS-00221\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230406", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230406r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:239", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33050r567965_fix", + "fixtext_fixref": "F-33050r567965_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230406r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230405r627750_rule", + "version": "RHEL-08-030140", + "time": "2021-12-17T10:30:25", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33049r567962_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:238", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/passwd.", + "id": "V-230406", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000004-GPOS-00004, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000304-GPOS-00121, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000470-GPOS-00214, SRG-OS-000471-GPOS-00215, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000304-GPOS-00121, SRG-OS-000466-GPOS-00210, SRG-OS-000476-GPOS-00221", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:239", + "label": "check" + }, + { + "data": "Configure RHEL 8 to generate audit records for all account creations, modifications, disabling, and termination events that affect \"/etc/passwd\".\n\nAdd or update the following file system rule to \"/etc/audit/rules.d/audit.rules\":\n\n-w /etc/passwd -p wa -k identity\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230406\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230406\",\n \"cdf:title\": \"SRG-OS-000062-GPOS-00031\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230406r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230406r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030150\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/passwd.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000004-GPOS-00004, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000304-GPOS-00121, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000470-GPOS-00214, SRG-OS-000471-GPOS-00215, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000304-GPOS-00121, SRG-OS-000466-GPOS-00210, SRG-OS-000476-GPOS-00221</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure RHEL 8 to generate audit records for all account creations, modifications, disabling, and termination events that affect \\\"/etc/passwd\\\".\\n\\nAdd or update the following file system rule to \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-w /etc/passwd -p wa -k identity\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-33050r567965_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33050r567965_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:239\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:25" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000004-GPOS-00004, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000304-GPOS-00121, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000470-GPOS-00214, SRG-OS-000471-GPOS-00215, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000304-GPOS-00121, SRG-OS-000466-GPOS-00210, SRG-OS-000476-GPOS-00221\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230407", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230407r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:240", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33051r567968_fix", + "fixtext_fixref": "F-33051r567968_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230407r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230406r627750_rule", + "version": "RHEL-08-030150", + "time": "2021-12-17T10:30:25", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33050r567965_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:239", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/gshadow.", + "id": "V-230407", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000004-GPOS-00004, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000304-GPOS-00121, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000470-GPOS-00214, SRG-OS-000471-GPOS-00215, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000304-GPOS-00121, SRG-OS-000466-GPOS-00210, SRG-OS-000476-GPOS-00221", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:240", + "label": "check" + }, + { + "data": "Configure RHEL 8 to generate audit records for all account creations, modifications, disabling, and termination events that affect \"/etc/gshadow\".\n\nAdd or update the following file system rule to \"/etc/audit/rules.d/audit.rules\":\n\n-w /etc/gshadow -p wa -k identity\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230407\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230407\",\n \"cdf:title\": \"SRG-OS-000062-GPOS-00031\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230407r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230407r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030160\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/gshadow.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000004-GPOS-00004, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000304-GPOS-00121, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000470-GPOS-00214, SRG-OS-000471-GPOS-00215, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000304-GPOS-00121, SRG-OS-000466-GPOS-00210, SRG-OS-000476-GPOS-00221</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure RHEL 8 to generate audit records for all account creations, modifications, disabling, and termination events that affect \\\"/etc/gshadow\\\".\\n\\nAdd or update the following file system rule to \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-w /etc/gshadow -p wa -k identity\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-33051r567968_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33051r567968_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:240\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:25" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000004-GPOS-00004, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000304-GPOS-00121, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000470-GPOS-00214, SRG-OS-000471-GPOS-00215, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000304-GPOS-00121, CCI-002884, SRG-OS-000466-GPOS-00210, SRG-OS-000476-GPOS-00221\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230408", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230408r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:241", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33052r567971_fix", + "fixtext_fixref": "F-33052r567971_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230408r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230407r627750_rule", + "version": "RHEL-08-030160", + "time": "2021-12-17T10:30:25", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33051r567968_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:240", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/group.", + "id": "V-230408", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000004-GPOS-00004, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000304-GPOS-00121, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000470-GPOS-00214, SRG-OS-000471-GPOS-00215, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000304-GPOS-00121, CCI-002884, SRG-OS-000466-GPOS-00210, SRG-OS-000476-GPOS-00221", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:241", + "label": "check" + }, + { + "data": "Configure RHEL 8 to generate audit records for all account creations, modifications, disabling, and termination events that affect \"/etc/group\".\n\nAdd or update the following file system rule to \"/etc/audit/rules.d/audit.rules\":\n\n-w /etc/group -p wa -k identity\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230408\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230408\",\n \"cdf:title\": \"SRG-OS-000062-GPOS-00031\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230408r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230408r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030170\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/group.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000004-GPOS-00004, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000304-GPOS-00121, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000470-GPOS-00214, SRG-OS-000471-GPOS-00215, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000304-GPOS-00121, CCI-002884, SRG-OS-000466-GPOS-00210, SRG-OS-000476-GPOS-00221</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure RHEL 8 to generate audit records for all account creations, modifications, disabling, and termination events that affect \\\"/etc/group\\\".\\n\\nAdd or update the following file system rule to \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-w /etc/group -p wa -k identity\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-33052r567971_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33052r567971_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:241\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:25" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000004-GPOS-00004, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000304-GPOS-00121, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000470-GPOS-00214, SRG-OS-000471-GPOS-00215, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000304-GPOS-00121, CCI-002884, SRG-OS-000466-GPOS-00210, SRG-OS-000476-GPOS-00221\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230409", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230409r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:242", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33053r567974_fix", + "fixtext_fixref": "F-33053r567974_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230409r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230408r627750_rule", + "version": "RHEL-08-030170", + "time": "2021-12-17T10:30:25", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33052r567971_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:241", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/sudoers.", + "id": "V-230409", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000004-GPOS-00004, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000304-GPOS-00121, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000470-GPOS-00214, SRG-OS-000471-GPOS-00215, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000304-GPOS-00121, CCI-002884, SRG-OS-000466-GPOS-00210, SRG-OS-000476-GPOS-00221", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:242", + "label": "check" + }, + { + "data": "Configure RHEL 8 to generate audit records for all account creations, modifications, disabling, and termination events that affect \"/etc/sudoers\".\n\nAdd or update the following file system rule to \"/etc/audit/rules.d/audit.rules\":\n\n-w /etc/sudoers -p wa -k identity\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230409\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230409\",\n \"cdf:title\": \"SRG-OS-000062-GPOS-00031\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230409r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230409r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030171\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/sudoers.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000004-GPOS-00004, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000304-GPOS-00121, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000470-GPOS-00214, SRG-OS-000471-GPOS-00215, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000304-GPOS-00121, CCI-002884, SRG-OS-000466-GPOS-00210, SRG-OS-000476-GPOS-00221</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure RHEL 8 to generate audit records for all account creations, modifications, disabling, and termination events that affect \\\"/etc/sudoers\\\".\\n\\nAdd or update the following file system rule to \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-w /etc/sudoers -p wa -k identity\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-33053r567974_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33053r567974_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:242\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:25" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000004-GPOS-00004, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000304-GPOS-00121, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000470-GPOS-00214, SRG-OS-000471-GPOS-00215, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000304-GPOS-00121, CCI-002884, SRG-OS-000466-GPOS-00210, SRG-OS-000476-GPOS-00221\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230410", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230410r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:243", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33054r567977_fix", + "fixtext_fixref": "F-33054r567977_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230410r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230409r627750_rule", + "version": "RHEL-08-030171", + "time": "2021-12-17T10:30:25", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33053r567974_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:242", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/sudoers.d/.", + "id": "V-230410", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000004-GPOS-00004, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000304-GPOS-00121, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000470-GPOS-00214, SRG-OS-000471-GPOS-00215, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000304-GPOS-00121, CCI-002884, SRG-OS-000466-GPOS-00210, SRG-OS-000476-GPOS-00221", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:243", + "label": "check" + }, + { + "data": "Configure RHEL 8 to generate audit records for all account creations, modifications, disabling, and termination events that affect \"/etc/sudoers.d/\".\n\nAdd or update the following file system rule to \"/etc/audit/rules.d/audit.rules\":\n\n-w /etc/sudoers.d/ -p wa -k identity\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230410\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230410\",\n \"cdf:title\": \"SRG-OS-000062-GPOS-00031\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230410r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230410r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030172\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/sudoers.d/.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000004-GPOS-00004, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000304-GPOS-00121, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000470-GPOS-00214, SRG-OS-000471-GPOS-00215, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000304-GPOS-00121, CCI-002884, SRG-OS-000466-GPOS-00210, SRG-OS-000476-GPOS-00221</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure RHEL 8 to generate audit records for all account creations, modifications, disabling, and termination events that affect \\\"/etc/sudoers.d/\\\".\\n\\nAdd or update the following file system rule to \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-w /etc/sudoers.d/ -p wa -k identity\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-33054r567977_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33054r567977_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:243\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:25" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without establishing what type of events occurred, the source of events, where events occurred, and the outcome of events, it would be difficult to establish, correlate, and investigate the events leading up to an outage or attack.\\n\\nAudit record content that may be necessary to satisfy this requirement includes, for example, time stamps, source and destination addresses, user/process identifiers, event descriptions, success/fail indications, filenames involved, and access control or flow control rules invoked.\\n\\nAssociating event types with detected events in RHEL 8 audit logs provides a means of investigating an attack, recognizing resource utilization or capacity thresholds, or identifying an improperly configured RHEL 8 system.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000038-GPOS-00016, SRG-OS-000039-GPOS-00017, SRG-OS-000040-GPOS-00018, SRG-OS-000041-GPOS-00019, SRG-OS-000042-GPOS-00021, SRG-OS-000051-GPOS-00024, SRG-OS-000054-GPOS-00025, SRG-OS-000122-GPOS-00063, SRG-OS-000254-GPOS-00095, SRG-OS-000255-GPOS-00096, SRG-OS-000337-GPOS-00129, SRG-OS-000348-GPOS-00136, SRG-OS-000349-GPOS-00137, SRG-OS-000350-GPOS-00138, SRG-OS-000351-GPOS-00139, SRG-OS-000352-GPOS-00140, SRG-OS-000353-GPOS-00141, SRG-OS-000354-GPOS-00142, SRG-OS-000358-GPOS-00145, SRG-OS-000365-GPOS-00152, SRG-OS-000392-GPOS-00172, SRG-OS-000475-GPOS-00220\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230411", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230411r744000_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:244", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33055r646880_fix", + "fixtext_fixref": "F-33055r646880_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230411r744000_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230410r627750_rule", + "version": "RHEL-08-030172", + "time": "2021-12-17T10:30:25", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33054r567977_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:243", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The RHEL 8 audit package must be installed.", + "id": "V-230411", + "desc": "Without establishing what type of events occurred, the source of events, where events occurred, and the outcome of events, it would be difficult to establish, correlate, and investigate the events leading up to an outage or attack.\n\nAudit record content that may be necessary to satisfy this requirement includes, for example, time stamps, source and destination addresses, user/process identifiers, event descriptions, success/fail indications, filenames involved, and access control or flow control rules invoked.\n\nAssociating event types with detected events in RHEL 8 audit logs provides a means of investigating an attack, recognizing resource utilization or capacity thresholds, or identifying an improperly configured RHEL 8 system.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000038-GPOS-00016, SRG-OS-000039-GPOS-00017, SRG-OS-000040-GPOS-00018, SRG-OS-000041-GPOS-00019, SRG-OS-000042-GPOS-00021, SRG-OS-000051-GPOS-00024, SRG-OS-000054-GPOS-00025, SRG-OS-000122-GPOS-00063, SRG-OS-000254-GPOS-00095, SRG-OS-000255-GPOS-00096, SRG-OS-000337-GPOS-00129, SRG-OS-000348-GPOS-00136, SRG-OS-000349-GPOS-00137, SRG-OS-000350-GPOS-00138, SRG-OS-000351-GPOS-00139, SRG-OS-000352-GPOS-00140, SRG-OS-000353-GPOS-00141, SRG-OS-000354-GPOS-00142, SRG-OS-000358-GPOS-00145, SRG-OS-000365-GPOS-00152, SRG-OS-000392-GPOS-00172, SRG-OS-000475-GPOS-00220", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:244", + "label": "check" + }, + { + "data": "Configure the audit service to produce audit records containing the information needed to establish when (date and time) an event occurred.\n\nInstall the audit service (if the audit service is not already installed) with the following command:\n\n$ sudo yum install audit", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230411\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230411\",\n \"cdf:title\": \"SRG-OS-000062-GPOS-00031\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230411r744000_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230411r744000_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030180\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The RHEL 8 audit package must be installed.\",\n \"cdf:description\": \"<VulnDiscussion>Without establishing what type of events occurred, the source of events, where events occurred, and the outcome of events, it would be difficult to establish, correlate, and investigate the events leading up to an outage or attack.\\n\\nAudit record content that may be necessary to satisfy this requirement includes, for example, time stamps, source and destination addresses, user/process identifiers, event descriptions, success/fail indications, filenames involved, and access control or flow control rules invoked.\\n\\nAssociating event types with detected events in RHEL 8 audit logs provides a means of investigating an attack, recognizing resource utilization or capacity thresholds, or identifying an improperly configured RHEL 8 system.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000038-GPOS-00016, SRG-OS-000039-GPOS-00017, SRG-OS-000040-GPOS-00018, SRG-OS-000041-GPOS-00019, SRG-OS-000042-GPOS-00021, SRG-OS-000051-GPOS-00024, SRG-OS-000054-GPOS-00025, SRG-OS-000122-GPOS-00063, SRG-OS-000254-GPOS-00095, SRG-OS-000255-GPOS-00096, SRG-OS-000337-GPOS-00129, SRG-OS-000348-GPOS-00136, SRG-OS-000349-GPOS-00137, SRG-OS-000350-GPOS-00138, SRG-OS-000351-GPOS-00139, SRG-OS-000352-GPOS-00140, SRG-OS-000353-GPOS-00141, SRG-OS-000354-GPOS-00142, SRG-OS-000358-GPOS-00145, SRG-OS-000365-GPOS-00152, SRG-OS-000392-GPOS-00172, SRG-OS-000475-GPOS-00220</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the audit service to produce audit records containing the information needed to establish when (date and time) an event occurred.\\n\\nInstall the audit service (if the audit service is not already installed) with the following command:\\n\\n$ sudo yum install audit\",\n \"fixref\": \"F-33055r646880_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33055r646880_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:244\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:30:25" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"su\\\" command allows a user to run commands with a substitute user and group ID.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000064-GPOS-0003, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000466-GPOS-00210\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230412", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230412r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:245", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33056r567983_fix", + "fixtext_fixref": "F-33056r567983_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230412r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230411r744000_rule", + "version": "RHEL-08-030180", + "time": "2021-12-17T10:30:25", + "weight": "10.0", + "severity": "medium", + "cdf:result": "pass", + "cdf:ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33055r646880_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:244", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the su command in RHEL 8 must generate an audit record.", + "id": "V-230412", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"su\" command allows a user to run commands with a substitute user and group ID.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000064-GPOS-0003, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000466-GPOS-00210", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:245", + "label": "check" + }, + { + "data": "Configure RHEL 8 to generate audit records when successful/unsuccessful attempts to use the \"su\" command occur by adding or updating the following rule in \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F path=/usr/bin/su -F perm=x -F auid>=1000 -F auid!=unset -k privileged-priv_change\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230412\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230412\",\n \"cdf:title\": \"SRG-OS-000062-GPOS-00031\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230412r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230412r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030190\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"Successful/unsuccessful uses of the su command in RHEL 8 must generate an audit record.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"su\\\" command allows a user to run commands with a substitute user and group ID.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000064-GPOS-0003, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000466-GPOS-00210</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure RHEL 8 to generate audit records when successful/unsuccessful attempts to use the \\\"su\\\" command occur by adding or updating the following rule in \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F path=/usr/bin/su -F perm=x -F auid>=1000 -F auid!=unset -k privileged-priv_change\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-33056r567983_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33056r567983_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:245\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:25" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). \\\"Lremovexattr\\\" is a system call that removes extended attributes. This is used for removal of extended attributes from symbolic links.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000462-GPOS-00206, SRG-OS-000463-GPOS-00207, SRG-OS-000468-GPOS-00212, SRG-OS-000471-GPOS-00215, SRG-OS-000474-GPOS-00219, SRG-OS-000466-GPOS-00210\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230413", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230413r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:246", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33057r567986_fix", + "fixtext_fixref": "F-33057r567986_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230413r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230412r627750_rule", + "version": "RHEL-08-030190", + "time": "2021-12-17T10:30:25", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33056r567983_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:245", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The RHEL 8 audit system must be configured to audit any usage of the lremovexattr system call.", + "id": "V-230413", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). \"Lremovexattr\" is a system call that removes extended attributes. This is used for removal of extended attributes from symbolic links.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000462-GPOS-00206, SRG-OS-000463-GPOS-00207, SRG-OS-000468-GPOS-00212, SRG-OS-000471-GPOS-00215, SRG-OS-000474-GPOS-00219, SRG-OS-000466-GPOS-00210", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:246", + "label": "check" + }, + { + "data": "Configure RHEL 8 to audit the execution of the \"lremovexattr\" system call, by adding or updating the following lines to \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S lremovexattr -F auid>=1000 -F auid!=unset -k perm_mod\n-a always,exit -F arch=b64 -S lremovexattr -F auid>=1000 -F auid!=unset -k perm_mod\n\n-a always,exit -F arch=b32 -S lremovexattr -F auid=0 -k perm_mod\n-a always,exit -F arch=b64 -S lremovexattr -F auid=0 -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230413\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230413\",\n \"cdf:title\": \"SRG-OS-000062-GPOS-00031\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230413r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230413r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030200\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The RHEL 8 audit system must be configured to audit any usage of the lremovexattr system call.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). \\\"Lremovexattr\\\" is a system call that removes extended attributes. This is used for removal of extended attributes from symbolic links.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000462-GPOS-00206, SRG-OS-000463-GPOS-00207, SRG-OS-000468-GPOS-00212, SRG-OS-000471-GPOS-00215, SRG-OS-000474-GPOS-00219, SRG-OS-000466-GPOS-00210</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure RHEL 8 to audit the execution of the \\\"lremovexattr\\\" system call, by adding or updating the following lines to \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F arch=b32 -S lremovexattr -F auid>=1000 -F auid!=unset -k perm_mod\\n-a always,exit -F arch=b64 -S lremovexattr -F auid>=1000 -F auid!=unset -k perm_mod\\n\\n-a always,exit -F arch=b32 -S lremovexattr -F auid=0 -k perm_mod\\n-a always,exit -F arch=b64 -S lremovexattr -F auid=0 -k perm_mod\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-33057r567986_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33057r567986_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:246\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:25" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). \\\"Removexattr\\\" is a system call that removes extended attributes.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000462-GPOS-00206, SRG-OS-000463-GPOS-00207, SRG-OS-000468-GPOS-00212, SRG-OS-000471-GPOS-00215, SRG-OS-000474-GPOS-00219, SRG-OS-000466-GPOS-00210\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230414", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230414r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:247", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33058r567989_fix", + "fixtext_fixref": "F-33058r567989_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230414r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230413r627750_rule", + "version": "RHEL-08-030200", + "time": "2021-12-17T10:30:25", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33057r567986_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:246", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The RHEL 8 audit system must be configured to audit any usage of the removexattr system call.", + "id": "V-230414", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). \"Removexattr\" is a system call that removes extended attributes.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000462-GPOS-00206, SRG-OS-000463-GPOS-00207, SRG-OS-000468-GPOS-00212, SRG-OS-000471-GPOS-00215, SRG-OS-000474-GPOS-00219, SRG-OS-000466-GPOS-00210", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:247", + "label": "check" + }, + { + "data": "Configure RHEL 8 to audit the execution of the \"removexattr\" system call, by adding or updating the following lines to \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S removexattr -F auid>=1000 -F auid!=unset -k perm_mod\n-a always,exit -F arch=b64 -S removexattr -F auid>=1000 -F auid!=unset -k perm_mod\n\n-a always,exit -F arch=b32 -S removexattr -F auid=0 -k perm_mod\n-a always,exit -F arch=b64 -S removexattr -F auid=0 -k perm_mod \n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230414\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230414\",\n \"cdf:title\": \"SRG-OS-000062-GPOS-00031\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230414r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230414r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030210\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The RHEL 8 audit system must be configured to audit any usage of the removexattr system call.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). \\\"Removexattr\\\" is a system call that removes extended attributes.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000462-GPOS-00206, SRG-OS-000463-GPOS-00207, SRG-OS-000468-GPOS-00212, SRG-OS-000471-GPOS-00215, SRG-OS-000474-GPOS-00219, SRG-OS-000466-GPOS-00210</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure RHEL 8 to audit the execution of the \\\"removexattr\\\" system call, by adding or updating the following lines to \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F arch=b32 -S removexattr -F auid>=1000 -F auid!=unset -k perm_mod\\n-a always,exit -F arch=b64 -S removexattr -F auid>=1000 -F auid!=unset -k perm_mod\\n\\n-a always,exit -F arch=b32 -S removexattr -F auid=0 -k perm_mod\\n-a always,exit -F arch=b64 -S removexattr -F auid=0 -k perm_mod \\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-33058r567989_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33058r567989_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:247\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:25" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). \\\"Lsetxattr\\\" is a system call used to set an extended attribute value. This is used to set extended attributes on a symbolic link.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000462-GPOS-00206, SRG-OS-000463-GPOS-00207, SRG-OS-000468-GPOS-00212, SRG-OS-000471-GPOS-00215, SRG-OS-000474-GPOS-00219\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230415", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230415r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:248", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33059r567992_fix", + "fixtext_fixref": "F-33059r567992_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230415r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230414r627750_rule", + "version": "RHEL-08-030210", + "time": "2021-12-17T10:30:25", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33058r567989_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:247", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The RHEL 8 audit system must be configured to audit any usage of the lsetxattr system call.", + "id": "V-230415", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). \"Lsetxattr\" is a system call used to set an extended attribute value. This is used to set extended attributes on a symbolic link.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000462-GPOS-00206, SRG-OS-000463-GPOS-00207, SRG-OS-000468-GPOS-00212, SRG-OS-000471-GPOS-00215, SRG-OS-000474-GPOS-00219", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:248", + "label": "check" + }, + { + "data": "Configure RHEL 8 to audit the execution of the \"lsetxattr\" system call, by adding or updating the following lines to \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S lsetxattr -F auid>=1000 -F auid!=unset -k perm_mod\n-a always,exit -F arch=b64 -S lsetxattr -F auid>=1000 -F auid!=unset -k perm_mod\n\n-a always,exit -F arch=b32 -S lsetxattr -F auid=0 -k perm_mod \n-a always,exit -F arch=b64 -S lsetxattr -F auid=0 -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230415\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230415\",\n \"cdf:title\": \"SRG-OS-000062-GPOS-00031\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230415r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230415r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030220\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The RHEL 8 audit system must be configured to audit any usage of the lsetxattr system call.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). \\\"Lsetxattr\\\" is a system call used to set an extended attribute value. This is used to set extended attributes on a symbolic link.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000462-GPOS-00206, SRG-OS-000463-GPOS-00207, SRG-OS-000468-GPOS-00212, SRG-OS-000471-GPOS-00215, SRG-OS-000474-GPOS-00219</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure RHEL 8 to audit the execution of the \\\"lsetxattr\\\" system call, by adding or updating the following lines to \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F arch=b32 -S lsetxattr -F auid>=1000 -F auid!=unset -k perm_mod\\n-a always,exit -F arch=b64 -S lsetxattr -F auid>=1000 -F auid!=unset -k perm_mod\\n\\n-a always,exit -F arch=b32 -S lsetxattr -F auid=0 -k perm_mod \\n-a always,exit -F arch=b64 -S lsetxattr -F auid=0 -k perm_mod\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-33059r567992_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33059r567992_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:248\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:25" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). \\\"Fsetxattr\\\" is a system call used to set an extended attribute value. This is used to set extended attributes on a file.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The auid representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000462-GPOS-00206, SRG-OS-000463-GPOS-00207, SRG-OS-000468-GPOS-00212, SRG-OS-000471-GPOS-00215, SRG-OS-000474-GPOS-00219\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230416", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230416r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:249", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33060r567995_fix", + "fixtext_fixref": "F-33060r567995_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230416r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230415r627750_rule", + "version": "RHEL-08-030220", + "time": "2021-12-17T10:30:25", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33059r567992_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:248", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The RHEL 8 audit system must be configured to audit any usage of the fsetxattr system call.", + "id": "V-230416", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). \"Fsetxattr\" is a system call used to set an extended attribute value. This is used to set extended attributes on a file.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The auid representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000462-GPOS-00206, SRG-OS-000463-GPOS-00207, SRG-OS-000468-GPOS-00212, SRG-OS-000471-GPOS-00215, SRG-OS-000474-GPOS-00219", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:249", + "label": "check" + }, + { + "data": "Configure RHEL 8 to audit the execution of the \"fsetxattr\" system call, by adding or updating the following lines to \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S fsetxattr -F auid>=1000 -F auid!=unset -k perm_mod\n-a always,exit -F arch=b64 -S fsetxattr -F auid>=1000 -F auid!=unset -k perm_mod\n\n-a always,exit -F arch=b32 -S fsetxattr -F auid=0 -k perm_mod\n-a always,exit -F arch=b64 -S fsetxattr -F auid=0 -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230416\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230416\",\n \"cdf:title\": \"SRG-OS-000062-GPOS-00031\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230416r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230416r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030230\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The RHEL 8 audit system must be configured to audit any usage of the fsetxattr system call.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). \\\"Fsetxattr\\\" is a system call used to set an extended attribute value. This is used to set extended attributes on a file.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The auid representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000462-GPOS-00206, SRG-OS-000463-GPOS-00207, SRG-OS-000468-GPOS-00212, SRG-OS-000471-GPOS-00215, SRG-OS-000474-GPOS-00219</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure RHEL 8 to audit the execution of the \\\"fsetxattr\\\" system call, by adding or updating the following lines to \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F arch=b32 -S fsetxattr -F auid>=1000 -F auid!=unset -k perm_mod\\n-a always,exit -F arch=b64 -S fsetxattr -F auid>=1000 -F auid!=unset -k perm_mod\\n\\n-a always,exit -F arch=b32 -S fsetxattr -F auid=0 -k perm_mod\\n-a always,exit -F arch=b64 -S fsetxattr -F auid=0 -k perm_mod\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-33060r567995_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33060r567995_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:249\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:26" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). \\\"Fremovexattr\\\" is a system call that removes extended attributes. This is used for removal of extended attributes from a file.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000462-GPOS-00206, SRG-OS-000463-GPOS-00207, SRG-OS-000471-GPOS-00215, SRG-OS-000474-GPOS-00219, SRG-OS-000466-GPOS-00210\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230417", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230417r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:250", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33061r567998_fix", + "fixtext_fixref": "F-33061r567998_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230417r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230416r627750_rule", + "version": "RHEL-08-030230", + "time": "2021-12-17T10:30:26", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33060r567995_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:249", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The RHEL 8 audit system must be configured to audit any usage of the fremovexattr system call.", + "id": "V-230417", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). \"Fremovexattr\" is a system call that removes extended attributes. This is used for removal of extended attributes from a file.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000462-GPOS-00206, SRG-OS-000463-GPOS-00207, SRG-OS-000471-GPOS-00215, SRG-OS-000474-GPOS-00219, SRG-OS-000466-GPOS-00210", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:250", + "label": "check" + }, + { + "data": "Configure RHEL 8 to audit the execution of the \"fremovexattr\" system call by adding or updating the following lines to \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S fremovexattr -F auid>=1000 -F auid!=unset -k perm_mod\n-a always,exit -F arch=b64 -S fremovexattr -F auid>=1000 -F auid!=unset -k perm_mod\n\n-a always,exit -F arch=b32 -S fremovexattr -F auid=0 -k perm_mod\n-a always,exit -F arch=b64 -S fremovexattr -F auid=0 -k perm_mod \n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230417\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230417\",\n \"cdf:title\": \"SRG-OS-000062-GPOS-00031\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230417r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230417r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030240\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The RHEL 8 audit system must be configured to audit any usage of the fremovexattr system call.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). \\\"Fremovexattr\\\" is a system call that removes extended attributes. This is used for removal of extended attributes from a file.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000458-GPOS-00203, SRG-OS-000462-GPOS-00206, SRG-OS-000463-GPOS-00207, SRG-OS-000471-GPOS-00215, SRG-OS-000474-GPOS-00219, SRG-OS-000466-GPOS-00210</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure RHEL 8 to audit the execution of the \\\"fremovexattr\\\" system call by adding or updating the following lines to \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F arch=b32 -S fremovexattr -F auid>=1000 -F auid!=unset -k perm_mod\\n-a always,exit -F arch=b64 -S fremovexattr -F auid>=1000 -F auid!=unset -k perm_mod\\n\\n-a always,exit -F arch=b32 -S fremovexattr -F auid=0 -k perm_mod\\n-a always,exit -F arch=b64 -S fremovexattr -F auid=0 -k perm_mod \\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-33061r567998_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33061r567998_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:250\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:26" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"chage\\\" command is used to change or view user password expiry information.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000468-GPOS-00212, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230418", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230418r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:251", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33062r568001_fix", + "fixtext_fixref": "F-33062r568001_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230418r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230417r627750_rule", + "version": "RHEL-08-030240", + "time": "2021-12-17T10:30:26", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33061r567998_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:250", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the chage command in RHEL 8 must generate an audit record.", + "id": "V-230418", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"chage\" command is used to change or view user password expiry information.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000468-GPOS-00212, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:251", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \"chage\" command by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/bin/chage -F perm=x -F auid>=1000 -F auid!=unset -k privileged-chage\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230418\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230418\",\n \"cdf:title\": \"SRG-OS-000062-GPOS-00031\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230418r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230418r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030250\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"Successful/unsuccessful uses of the chage command in RHEL 8 must generate an audit record.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"chage\\\" command is used to change or view user password expiry information.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000468-GPOS-00212, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \\\"chage\\\" command by adding or updating the following rule in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-a always,exit -F path=/usr/bin/chage -F perm=x -F auid>=1000 -F auid!=unset -k privileged-chage\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-33062r568001_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33062r568001_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:251\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:26" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"chcon\\\" command is used to change file SELinux security context.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000468-GPOS-00212, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230419", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230419r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:252", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33063r568004_fix", + "fixtext_fixref": "F-33063r568004_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230419r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230418r627750_rule", + "version": "RHEL-08-030250", + "time": "2021-12-17T10:30:26", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33062r568001_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:251", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the chcon command in RHEL 8 must generate an audit record.", + "id": "V-230419", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"chcon\" command is used to change file SELinux security context.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000468-GPOS-00212, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:252", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"chcon\" command by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/bin/chcon -F perm=x -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230419\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230419\",\n \"cdf:title\": \"SRG-OS-000062-GPOS-00031\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230419r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230419r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030260\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"Successful/unsuccessful uses of the chcon command in RHEL 8 must generate an audit record.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"chcon\\\" command is used to change file SELinux security context.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000468-GPOS-00212, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful use of the \\\"chcon\\\" command by adding or updating the following rule in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-a always,exit -F path=/usr/bin/chcon -F perm=x -F auid>=1000 -F auid!=unset -k perm_mod\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-33063r568004_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33063r568004_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:252\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:26" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). \\\"Setxattr\\\" is a system call used to set an extended attribute value.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230420", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230420r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:253", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33064r568007_fix", + "fixtext_fixref": "F-33064r568007_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230420r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230419r627750_rule", + "version": "RHEL-08-030260", + "time": "2021-12-17T10:30:26", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33063r568004_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:252", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The RHEL 8 audit system must be configured to audit any usage of the setxattr system call.", + "id": "V-230420", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). \"Setxattr\" is a system call used to set an extended attribute value.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:253", + "label": "check" + }, + { + "data": "Configure RHEL 8 to audit the execution of the \"setxattr\" system call, by adding or updating the following lines to \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S setxattr -F auid>=1000 -F auid!=unset -k perm_mod\n-a always,exit -F arch=b64 -S setxattr -F auid>=1000 -F auid!=unset -k perm_mod\n\n-a always,exit -F arch=b32 -S setxattr -F auid=0 -k perm_mod\n-a always,exit -F arch=b64 -S setxattr -F auid=0 -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230420\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230420\",\n \"cdf:title\": \"SRG-OS-000062-GPOS-00031\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230420r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230420r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030270\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The RHEL 8 audit system must be configured to audit any usage of the setxattr system call.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). \\\"Setxattr\\\" is a system call used to set an extended attribute value.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure RHEL 8 to audit the execution of the \\\"setxattr\\\" system call, by adding or updating the following lines to \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F arch=b32 -S setxattr -F auid>=1000 -F auid!=unset -k perm_mod\\n-a always,exit -F arch=b64 -S setxattr -F auid>=1000 -F auid!=unset -k perm_mod\\n\\n-a always,exit -F arch=b32 -S setxattr -F auid=0 -k perm_mod\\n-a always,exit -F arch=b64 -S setxattr -F auid=0 -k perm_mod\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-33064r568007_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33064r568007_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:253\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:26" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"ssh-agent\\\" is a program to hold private keys used for public key authentication.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230421", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230421r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:254", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33065r568010_fix", + "fixtext_fixref": "F-33065r568010_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230421r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230420r627750_rule", + "version": "RHEL-08-030270", + "time": "2021-12-17T10:30:26", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33064r568007_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:253", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the ssh-agent in RHEL 8 must generate an audit record.", + "id": "V-230421", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"ssh-agent\" is a program to hold private keys used for public key authentication.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:254", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"ssh-agent\" by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/bin/ssh-agent -F perm=x -F auid>=1000 -F auid!=unset -k privileged-ssh\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230421\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230421\",\n \"cdf:title\": \"SRG-OS-000062-GPOS-00031\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230421r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230421r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030280\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"Successful/unsuccessful uses of the ssh-agent in RHEL 8 must generate an audit record.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"ssh-agent\\\" is a program to hold private keys used for public key authentication.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful use of the \\\"ssh-agent\\\" by adding or updating the following rule in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-a always,exit -F path=/usr/bin/ssh-agent -F perm=x -F auid>=1000 -F auid!=unset -k privileged-ssh\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-33065r568010_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33065r568010_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:254\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:26" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"passwd\\\" command is used to change passwords for user accounts.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230422", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230422r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:255", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33066r568013_fix", + "fixtext_fixref": "F-33066r568013_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230422r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230421r627750_rule", + "version": "RHEL-08-030280", + "time": "2021-12-17T10:30:26", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33065r568010_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:254", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the passwd command in RHEL 8 must generate an audit record.", + "id": "V-230422", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"passwd\" command is used to change passwords for user accounts.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:255", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \"passwd\" command by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/bin/passwd -F perm=x -F auid>=1000 -F auid!=unset -k privileged-passwd\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230422\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230422\",\n \"cdf:title\": \"SRG-OS-000062-GPOS-00031\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230422r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230422r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030290\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"Successful/unsuccessful uses of the passwd command in RHEL 8 must generate an audit record.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"passwd\\\" command is used to change passwords for user accounts.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \\\"passwd\\\" command by adding or updating the following rule in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-a always,exit -F path=/usr/bin/passwd -F perm=x -F auid>=1000 -F auid!=unset -k privileged-passwd\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-33066r568013_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33066r568013_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:255\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:26" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"mount\\\" command is used to mount a filesystem.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230423", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230423r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:256", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33067r568016_fix", + "fixtext_fixref": "F-33067r568016_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230423r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230422r627750_rule", + "version": "RHEL-08-030290", + "time": "2021-12-17T10:30:26", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33066r568013_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:255", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the mount command in RHEL 8 must generate an audit record.", + "id": "V-230423", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"mount\" command is used to mount a filesystem.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:256", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"mount\" command by adding or updating the following rules in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/bin/mount -F perm=x -F auid>=1000 -F auid!=unset -k privileged-mount\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230423\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230423\",\n \"cdf:title\": \"SRG-OS-000062-GPOS-00031\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230423r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230423r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030300\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"Successful/unsuccessful uses of the mount command in RHEL 8 must generate an audit record.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"mount\\\" command is used to mount a filesystem.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful use of the \\\"mount\\\" command by adding or updating the following rules in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-a always,exit -F path=/usr/bin/mount -F perm=x -F auid>=1000 -F auid!=unset -k privileged-mount\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-33067r568016_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33067r568016_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:256\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:26" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"umount\\\" command is used to unmount a filesystem.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230424", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230424r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:257", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33068r568019_fix", + "fixtext_fixref": "F-33068r568019_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230424r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230423r627750_rule", + "version": "RHEL-08-030300", + "time": "2021-12-17T10:30:26", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33067r568016_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:256", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the umount command in RHEL 8 must generate an audit record.", + "id": "V-230424", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"umount\" command is used to unmount a filesystem.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:257", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"umount\" command by adding or updating the following rules in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/bin/umount -F perm=x -F auid>=1000 -F auid!=unset -k privileged-mount\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230424\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230424\",\n \"cdf:title\": \"SRG-OS-000062-GPOS-00031\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230424r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230424r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030301\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"Successful/unsuccessful uses of the umount command in RHEL 8 must generate an audit record.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"umount\\\" command is used to unmount a filesystem.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful use of the \\\"umount\\\" command by adding or updating the following rules in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-a always,exit -F path=/usr/bin/umount -F perm=x -F auid>=1000 -F auid!=unset -k privileged-mount\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-33068r568019_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33068r568019_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:257\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:26" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"mount\\\" syscall is used to mount a filesystem.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230425", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230425r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:258", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33069r568022_fix", + "fixtext_fixref": "F-33069r568022_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230425r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230424r627750_rule", + "version": "RHEL-08-030301", + "time": "2021-12-17T10:30:26", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33068r568019_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:257", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the mount syscall in RHEL 8 must generate an audit record.", + "id": "V-230425", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"mount\" syscall is used to mount a filesystem.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:258", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"mount\" syscall by adding or updating the following rules in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F arch=b32 -S mount -F auid>=1000 -F auid!=unset -k privileged-mount\n-a always,exit -F arch=b64 -S mount -F auid>=1000 -F auid!=unset -k privileged-mount\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230425\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230425\",\n \"cdf:title\": \"SRG-OS-000062-GPOS-00031\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230425r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230425r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030302\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"Successful/unsuccessful uses of the mount syscall in RHEL 8 must generate an audit record.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"mount\\\" syscall is used to mount a filesystem.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful use of the \\\"mount\\\" syscall by adding or updating the following rules in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-a always,exit -F arch=b32 -S mount -F auid>=1000 -F auid!=unset -k privileged-mount\\n-a always,exit -F arch=b64 -S mount -F auid>=1000 -F auid!=unset -k privileged-mount\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-33069r568022_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33069r568022_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:258\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:26" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. \\\"Unix_update\\\" is a helper program for the \\\"pam_unix\\\" module that updates the password for a given user. It is not intended to be run directly from the command line and logs a security violation if done so.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230426", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230426r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:259", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33070r568025_fix", + "fixtext_fixref": "F-33070r568025_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230426r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230425r627750_rule", + "version": "RHEL-08-030302", + "time": "2021-12-17T10:30:26", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33069r568022_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:258", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the unix_update in RHEL 8 must generate an audit record.", + "id": "V-230426", + "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. \"Unix_update\" is a helper program for the \"pam_unix\" module that updates the password for a given user. It is not intended to be run directly from the command line and logs a security violation if done so.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:259", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \"unix_update\" by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/sbin/unix_update -F perm=x -F auid>=1000 -F auid!=unset -k privileged-unix-update\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230426\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230426\",\n \"cdf:title\": \"SRG-OS-000062-GPOS-00031\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230426r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230426r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030310\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"Successful/unsuccessful uses of the unix_update in RHEL 8 must generate an audit record.\",\n \"cdf:description\": \"<VulnDiscussion>Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. \\\"Unix_update\\\" is a helper program for the \\\"pam_unix\\\" module that updates the password for a given user. It is not intended to be run directly from the command line and logs a security violation if done so.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \\\"unix_update\\\" by adding or updating the following rule in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-a always,exit -F path=/usr/sbin/unix_update -F perm=x -F auid>=1000 -F auid!=unset -k privileged-unix-update\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-33070r568025_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33070r568025_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:259\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:26" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. The \\\"postdrop\\\" command creates a file in the maildrop directory and copies its standard input to the file.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230427", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230427r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:260", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33071r568028_fix", + "fixtext_fixref": "F-33071r568028_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230427r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230426r627750_rule", + "version": "RHEL-08-030310", + "time": "2021-12-17T10:30:26", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33070r568025_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:259", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of postdrop in RHEL 8 must generate an audit record.", + "id": "V-230427", + "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. The \"postdrop\" command creates a file in the maildrop directory and copies its standard input to the file.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:260", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \"postdrop\" by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/sbin/postdrop -F perm=x -F auid>=1000 -F auid!=unset -k privileged-unix-update\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230427\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230427\",\n \"cdf:title\": \"SRG-OS-000062-GPOS-00031\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230427r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230427r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030311\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"Successful/unsuccessful uses of postdrop in RHEL 8 must generate an audit record.\",\n \"cdf:description\": \"<VulnDiscussion>Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. The \\\"postdrop\\\" command creates a file in the maildrop directory and copies its standard input to the file.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \\\"postdrop\\\" by adding or updating the following rule in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-a always,exit -F path=/usr/sbin/postdrop -F perm=x -F auid>=1000 -F auid!=unset -k privileged-unix-update\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-33071r568028_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33071r568028_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:260\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:26" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. The \\\"postqueue\\\" command implements the Postfix user interface for queue management.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230428", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230428r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:261", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33072r568031_fix", + "fixtext_fixref": "F-33072r568031_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230428r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230427r627750_rule", + "version": "RHEL-08-030311", + "time": "2021-12-17T10:30:26", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33071r568028_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:260", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of postqueue in RHEL 8 must generate an audit record.", + "id": "V-230428", + "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. The \"postqueue\" command implements the Postfix user interface for queue management.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:261", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \"postqueue\" by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/sbin/postqueue -F perm=x -F auid>=1000 -F auid!=unset -k privileged-unix-update\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230428\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230428\",\n \"cdf:title\": \"SRG-OS-000062-GPOS-00031\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230428r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230428r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030312\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"Successful/unsuccessful uses of postqueue in RHEL 8 must generate an audit record.\",\n \"cdf:description\": \"<VulnDiscussion>Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. The \\\"postqueue\\\" command implements the Postfix user interface for queue management.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \\\"postqueue\\\" by adding or updating the following rule in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-a always,exit -F path=/usr/sbin/postqueue -F perm=x -F auid>=1000 -F auid!=unset -k privileged-unix-update\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-33072r568031_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33072r568031_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:261\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:26" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. The \\\"semanage\\\" command is used to configure certain elements of SELinux policy without requiring modification to or recompilation from policy sources.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230429", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230429r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:262", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33073r568034_fix", + "fixtext_fixref": "F-33073r568034_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230429r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230428r627750_rule", + "version": "RHEL-08-030312", + "time": "2021-12-17T10:30:26", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33072r568031_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:261", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of semanage in RHEL 8 must generate an audit record.", + "id": "V-230429", + "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. The \"semanage\" command is used to configure certain elements of SELinux policy without requiring modification to or recompilation from policy sources.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:262", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \"semanage\" by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/sbin/semanage -F perm=x -F auid>=1000 -F auid!=unset -k privileged-unix-update\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230429\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230429\",\n \"cdf:title\": \"SRG-OS-000062-GPOS-00031\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230429r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230429r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030313\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"Successful/unsuccessful uses of semanage in RHEL 8 must generate an audit record.\",\n \"cdf:description\": \"<VulnDiscussion>Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. The \\\"semanage\\\" command is used to configure certain elements of SELinux policy without requiring modification to or recompilation from policy sources.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \\\"semanage\\\" by adding or updating the following rule in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-a always,exit -F path=/usr/sbin/semanage -F perm=x -F auid>=1000 -F auid!=unset -k privileged-unix-update\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-33073r568034_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33073r568034_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:262\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:26" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. The \\\"setfiles\\\" command is primarily used to initialize the security context fields (extended attributes) on one or more filesystems (or parts of them). Usually it is initially run as part of the SELinux installation process (a step commonly known as labeling).\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230430", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230430r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:263", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33074r568037_fix", + "fixtext_fixref": "F-33074r568037_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230430r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230429r627750_rule", + "version": "RHEL-08-030313", + "time": "2021-12-17T10:30:26", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33073r568034_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:262", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of setfiles in RHEL 8 must generate an audit record.", + "id": "V-230430", + "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. The \"setfiles\" command is primarily used to initialize the security context fields (extended attributes) on one or more filesystems (or parts of them). Usually it is initially run as part of the SELinux installation process (a step commonly known as labeling).\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:263", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \"setfiles\" by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/sbin/setfiles -F perm=x -F auid>=1000 -F auid!=unset -k privileged-unix-update\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230430\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230430\",\n \"cdf:title\": \"SRG-OS-000062-GPOS-00031\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230430r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230430r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030314\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"Successful/unsuccessful uses of setfiles in RHEL 8 must generate an audit record.\",\n \"cdf:description\": \"<VulnDiscussion>Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. The \\\"setfiles\\\" command is primarily used to initialize the security context fields (extended attributes) on one or more filesystems (or parts of them). Usually it is initially run as part of the SELinux installation process (a step commonly known as labeling).\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \\\"setfiles\\\" by adding or updating the following rule in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-a always,exit -F path=/usr/sbin/setfiles -F perm=x -F auid>=1000 -F auid!=unset -k privileged-unix-update\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-33074r568037_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33074r568037_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:263\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:26" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. The \\\"userhelper\\\" command is not intended to be run interactively. \\\"Userhelper\\\" provides a basic interface to change a user's password, gecos information, and shell. The main difference between this program and its traditional equivalents (passwd, chfn, chsh) is that prompts are written to standard out to make it easy for a graphical user interface wrapper to interface to it as a child process.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230431", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230431r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:264", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33075r568040_fix", + "fixtext_fixref": "F-33075r568040_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230431r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230430r627750_rule", + "version": "RHEL-08-030314", + "time": "2021-12-17T10:30:26", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33074r568037_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:263", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of userhelper in RHEL 8 must generate an audit record.", + "id": "V-230431", + "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. The \"userhelper\" command is not intended to be run interactively. \"Userhelper\" provides a basic interface to change a user's password, gecos information, and shell. The main difference between this program and its traditional equivalents (passwd, chfn, chsh) is that prompts are written to standard out to make it easy for a graphical user interface wrapper to interface to it as a child process.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:264", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \"userhelper\" by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/sbin/userhelper -F perm=x -F auid>=1000 -F auid!=unset -k privileged-unix-update\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230431\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230431\",\n \"cdf:title\": \"SRG-OS-000062-GPOS-00031\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230431r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230431r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030315\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"Successful/unsuccessful uses of userhelper in RHEL 8 must generate an audit record.\",\n \"cdf:description\": \"<VulnDiscussion>Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. The \\\"userhelper\\\" command is not intended to be run interactively. \\\"Userhelper\\\" provides a basic interface to change a user's password, gecos information, and shell. The main difference between this program and its traditional equivalents (passwd, chfn, chsh) is that prompts are written to standard out to make it easy for a graphical user interface wrapper to interface to it as a child process.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \\\"userhelper\\\" by adding or updating the following rule in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-a always,exit -F path=/usr/sbin/userhelper -F perm=x -F auid>=1000 -F auid!=unset -k privileged-unix-update\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-33075r568040_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33075r568040_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:264\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:26" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. The \\\"setsebool\\\" command sets the current state of a particular SELinux boolean or a list of booleans to a given value.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230432", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230432r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:265", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33076r568043_fix", + "fixtext_fixref": "F-33076r568043_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230432r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230431r627750_rule", + "version": "RHEL-08-030315", + "time": "2021-12-17T10:30:26", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33075r568040_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:264", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of setsebool in RHEL 8 must generate an audit record.", + "id": "V-230432", + "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. The \"setsebool\" command sets the current state of a particular SELinux boolean or a list of booleans to a given value.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:265", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \"setsebool\" by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/sbin/setsebool -F perm=x -F auid>=1000 -F auid!=unset -k privileged-unix-update\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230432\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230432\",\n \"cdf:title\": \"SRG-OS-000062-GPOS-00031\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230432r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230432r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030316\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"Successful/unsuccessful uses of setsebool in RHEL 8 must generate an audit record.\",\n \"cdf:description\": \"<VulnDiscussion>Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. The \\\"setsebool\\\" command sets the current state of a particular SELinux boolean or a list of booleans to a given value.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \\\"setsebool\\\" by adding or updating the following rule in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-a always,exit -F path=/usr/sbin/setsebool -F perm=x -F auid>=1000 -F auid!=unset -k privileged-unix-update\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-33076r568043_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33076r568043_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:265\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:26" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. The \\\"unix_chkpwd\\\" command is a helper program for the pam_unix module that verifies the password of the current user. It also checks password and account expiration dates in shadow. It is not intended to be run directly from the command line and logs a security violation if done so.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230433", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230433r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:266", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33077r568046_fix", + "fixtext_fixref": "F-33077r568046_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230433r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230432r627750_rule", + "version": "RHEL-08-030316", + "time": "2021-12-17T10:30:26", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33076r568043_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:265", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of unix_chkpwd in RHEL 8 must generate an audit record.", + "id": "V-230433", + "desc": "Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\n\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. The \"unix_chkpwd\" command is a helper program for the pam_unix module that verifies the password of the current user. It also checks password and account expiration dates in shadow. It is not intended to be run directly from the command line and logs a security violation if done so.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:266", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \"unix_chkpwd\" by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/sbin/unix_chkpwd -F perm=x -F auid>=1000 -F auid!=unset -k privileged-unix-update\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230433\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230433\",\n \"cdf:title\": \"SRG-OS-000062-GPOS-00031\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230433r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230433r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030317\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"Successful/unsuccessful uses of unix_chkpwd in RHEL 8 must generate an audit record.\",\n \"cdf:description\": \"<VulnDiscussion>Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.\\n\\nAt a minimum, the organization must audit the full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise. The \\\"unix_chkpwd\\\" command is a helper program for the pam_unix module that verifies the password of the current user. It also checks password and account expiration dates in shadow. It is not intended to be run directly from the command line and logs a security violation if done so.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \\\"unix_chkpwd\\\" by adding or updating the following rule in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-a always,exit -F path=/usr/sbin/unix_chkpwd -F perm=x -F auid>=1000 -F auid!=unset -k privileged-unix-update\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-33077r568046_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33077r568046_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:266\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:26" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"ssh-keysign\\\" program is an SSH helper program for host-based authentication.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230434", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230434r744002_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:267", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33078r744001_fix", + "fixtext_fixref": "F-33078r744001_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230434r744002_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230433r627750_rule", + "version": "RHEL-08-030317", + "time": "2021-12-17T10:30:26", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33077r568046_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:266", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the ssh-keysign in RHEL 8 must generate an audit record.", + "id": "V-230434", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"ssh-keysign\" program is an SSH helper program for host-based authentication.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:267", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"ssh-keysign\" by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/libexec/openssh/ssh-keysign -F perm=x -F auid>=1000 -F auid!=unset -k privileged-ssh\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230434\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230434\",\n \"cdf:title\": \"SRG-OS-000062-GPOS-00031\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230434r744002_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230434r744002_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030320\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"Successful/unsuccessful uses of the ssh-keysign in RHEL 8 must generate an audit record.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"ssh-keysign\\\" program is an SSH helper program for host-based authentication.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful use of the \\\"ssh-keysign\\\" by adding or updating the following rule in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-a always,exit -F path=/usr/libexec/openssh/ssh-keysign -F perm=x -F auid>=1000 -F auid!=unset -k privileged-ssh\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-33078r744001_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33078r744001_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:267\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:26" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"setfacl\\\" command is used to set file access control lists.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230435", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230435r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:268", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33079r568052_fix", + "fixtext_fixref": "F-33079r568052_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230435r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230434r744002_rule", + "version": "RHEL-08-030320", + "time": "2021-12-17T10:30:26", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33078r744001_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:267", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the setfacl command in RHEL 8 must generate an audit record.", + "id": "V-230435", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"setfacl\" command is used to set file access control lists.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:268", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"setfacl\" command by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/bin/setfacl -F perm=x -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230435\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230435\",\n \"cdf:title\": \"SRG-OS-000062-GPOS-00031\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230435r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230435r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030330\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"Successful/unsuccessful uses of the setfacl command in RHEL 8 must generate an audit record.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"setfacl\\\" command is used to set file access control lists.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful use of the \\\"setfacl\\\" command by adding or updating the following rule in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-a always,exit -F path=/usr/bin/setfacl -F perm=x -F auid>=1000 -F auid!=unset -k perm_mod\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-33079r568052_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33079r568052_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:268\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:26" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"pam_timestamp_check\\\" command is used to check if the default timestamp is valid.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230436", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230436r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:269", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33080r568055_fix", + "fixtext_fixref": "F-33080r568055_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230436r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230435r627750_rule", + "version": "RHEL-08-030330", + "time": "2021-12-17T10:30:26", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33079r568052_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:268", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the pam_timestamp_check command in RHEL 8 must generate an audit record.", + "id": "V-230436", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"pam_timestamp_check\" command is used to check if the default timestamp is valid.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:269", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \"pam_timestamp_check\" command by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/sbin/pam_timestamp_check -F perm=x -F auid>=1000 -F auid!=unset -k privileged-pam_timestamp_check\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230436\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230436\",\n \"cdf:title\": \"SRG-OS-000062-GPOS-00031\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230436r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230436r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030340\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"Successful/unsuccessful uses of the pam_timestamp_check command in RHEL 8 must generate an audit record.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"pam_timestamp_check\\\" command is used to check if the default timestamp is valid.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \\\"pam_timestamp_check\\\" command by adding or updating the following rule in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-a always,exit -F path=/usr/sbin/pam_timestamp_check -F perm=x -F auid>=1000 -F auid!=unset -k privileged-pam_timestamp_check\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-33080r568055_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33080r568055_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:269\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:26" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"newgrp\\\" command is used to change the current group ID during a login session.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230437", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230437r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:270", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33081r568058_fix", + "fixtext_fixref": "F-33081r568058_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230437r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230436r627750_rule", + "version": "RHEL-08-030340", + "time": "2021-12-17T10:30:26", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33080r568055_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:269", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the newgrp command in RHEL 8 must generate an audit record.", + "id": "V-230437", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"newgrp\" command is used to change the current group ID during a login session.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:270", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"newgrp\" command by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/bin/newgrp -F perm=x -F auid>=1000 -F auid!=unset -k priv_cmd\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230437\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230437\",\n \"cdf:title\": \"SRG-OS-000062-GPOS-00031\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230437r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230437r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030350\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"Successful/unsuccessful uses of the newgrp command in RHEL 8 must generate an audit record.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"newgrp\\\" command is used to change the current group ID during a login session.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful use of the \\\"newgrp\\\" command by adding or updating the following rule in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-a always,exit -F path=/usr/bin/newgrp -F perm=x -F auid>=1000 -F auid!=unset -k priv_cmd\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-33081r568058_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33081r568058_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:270\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:26" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"init_module\\\" command is used to load a kernel module.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230438", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230438r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:271", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33082r568061_fix", + "fixtext_fixref": "F-33082r568061_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230438r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230437r627750_rule", + "version": "RHEL-08-030350", + "time": "2021-12-17T10:30:26", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33081r568058_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:270", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the init_module command in RHEL 8 must generate an audit record.", + "id": "V-230438", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"init_module\" command is used to load a kernel module.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:271", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"init_module\" command by adding or updating the following rules in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F arch=b32 -S init_module -F auid>=1000 -F auid!=unset -k module_chng\n-a always,exit -F arch=b64 -S init_module -F auid>=1000 -F auid!=unset -k module_chng\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230438\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230438\",\n \"cdf:title\": \"SRG-OS-000062-GPOS-00031\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230438r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230438r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030360\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"Successful/unsuccessful uses of the init_module command in RHEL 8 must generate an audit record.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"init_module\\\" command is used to load a kernel module.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful use of the \\\"init_module\\\" command by adding or updating the following rules in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-a always,exit -F arch=b32 -S init_module -F auid>=1000 -F auid!=unset -k module_chng\\n-a always,exit -F arch=b64 -S init_module -F auid>=1000 -F auid!=unset -k module_chng\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-33082r568061_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33082r568061_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:271\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:27" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"rename\\\" command will rename the specified files by replacing the first occurrence of expression in their name by replacement.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230439", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230439r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:272", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33083r568064_fix", + "fixtext_fixref": "F-33083r568064_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230439r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230438r627750_rule", + "version": "RHEL-08-030360", + "time": "2021-12-17T10:30:27", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33082r568061_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:271", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the rename command in RHEL 8 must generate an audit record.", + "id": "V-230439", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"rename\" command will rename the specified files by replacing the first occurrence of expression in their name by replacement.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:272", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"rename\" command by adding or updating the following rules in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F arch=b32 -S rename -F auid>=1000 -F auid!=unset -k delete\n-a always,exit -F arch=b64 -S rename -F auid>=1000 -F auid!=unset -k delete\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230439\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230439\",\n \"cdf:title\": \"SRG-OS-000062-GPOS-00031\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230439r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230439r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030361\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"Successful/unsuccessful uses of the rename command in RHEL 8 must generate an audit record.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"rename\\\" command will rename the specified files by replacing the first occurrence of expression in their name by replacement.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful use of the \\\"rename\\\" command by adding or updating the following rules in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-a always,exit -F arch=b32 -S rename -F auid>=1000 -F auid!=unset -k delete\\n-a always,exit -F arch=b64 -S rename -F auid>=1000 -F auid!=unset -k delete\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-33083r568064_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33083r568064_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:272\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:27" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"renameat\\\" command renames a file, moving it between directories if required.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230440", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230440r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:273", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33084r568067_fix", + "fixtext_fixref": "F-33084r568067_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230440r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230439r627750_rule", + "version": "RHEL-08-030361", + "time": "2021-12-17T10:30:27", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33083r568064_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:272", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the renameat command in RHEL 8 must generate an audit record.", + "id": "V-230440", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"renameat\" command renames a file, moving it between directories if required.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:273", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"renameat\" command by adding or updating the following rules in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F arch=b32 -S renameat -F auid>=1000 -F auid!=unset -k delete\n-a always,exit -F arch=b64 -S renameat -F auid>=1000 -F auid!=unset -k delete\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230440\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230440\",\n \"cdf:title\": \"SRG-OS-000062-GPOS-00031\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230440r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230440r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030362\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"Successful/unsuccessful uses of the renameat command in RHEL 8 must generate an audit record.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"renameat\\\" command renames a file, moving it between directories if required.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful use of the \\\"renameat\\\" command by adding or updating the following rules in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-a always,exit -F arch=b32 -S renameat -F auid>=1000 -F auid!=unset -k delete\\n-a always,exit -F arch=b64 -S renameat -F auid>=1000 -F auid!=unset -k delete\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-33084r568067_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33084r568067_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:273\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:27" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"rmdir\\\" command removes empty directories.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230441", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230441r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:274", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33085r568070_fix", + "fixtext_fixref": "F-33085r568070_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230441r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230440r627750_rule", + "version": "RHEL-08-030362", + "time": "2021-12-17T10:30:27", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33084r568067_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:273", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the rmdir command in RHEL 8 must generate an audit record.", + "id": "V-230441", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"rmdir\" command removes empty directories.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:274", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"rmdir\" command by adding or updating the following rules in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F arch=b32 -S rmdir -F auid>=1000 -F auid!=unset -k delete\n-a always,exit -F arch=b64 -S rmdir -F auid>=1000 -F auid!=unset -k delete\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230441\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230441\",\n \"cdf:title\": \"SRG-OS-000062-GPOS-00031\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230441r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230441r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030363\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"Successful/unsuccessful uses of the rmdir command in RHEL 8 must generate an audit record.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"rmdir\\\" command removes empty directories.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful use of the \\\"rmdir\\\" command by adding or updating the following rules in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-a always,exit -F arch=b32 -S rmdir -F auid>=1000 -F auid!=unset -k delete\\n-a always,exit -F arch=b64 -S rmdir -F auid>=1000 -F auid!=unset -k delete\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-33085r568070_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33085r568070_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:274\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:27" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"unlink\\\" command deletes a name from the filesystem. If that name was the last link to a file and no processes have the file open, the file is deleted and the space it was using is made available for reuse. \\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230442", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230442r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:275", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33086r568073_fix", + "fixtext_fixref": "F-33086r568073_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230442r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230441r627750_rule", + "version": "RHEL-08-030363", + "time": "2021-12-17T10:30:27", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33085r568070_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:274", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the unlink command in RHEL 8 must generate an audit record.", + "id": "V-230442", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"unlink\" command deletes a name from the filesystem. If that name was the last link to a file and no processes have the file open, the file is deleted and the space it was using is made available for reuse. \n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:275", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"unlink\" command by adding or updating the following rules in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F arch=b32 -S unlink -F auid>=1000 -F auid!=unset -k delete\n-a always,exit -F arch=b64 -S unlink -F auid>=1000 -F auid!=unset -k delete\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230442\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230442\",\n \"cdf:title\": \"SRG-OS-000062-GPOS-00031\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230442r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230442r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030364\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"Successful/unsuccessful uses of the unlink command in RHEL 8 must generate an audit record.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"unlink\\\" command deletes a name from the filesystem. If that name was the last link to a file and no processes have the file open, the file is deleted and the space it was using is made available for reuse. \\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful use of the \\\"unlink\\\" command by adding or updating the following rules in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-a always,exit -F arch=b32 -S unlink -F auid>=1000 -F auid!=unset -k delete\\n-a always,exit -F arch=b64 -S unlink -F auid>=1000 -F auid!=unset -k delete\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-33086r568073_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33086r568073_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:275\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:27" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"unlinkat\\\" system call operates in exactly the same way as either \\\"unlink\\\" or \\\"rmdir\\\" except for the differences described in the manual page.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230443", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230443r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:276", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33087r568076_fix", + "fixtext_fixref": "F-33087r568076_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230443r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230442r627750_rule", + "version": "RHEL-08-030364", + "time": "2021-12-17T10:30:27", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33086r568073_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:275", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the unlinkat command in RHEL 8 must generate an audit record.", + "id": "V-230443", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"unlinkat\" system call operates in exactly the same way as either \"unlink\" or \"rmdir\" except for the differences described in the manual page.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:276", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"unlinkat\" command by adding or updating the following rules in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F arch=b32 -S unlinkat -F auid>=1000 -F auid!=unset -k delete\n-a always,exit -F arch=b64 -S unlinkat -F auid>=1000 -F auid!=unset -k delete\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230443\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230443\",\n \"cdf:title\": \"SRG-OS-000062-GPOS-00031\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230443r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230443r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030365\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"Successful/unsuccessful uses of the unlinkat command in RHEL 8 must generate an audit record.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"unlinkat\\\" system call operates in exactly the same way as either \\\"unlink\\\" or \\\"rmdir\\\" except for the differences described in the manual page.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful use of the \\\"unlinkat\\\" command by adding or updating the following rules in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-a always,exit -F arch=b32 -S unlinkat -F auid>=1000 -F auid!=unset -k delete\\n-a always,exit -F arch=b64 -S unlinkat -F auid>=1000 -F auid!=unset -k delete\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-33087r568076_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33087r568076_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:276\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:27" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"gpasswd\\\" command is used to administer /etc/group and /etc/gshadow. Every group can have administrators, members and a password.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230444", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230444r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:277", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33088r568079_fix", + "fixtext_fixref": "F-33088r568079_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230444r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230443r627750_rule", + "version": "RHEL-08-030365", + "time": "2021-12-17T10:30:27", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33087r568076_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:276", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the gpasswd command in RHEL 8 must generate an audit record.", + "id": "V-230444", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"gpasswd\" command is used to administer /etc/group and /etc/gshadow. Every group can have administrators, members and a password.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:277", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \"gpasswd\" command by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/bin/gpasswd -F perm=x -F auid>=1000 -F auid!=unset -k privileged-gpasswd\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230444\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230444\",\n \"cdf:title\": \"SRG-OS-000062-GPOS-00031\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230444r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230444r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030370\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"Successful/unsuccessful uses of the gpasswd command in RHEL 8 must generate an audit record.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"gpasswd\\\" command is used to administer /etc/group and /etc/gshadow. Every group can have administrators, members and a password.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \\\"gpasswd\\\" command by adding or updating the following rule in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-a always,exit -F path=/usr/bin/gpasswd -F perm=x -F auid>=1000 -F auid!=unset -k privileged-gpasswd\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-33088r568079_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33088r568079_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:277\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:27" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"finit_module\\\" command is used to load a kernel module.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230445", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230445r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:278", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33089r568082_fix", + "fixtext_fixref": "F-33089r568082_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230445r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230444r627750_rule", + "version": "RHEL-08-030370", + "time": "2021-12-17T10:30:27", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33088r568079_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:277", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the finit_module command in RHEL 8 must generate an audit record.", + "id": "V-230445", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"finit_module\" command is used to load a kernel module.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:278", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"finit_module\" command by adding or updating the following rules in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F arch=b32 -S finit_module -F auid>=1000 -F auid!=unset -k module_chng\n-a always,exit -F arch=b64 -S finit_module -F auid>=1000 -F auid!=unset -k module_chng\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230445\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230445\",\n \"cdf:title\": \"SRG-OS-000062-GPOS-00031\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230445r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230445r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030380\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"Successful/unsuccessful uses of the finit_module command in RHEL 8 must generate an audit record.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"finit_module\\\" command is used to load a kernel module.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful use of the \\\"finit_module\\\" command by adding or updating the following rules in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-a always,exit -F arch=b32 -S finit_module -F auid>=1000 -F auid!=unset -k module_chng\\n-a always,exit -F arch=b64 -S finit_module -F auid>=1000 -F auid!=unset -k module_chng\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-33089r568082_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33089r568082_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:278\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:27" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"delete_module\\\" command is used to unload a kernel module.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230446", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230446r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:279", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33090r568085_fix", + "fixtext_fixref": "F-33090r568085_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230446r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230445r627750_rule", + "version": "RHEL-08-030380", + "time": "2021-12-17T10:30:27", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33089r568082_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:278", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the delete_module command in RHEL 8 must generate an audit record.", + "id": "V-230446", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"delete_module\" command is used to unload a kernel module.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:279", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"delete_module\" command by adding or updating the following rules in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F arch=b32 -S delete_module -F auid>=1000 -F auid!=unset -k module_chng\n-a always,exit -F arch=b64 -S delete_module -F auid>=1000 -F auid!=unset -k module_chng\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230446\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230446\",\n \"cdf:title\": \"SRG-OS-000062-GPOS-00031\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230446r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230446r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030390\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"Successful/unsuccessful uses of the delete_module command in RHEL 8 must generate an audit record.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"delete_module\\\" command is used to unload a kernel module.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful use of the \\\"delete_module\\\" command by adding or updating the following rules in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-a always,exit -F arch=b32 -S delete_module -F auid>=1000 -F auid!=unset -k module_chng\\n-a always,exit -F arch=b64 -S delete_module -F auid>=1000 -F auid!=unset -k module_chng\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-33090r568085_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33090r568085_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:279\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:27" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"crontab\\\" command is used to maintain crontab files for individual users. Crontab is the program used to install, remove, or list the tables used to drive the cron daemon. This is similar to the task scheduler used in other operating systems.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230447", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230447r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:280", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33091r568088_fix", + "fixtext_fixref": "F-33091r568088_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230447r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230446r627750_rule", + "version": "RHEL-08-030390", + "time": "2021-12-17T10:30:27", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33090r568085_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:279", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the crontab command in RHEL 8 must generate an audit record.", + "id": "V-230447", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"crontab\" command is used to maintain crontab files for individual users. Crontab is the program used to install, remove, or list the tables used to drive the cron daemon. This is similar to the task scheduler used in other operating systems.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:280", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \"crontab\" command by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/bin/crontab -F perm=x -F auid>=1000 -F auid!=unset -k privileged-crontab\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230447\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230447\",\n \"cdf:title\": \"SRG-OS-000062-GPOS-00031\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230447r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230447r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030400\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"Successful/unsuccessful uses of the crontab command in RHEL 8 must generate an audit record.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"crontab\\\" command is used to maintain crontab files for individual users. Crontab is the program used to install, remove, or list the tables used to drive the cron daemon. This is similar to the task scheduler used in other operating systems.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \\\"crontab\\\" command by adding or updating the following rule in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-a always,exit -F path=/usr/bin/crontab -F perm=x -F auid>=1000 -F auid!=unset -k privileged-crontab\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-33091r568088_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33091r568088_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:280\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:27" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"chsh\\\" command is used to change the login shell.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230448", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230448r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:281", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33092r568091_fix", + "fixtext_fixref": "F-33092r568091_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230448r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230447r627750_rule", + "version": "RHEL-08-030400", + "time": "2021-12-17T10:30:27", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33091r568088_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:280", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the chsh command in RHEL 8 must generate an audit record.", + "id": "V-230448", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"chsh\" command is used to change the login shell.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:281", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"chsh\" command by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/bin/chsh -F perm=x -F auid>=1000 -F auid!=unset -k priv_cmd\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230448\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230448\",\n \"cdf:title\": \"SRG-OS-000062-GPOS-00031\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230448r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230448r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030410\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"Successful/unsuccessful uses of the chsh command in RHEL 8 must generate an audit record.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"chsh\\\" command is used to change the login shell.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful use of the \\\"chsh\\\" command by adding or updating the following rule in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-a always,exit -F path=/usr/bin/chsh -F perm=x -F auid>=1000 -F auid!=unset -k priv_cmd\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-33092r568091_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33092r568091_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:281\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:27" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"truncate\\\" and \\\"ftruncate\\\" functions are used to truncate a file to a specified length. \\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230449", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230449r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:282", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33093r568094_fix", + "fixtext_fixref": "F-33093r568094_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230449r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230448r627750_rule", + "version": "RHEL-08-030410", + "time": "2021-12-17T10:30:27", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33092r568091_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:281", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the truncate command in RHEL 8 must generate an audit record.", + "id": "V-230449", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"truncate\" and \"ftruncate\" functions are used to truncate a file to a specified length. \n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:282", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"truncate\" command by adding or updating the following rules in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F arch=b32 -S truncate -F exit=-EPERM -F auid>=1000 -F auid!=unset -k perm_access\n-a always,exit -F arch=b64 -S truncate -F exit=-EPERM -F auid>=1000 -F auid!=unset -k perm_access\n\n-a always,exit -F arch=b32 -S truncate -F exit=-EACCES -F auid>=1000 -F auid!=unset -k perm_access\n-a always,exit -F arch=b64 -S truncate -F exit=-EACCES -F auid>=1000 -F auid!=unset -k perm_access\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230449\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230449\",\n \"cdf:title\": \"SRG-OS-000062-GPOS-00031\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230449r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230449r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030420\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"Successful/unsuccessful uses of the truncate command in RHEL 8 must generate an audit record.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"truncate\\\" and \\\"ftruncate\\\" functions are used to truncate a file to a specified length. \\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful use of the \\\"truncate\\\" command by adding or updating the following rules in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-a always,exit -F arch=b32 -S truncate -F exit=-EPERM -F auid>=1000 -F auid!=unset -k perm_access\\n-a always,exit -F arch=b64 -S truncate -F exit=-EPERM -F auid>=1000 -F auid!=unset -k perm_access\\n\\n-a always,exit -F arch=b32 -S truncate -F exit=-EACCES -F auid>=1000 -F auid!=unset -k perm_access\\n-a always,exit -F arch=b64 -S truncate -F exit=-EACCES -F auid>=1000 -F auid!=unset -k perm_access\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-33093r568094_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33093r568094_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:282\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:27" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"openat\\\" system call opens a file specified by a relative pathname.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230450", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230450r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:283", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33094r568097_fix", + "fixtext_fixref": "F-33094r568097_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230450r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230449r627750_rule", + "version": "RHEL-08-030420", + "time": "2021-12-17T10:30:27", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33093r568094_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:282", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the openat system call in RHEL 8 must generate an audit record.", + "id": "V-230450", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"openat\" system call opens a file specified by a relative pathname.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:283", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"openat\" command by adding or updating the following rules in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F arch=b32 -S openat -F exit=-EPERM -F auid>=1000 -F auid!=unset -k perm_access\n-a always,exit -F arch=b64 -S openat -F exit=-EPERM -F auid>=1000 -F auid!=unset -k perm_access\n\n-a always,exit -F arch=b32 -S openat -F exit=-EACCES -F auid>=1000 -F auid!=unset -k perm_access\n-a always,exit -F arch=b64 -S openat -F exit=-EACCES -F auid>=1000 -F auid!=unset -k perm_access\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230450\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230450\",\n \"cdf:title\": \"SRG-OS-000062-GPOS-00031\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230450r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230450r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030430\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"Successful/unsuccessful uses of the openat system call in RHEL 8 must generate an audit record.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"openat\\\" system call opens a file specified by a relative pathname.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful use of the \\\"openat\\\" command by adding or updating the following rules in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-a always,exit -F arch=b32 -S openat -F exit=-EPERM -F auid>=1000 -F auid!=unset -k perm_access\\n-a always,exit -F arch=b64 -S openat -F exit=-EPERM -F auid>=1000 -F auid!=unset -k perm_access\\n\\n-a always,exit -F arch=b32 -S openat -F exit=-EACCES -F auid>=1000 -F auid!=unset -k perm_access\\n-a always,exit -F arch=b64 -S openat -F exit=-EACCES -F auid>=1000 -F auid!=unset -k perm_access\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-33094r568097_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33094r568097_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:283\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:27" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"open system\\\" call opens a file specified by a pathname. If the specified file does not exist, it may optionally be created by \\\"open\\\".\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230451", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230451r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:284", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33095r568100_fix", + "fixtext_fixref": "F-33095r568100_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230451r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230450r627750_rule", + "version": "RHEL-08-030430", + "time": "2021-12-17T10:30:27", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33094r568097_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:283", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the open system call in RHEL 8 must generate an audit record.", + "id": "V-230451", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"open system\" call opens a file specified by a pathname. If the specified file does not exist, it may optionally be created by \"open\".\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:284", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"open\" system call by adding or updating the following rules in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F arch=b32 -S open -F exit=-EPERM -F auid>=1000 -F auid!=unset -k perm_access\n-a always,exit -F arch=b64 -S open -F exit=-EPERM -F auid>=1000 -F auid!=unset -k perm_access\n\n-a always,exit -F arch=b32 -S open -F exit=-EACCES -F auid>=1000 -F auid!=unset -k perm_access\n-a always,exit -F arch=b64 -S open -F exit=-EACCES -F auid>=1000 -F auid!=unset -k perm_access\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230451\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230451\",\n \"cdf:title\": \"SRG-OS-000062-GPOS-00031\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230451r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230451r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030440\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"Successful/unsuccessful uses of the open system call in RHEL 8 must generate an audit record.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"open system\\\" call opens a file specified by a pathname. If the specified file does not exist, it may optionally be created by \\\"open\\\".\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful use of the \\\"open\\\" system call by adding or updating the following rules in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-a always,exit -F arch=b32 -S open -F exit=-EPERM -F auid>=1000 -F auid!=unset -k perm_access\\n-a always,exit -F arch=b64 -S open -F exit=-EPERM -F auid>=1000 -F auid!=unset -k perm_access\\n\\n-a always,exit -F arch=b32 -S open -F exit=-EACCES -F auid>=1000 -F auid!=unset -k perm_access\\n-a always,exit -F arch=b64 -S open -F exit=-EACCES -F auid>=1000 -F auid!=unset -k perm_access\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-33095r568100_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33095r568100_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:284\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:27" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"name_to_handle_at\\\" and \\\"open_by_handle_at\\\" system calls split the functionality of openat into two parts: \\\"name_to_handle_at\\\" returns an opaque handle that corresponds to a specified file; \\\"open_by_handle_at\\\" opens the file corresponding to a handle returned by a previous call to \\\"name_to_handle_at\\\" and returns an open file descriptor.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230452", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230452r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:285", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33096r568103_fix", + "fixtext_fixref": "F-33096r568103_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230452r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230451r627750_rule", + "version": "RHEL-08-030440", + "time": "2021-12-17T10:30:27", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33095r568100_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:284", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the open_by_handle_at system call in RHEL 8 must generate an audit record.", + "id": "V-230452", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"name_to_handle_at\" and \"open_by_handle_at\" system calls split the functionality of openat into two parts: \"name_to_handle_at\" returns an opaque handle that corresponds to a specified file; \"open_by_handle_at\" opens the file corresponding to a handle returned by a previous call to \"name_to_handle_at\" and returns an open file descriptor.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:285", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"open_by_handle_at\" system call by adding or updating the following rules in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F arch=b32 -S open_by_handle_at -F exit=-EPERM -F auid>=1000 -F auid!=unset -k perm_access\n-a always,exit -F arch=b64 -S open_by_handle_at -F exit=-EPERM -F auid>=1000 -F auid!=unset -k perm_access\n\n-a always,exit -F arch=b32 -S open_by_handle_at -F exit=-EACCES -F auid>=1000 -F auid!=unset -k perm_access\n-a always,exit -F arch=b64 -S open_by_handle_at -F exit=-EACCES -F auid>=1000 -F auid!=unset -k perm_access\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230452\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230452\",\n \"cdf:title\": \"SRG-OS-000062-GPOS-00031\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230452r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230452r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030450\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"Successful/unsuccessful uses of the open_by_handle_at system call in RHEL 8 must generate an audit record.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"name_to_handle_at\\\" and \\\"open_by_handle_at\\\" system calls split the functionality of openat into two parts: \\\"name_to_handle_at\\\" returns an opaque handle that corresponds to a specified file; \\\"open_by_handle_at\\\" opens the file corresponding to a handle returned by a previous call to \\\"name_to_handle_at\\\" and returns an open file descriptor.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful use of the \\\"open_by_handle_at\\\" system call by adding or updating the following rules in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-a always,exit -F arch=b32 -S open_by_handle_at -F exit=-EPERM -F auid>=1000 -F auid!=unset -k perm_access\\n-a always,exit -F arch=b64 -S open_by_handle_at -F exit=-EPERM -F auid>=1000 -F auid!=unset -k perm_access\\n\\n-a always,exit -F arch=b32 -S open_by_handle_at -F exit=-EACCES -F auid>=1000 -F auid!=unset -k perm_access\\n-a always,exit -F arch=b64 -S open_by_handle_at -F exit=-EACCES -F auid>=1000 -F auid!=unset -k perm_access\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-33096r568103_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33096r568103_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:285\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:27" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"truncate\\\" and \\\"ftruncate\\\" functions are used to truncate a file to a specified length.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230453", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230453r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:286", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33097r568106_fix", + "fixtext_fixref": "F-33097r568106_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230453r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230452r627750_rule", + "version": "RHEL-08-030450", + "time": "2021-12-17T10:30:27", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33096r568103_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:285", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the ftruncate command in RHEL 8 must generate an audit record.", + "id": "V-230453", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"truncate\" and \"ftruncate\" functions are used to truncate a file to a specified length.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:286", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"ftruncate\" command by adding or updating the following rules in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F arch=b32 -S ftruncate -F exit=-EPERM -F auid>=1000 -F auid!=unset -k perm_access\n-a always,exit -F arch=b64 -S ftruncate -F exit=-EPERM -F auid>=1000 -F auid!=unset -k perm_access\n\n-a always,exit -F arch=b32 -S ftruncate -F exit=-EACCES -F auid>=1000 -F auid!=unset -k perm_access\n-a always,exit -F arch=b64 -S ftruncate -F exit=-EACCES -F auid>=1000 -F auid!=unset -k perm_access\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230453\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230453\",\n \"cdf:title\": \"SRG-OS-000062-GPOS-00031\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230453r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230453r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030460\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"Successful/unsuccessful uses of the ftruncate command in RHEL 8 must generate an audit record.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"truncate\\\" and \\\"ftruncate\\\" functions are used to truncate a file to a specified length.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful use of the \\\"ftruncate\\\" command by adding or updating the following rules in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-a always,exit -F arch=b32 -S ftruncate -F exit=-EPERM -F auid>=1000 -F auid!=unset -k perm_access\\n-a always,exit -F arch=b64 -S ftruncate -F exit=-EPERM -F auid>=1000 -F auid!=unset -k perm_access\\n\\n-a always,exit -F arch=b32 -S ftruncate -F exit=-EACCES -F auid>=1000 -F auid!=unset -k perm_access\\n-a always,exit -F arch=b64 -S ftruncate -F exit=-EACCES -F auid>=1000 -F auid!=unset -k perm_access\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-33097r568106_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33097r568106_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:286\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:27" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"creat\\\" system call is used to open and possibly create a file or device.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230454", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230454r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:287", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33098r568109_fix", + "fixtext_fixref": "F-33098r568109_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230454r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230453r627750_rule", + "version": "RHEL-08-030460", + "time": "2021-12-17T10:30:27", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33097r568106_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:286", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the creat system call in RHEL 8 must generate an audit record.", + "id": "V-230454", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"creat\" system call is used to open and possibly create a file or device.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:287", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"creat\" system call by adding or updating the following rules in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F arch=b32 -S creat -F exit=-EPERM -F auid>=1000 -F auid!=unset -k perm_access\n-a always,exit -F arch=b64 -S creat -F exit=-EPERM -F auid>=1000 -F auid!=unset -k perm_access\n\n-a always,exit -F arch=b32 -S creat -F exit=-EACCES -F auid>=1000 -F auid!=unset -k perm_access\n-a always,exit -F arch=b64 -S creat -F exit=-EACCES -F auid>=1000 -F auid!=unset -k perm_access\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230454\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230454\",\n \"cdf:title\": \"SRG-OS-000062-GPOS-00031\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230454r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230454r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030470\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"Successful/unsuccessful uses of the creat system call in RHEL 8 must generate an audit record.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"creat\\\" system call is used to open and possibly create a file or device.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful use of the \\\"creat\\\" system call by adding or updating the following rules in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-a always,exit -F arch=b32 -S creat -F exit=-EPERM -F auid>=1000 -F auid!=unset -k perm_access\\n-a always,exit -F arch=b64 -S creat -F exit=-EPERM -F auid>=1000 -F auid!=unset -k perm_access\\n\\n-a always,exit -F arch=b32 -S creat -F exit=-EACCES -F auid>=1000 -F auid!=unset -k perm_access\\n-a always,exit -F arch=b64 -S creat -F exit=-EACCES -F auid>=1000 -F auid!=unset -k perm_access\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-33098r568109_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33098r568109_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:287\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:27" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"chown\\\" command is used to change file owner and group.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033, SRG-OS-000466-GPOS-00210\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230455", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230455r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:288", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33099r568112_fix", + "fixtext_fixref": "F-33099r568112_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230455r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230454r627750_rule", + "version": "RHEL-08-030470", + "time": "2021-12-17T10:30:27", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33098r568109_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:287", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the chown command in RHEL 8 must generate an audit record.", + "id": "V-230455", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"chown\" command is used to change file owner and group.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033, SRG-OS-000466-GPOS-00210", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:288", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"chown\" command by adding or updating the following line to \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F arch=b32 -S chown -F auid>=1000 -F auid!=unset -k perm_mod\n-a always,exit -F arch=b64 -S chown -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230455\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230455\",\n \"cdf:title\": \"SRG-OS-000062-GPOS-00031\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230455r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230455r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030480\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"Successful/unsuccessful uses of the chown command in RHEL 8 must generate an audit record.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"chown\\\" command is used to change file owner and group.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033, SRG-OS-000466-GPOS-00210</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful use of the \\\"chown\\\" command by adding or updating the following line to \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F arch=b32 -S chown -F auid>=1000 -F auid!=unset -k perm_mod\\n-a always,exit -F arch=b64 -S chown -F auid>=1000 -F auid!=unset -k perm_mod\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-33099r568112_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33099r568112_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:288\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:27" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"chmod\\\" command changes the file mode bits of each given file according to mode, which can be either a symbolic representation of changes to make, or an octal number representing the bit pattern for the new mode bits.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033, SRG-OS-000466-GPOS-00210\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230456", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230456r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:289", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33100r568115_fix", + "fixtext_fixref": "F-33100r568115_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230456r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230455r627750_rule", + "version": "RHEL-08-030480", + "time": "2021-12-17T10:30:27", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33099r568112_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:288", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the chmod command in RHEL 8 must generate an audit record.", + "id": "V-230456", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"chmod\" command changes the file mode bits of each given file according to mode, which can be either a symbolic representation of changes to make, or an octal number representing the bit pattern for the new mode bits.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033, SRG-OS-000466-GPOS-00210", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:289", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"chmod\" command by adding or updating the following line to \"/etc/audit/rules.d/audit.rules\": \n\n-a always,exit -F arch=b32 -S chmod -F auid>=1000 -F auid!=unset -k perm_mod\n-a always,exit -F arch=b64 -S chmod -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230456\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230456\",\n \"cdf:title\": \"SRG-OS-000062-GPOS-00031\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230456r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230456r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030490\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"Successful/unsuccessful uses of the chmod command in RHEL 8 must generate an audit record.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"chmod\\\" command changes the file mode bits of each given file according to mode, which can be either a symbolic representation of changes to make, or an octal number representing the bit pattern for the new mode bits.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033, SRG-OS-000466-GPOS-00210</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful use of the \\\"chmod\\\" command by adding or updating the following line to \\\"/etc/audit/rules.d/audit.rules\\\": \\n\\n-a always,exit -F arch=b32 -S chmod -F auid>=1000 -F auid!=unset -k perm_mod\\n-a always,exit -F arch=b64 -S chmod -F auid>=1000 -F auid!=unset -k perm_mod\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-33100r568115_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33100r568115_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:289\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:28" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"lchown\\\" system call is used to change the ownership of the file specified by a path, which does not dereference symbolic links.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033, SRG-OS-000466-GPOS-00210\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230457", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230457r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:290", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33101r568118_fix", + "fixtext_fixref": "F-33101r568118_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230457r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230456r627750_rule", + "version": "RHEL-08-030490", + "time": "2021-12-17T10:30:28", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33100r568115_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:289", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the lchown system call in RHEL 8 must generate an audit record.", + "id": "V-230457", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"lchown\" system call is used to change the ownership of the file specified by a path, which does not dereference symbolic links.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033, SRG-OS-000466-GPOS-00210", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:290", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"lchown\" system call by adding or updating the following lines to \"/etc/audit/rules.d/audit.rules\": \n\n-a always,exit -F arch=b32 -S lchown -F auid>=1000 -F auid!=unset -k perm_mod\n-a always,exit -F arch=b64 -S lchown -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230457\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230457\",\n \"cdf:title\": \"SRG-OS-000062-GPOS-00031\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230457r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230457r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030500\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"Successful/unsuccessful uses of the lchown system call in RHEL 8 must generate an audit record.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"lchown\\\" system call is used to change the ownership of the file specified by a path, which does not dereference symbolic links.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033, SRG-OS-000466-GPOS-00210</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful use of the \\\"lchown\\\" system call by adding or updating the following lines to \\\"/etc/audit/rules.d/audit.rules\\\": \\n\\n-a always,exit -F arch=b32 -S lchown -F auid>=1000 -F auid!=unset -k perm_mod\\n-a always,exit -F arch=b64 -S lchown -F auid>=1000 -F auid!=unset -k perm_mod\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-33101r568118_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33101r568118_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:290\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:28" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"fchownat\\\" system call is used to change ownership of a file relative to a directory file descriptor.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033, SRG-OS-000466-GPOS-00210\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230458", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230458r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:291", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33102r568121_fix", + "fixtext_fixref": "F-33102r568121_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230458r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230457r627750_rule", + "version": "RHEL-08-030500", + "time": "2021-12-17T10:30:28", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33101r568118_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:290", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the fchownat system call in RHEL 8 must generate an audit record.", + "id": "V-230458", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"fchownat\" system call is used to change ownership of a file relative to a directory file descriptor.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033, SRG-OS-000466-GPOS-00210", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:291", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"fchownat\" system call by adding or updating the following lines to \"/etc/audit/rules.d/audit.rules\": \n\n-a always,exit -F arch=b32 -S fchownat -F auid>=1000 -F auid!=unset -k perm_mod\n-a always,exit -F arch=b64 -S fchownat -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230458\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230458\",\n \"cdf:title\": \"SRG-OS-000062-GPOS-00031\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230458r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230458r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030510\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"Successful/unsuccessful uses of the fchownat system call in RHEL 8 must generate an audit record.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"fchownat\\\" system call is used to change ownership of a file relative to a directory file descriptor.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033, SRG-OS-000466-GPOS-00210</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful use of the \\\"fchownat\\\" system call by adding or updating the following lines to \\\"/etc/audit/rules.d/audit.rules\\\": \\n\\n-a always,exit -F arch=b32 -S fchownat -F auid>=1000 -F auid!=unset -k perm_mod\\n-a always,exit -F arch=b64 -S fchownat -F auid>=1000 -F auid!=unset -k perm_mod\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-33102r568121_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33102r568121_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:291\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:28" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"fchown\\\" system call is used to change the ownership of a file referred to by the open file descriptor.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033, SRG-OS-000466-GPOS-00210\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230459", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230459r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:292", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33103r568124_fix", + "fixtext_fixref": "F-33103r568124_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230459r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230458r627750_rule", + "version": "RHEL-08-030510", + "time": "2021-12-17T10:30:28", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33102r568121_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:291", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the fchown system call in RHEL 8 must generate an audit record.", + "id": "V-230459", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"fchown\" system call is used to change the ownership of a file referred to by the open file descriptor.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033, SRG-OS-000466-GPOS-00210", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:292", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"fchown\" system call by adding or updating the following line to \"/etc/audit/rules.d/audit.rules\": \n\n-a always,exit -F arch=b32 -S fchown -F auid>=1000 -F auid!=unset -k perm_mod\n-a always,exit -F arch=b64 -S fchown -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230459\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230459\",\n \"cdf:title\": \"SRG-OS-000062-GPOS-00031\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230459r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230459r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030520\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"Successful/unsuccessful uses of the fchown system call in RHEL 8 must generate an audit record.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"fchown\\\" system call is used to change the ownership of a file referred to by the open file descriptor.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033, SRG-OS-000466-GPOS-00210</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful use of the \\\"fchown\\\" system call by adding or updating the following line to \\\"/etc/audit/rules.d/audit.rules\\\": \\n\\n-a always,exit -F arch=b32 -S fchown -F auid>=1000 -F auid!=unset -k perm_mod\\n-a always,exit -F arch=b64 -S fchown -F auid>=1000 -F auid!=unset -k perm_mod\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-33103r568124_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33103r568124_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:292\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:28" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"fchmodat\\\" system call is used to change permissions of a file relative to a directory file descriptor.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033, SRG-OS-000466-GPOS-00210\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230460", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230460r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:293", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33104r568127_fix", + "fixtext_fixref": "F-33104r568127_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230460r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230459r627750_rule", + "version": "RHEL-08-030520", + "time": "2021-12-17T10:30:28", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33103r568124_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:292", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the fchmodat system call in RHEL 8 must generate an audit record.", + "id": "V-230460", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"fchmodat\" system call is used to change permissions of a file relative to a directory file descriptor.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033, SRG-OS-000466-GPOS-00210", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:293", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"fchmodat\" system call by adding or updating the following lines to \"/etc/audit/rules.d/audit.rules\": \n\n-a always,exit -F arch=b32 -S fchmodat -F auid>=1000 -F auid!=unset -k perm_mod\n-a always,exit -F arch=b64 -S fchmodat -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230460\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230460\",\n \"cdf:title\": \"SRG-OS-000062-GPOS-00031\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230460r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230460r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030530\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"Successful/unsuccessful uses of the fchmodat system call in RHEL 8 must generate an audit record.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"fchmodat\\\" system call is used to change permissions of a file relative to a directory file descriptor.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033, SRG-OS-000466-GPOS-00210</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful use of the \\\"fchmodat\\\" system call by adding or updating the following lines to \\\"/etc/audit/rules.d/audit.rules\\\": \\n\\n-a always,exit -F arch=b32 -S fchmodat -F auid>=1000 -F auid!=unset -k perm_mod\\n-a always,exit -F arch=b64 -S fchmodat -F auid>=1000 -F auid!=unset -k perm_mod\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-33104r568127_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33104r568127_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:293\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:28" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"fchmod\\\" system call is used to change permissions of a file.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033, SRG-OS-000466-GPOS-00210\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230461", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230461r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:294", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33105r568130_fix", + "fixtext_fixref": "F-33105r568130_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230461r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230460r627750_rule", + "version": "RHEL-08-030530", + "time": "2021-12-17T10:30:28", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33104r568127_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:293", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the fchmod system call in RHEL 8 must generate an audit record.", + "id": "V-230461", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"fchmod\" system call is used to change permissions of a file.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033, SRG-OS-000466-GPOS-00210", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:294", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"fchmod\" system call by adding or updating the following line to \"/etc/audit/rules.d/audit.rules\": \n\n-a always,exit -F arch=b32 -S fchmod -F auid>=1000 -F auid!=unset -k perm_mod\n-a always,exit -F arch=b64 -S fchmod -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230461\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230461\",\n \"cdf:title\": \"SRG-OS-000062-GPOS-00031\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230461r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230461r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030540\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"Successful/unsuccessful uses of the fchmod system call in RHEL 8 must generate an audit record.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"fchmod\\\" system call is used to change permissions of a file.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000064-GPOS-00033, SRG-OS-000466-GPOS-00210</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful use of the \\\"fchmod\\\" system call by adding or updating the following line to \\\"/etc/audit/rules.d/audit.rules\\\": \\n\\n-a always,exit -F arch=b32 -S fchmod -F auid>=1000 -F auid!=unset -k perm_mod\\n-a always,exit -F arch=b64 -S fchmod -F auid>=1000 -F auid!=unset -k perm_mod\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-33105r568130_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33105r568130_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:294\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:28" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"sudo\\\" command allows a permitted user to execute a command as the superuser or another user, as specified by the security policy.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000466-GPOS-00210\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230462", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230462r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:295", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33106r568133_fix", + "fixtext_fixref": "F-33106r568133_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230462r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230461r627750_rule", + "version": "RHEL-08-030540", + "time": "2021-12-17T10:30:28", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33105r568130_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:294", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the sudo command in RHEL 8 must generate an audit record.", + "id": "V-230462", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"sudo\" command allows a permitted user to execute a command as the superuser or another user, as specified by the security policy.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000466-GPOS-00210", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:295", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"sudo\" command by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/bin/sudo -F perm=x -F auid>=1000 -F auid!=unset -k priv_cmd\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230462\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230462\",\n \"cdf:title\": \"SRG-OS-000062-GPOS-00031\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230462r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230462r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030550\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"Successful/unsuccessful uses of the sudo command in RHEL 8 must generate an audit record.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"sudo\\\" command allows a permitted user to execute a command as the superuser or another user, as specified by the security policy.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000466-GPOS-00210</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful use of the \\\"sudo\\\" command by adding or updating the following rule in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-a always,exit -F path=/usr/bin/sudo -F perm=x -F auid>=1000 -F auid!=unset -k priv_cmd\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-33106r568133_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33106r568133_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:295\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:28" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"usermod\\\" command modifies the system account files to reflect the changes that are specified on the command line.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000466-GPOS-00210\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230463", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230463r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:296", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33107r568136_fix", + "fixtext_fixref": "F-33107r568136_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230463r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230462r627750_rule", + "version": "RHEL-08-030550", + "time": "2021-12-17T10:30:28", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33106r568133_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:295", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the usermod command in RHEL 8 must generate an audit record.", + "id": "V-230463", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"usermod\" command modifies the system account files to reflect the changes that are specified on the command line.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000466-GPOS-00210", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:296", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \"usermod\" command by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/sbin/usermod -F perm=x -F auid>=1000 -F auid!=unset -k privileged-usermod\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230463\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230463\",\n \"cdf:title\": \"SRG-OS-000062-GPOS-00031\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230463r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230463r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030560\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"Successful/unsuccessful uses of the usermod command in RHEL 8 must generate an audit record.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"usermod\\\" command modifies the system account files to reflect the changes that are specified on the command line.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000466-GPOS-00210</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful uses of the \\\"usermod\\\" command by adding or updating the following rule in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-a always,exit -F path=/usr/sbin/usermod -F perm=x -F auid>=1000 -F auid!=unset -k privileged-usermod\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-33107r568136_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33107r568136_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:296\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:28" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"chacl\\\" command is used to change the access control list of a file or directory.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000466-GPOS-00210\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230464", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230464r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:297", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33108r568139_fix", + "fixtext_fixref": "F-33108r568139_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230464r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230463r627750_rule", + "version": "RHEL-08-030560", + "time": "2021-12-17T10:30:28", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33107r568136_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:296", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the chacl command in RHEL 8 must generate an audit record.", + "id": "V-230464", + "desc": "Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"chacl\" command is used to change the access control list of a file or directory.\n\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \"-1\". The AUID representation is an unsigned 32-bit integer, which equals \"4294967295\". The audit system interprets \"-1\", \"4294967295\", and \"unset\" in the same way.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000466-GPOS-00210", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:297", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful use of the \"chacl\" command by adding or updating the following rule in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-a always,exit -F path=/usr/bin/chacl -F perm=x -F auid>=1000 -F auid!=unset -k perm_mod\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230464\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230464\",\n \"cdf:title\": \"SRG-OS-000062-GPOS-00031\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230464r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230464r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030570\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"Successful/unsuccessful uses of the chacl command in RHEL 8 must generate an audit record.\",\n \"cdf:description\": \"<VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"chacl\\\" command is used to change the access control list of a file or directory.\\n\\nWhen a user logs on, the AUID is set to the UID of the account that is being authenticated. Daemons are not user sessions and have the loginuid set to \\\"-1\\\". The AUID representation is an unsigned 32-bit integer, which equals \\\"4294967295\\\". The audit system interprets \\\"-1\\\", \\\"4294967295\\\", and \\\"unset\\\" in the same way.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000466-GPOS-00210</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful use of the \\\"chacl\\\" command by adding or updating the following rule in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-a always,exit -F path=/usr/bin/chacl -F perm=x -F auid>=1000 -F auid!=unset -k perm_mod\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-33108r568139_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33108r568139_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:297\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:28" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without the capability to generate audit records, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"kmod\\\" command is used to control Linux Kernel modules.\\n\\nThe list of audited events is the set of events for which audits are to be generated. This set of events is typically a subset of the list of all events for which the system is capable of generating audit records.\\n\\nDoD has defined the list of events for which RHEL 8 will provide an audit record generation capability as the following:\\n\\n1) Successful and unsuccessful attempts to access, modify, or delete privileges, security objects, security levels, or categories of information (e.g., classification levels);\\n\\n2) Access actions, such as successful and unsuccessful logon attempts, privileged activities or other system-level access, starting and ending time for user access to the system, concurrent logons from different workstations, successful and unsuccessful accesses to objects, all program initiations, and all direct access to the information system;\\n\\n3) All account creations, modifications, disabling, and terminations; and \\n\\n4) All kernel module load, unload, and restart actions.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000471-GPOS-00216, SRG-OS-000477-GPOS-00222\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230465", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230465r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:298", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33109r568142_fix", + "fixtext_fixref": "F-33109r568142_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230465r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230464r627750_rule", + "version": "RHEL-08-030570", + "time": "2021-12-17T10:30:28", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33108r568139_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:297", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful uses of the kmod command in RHEL 8 must generate an audit record.", + "id": "V-230465", + "desc": "Without the capability to generate audit records, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \"kmod\" command is used to control Linux Kernel modules.\n\nThe list of audited events is the set of events for which audits are to be generated. This set of events is typically a subset of the list of all events for which the system is capable of generating audit records.\n\nDoD has defined the list of events for which RHEL 8 will provide an audit record generation capability as the following:\n\n1) Successful and unsuccessful attempts to access, modify, or delete privileges, security objects, security levels, or categories of information (e.g., classification levels);\n\n2) Access actions, such as successful and unsuccessful logon attempts, privileged activities or other system-level access, starting and ending time for user access to the system, concurrent logons from different workstations, successful and unsuccessful accesses to objects, all program initiations, and all direct access to the information system;\n\n3) All account creations, modifications, disabling, and terminations; and \n\n4) All kernel module load, unload, and restart actions.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000471-GPOS-00216, SRG-OS-000477-GPOS-00222", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:298", + "label": "check" + }, + { + "data": "Configure RHEL 8 to audit the execution of the module management program \"kmod\" by adding or updating the following line to \"/etc/audit/rules.d/audit.rules\":\n\n-a always,exit -F path=/usr/bin/kmod -F perm=x -F auid>=1000 -F auid!=unset -k modules\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230465\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230465\",\n \"cdf:title\": \"SRG-OS-000062-GPOS-00031\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230465r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230465r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030580\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"Successful/unsuccessful uses of the kmod command in RHEL 8 must generate an audit record.\",\n \"cdf:description\": \"<VulnDiscussion>Without the capability to generate audit records, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter). The \\\"kmod\\\" command is used to control Linux Kernel modules.\\n\\nThe list of audited events is the set of events for which audits are to be generated. This set of events is typically a subset of the list of all events for which the system is capable of generating audit records.\\n\\nDoD has defined the list of events for which RHEL 8 will provide an audit record generation capability as the following:\\n\\n1) Successful and unsuccessful attempts to access, modify, or delete privileges, security objects, security levels, or categories of information (e.g., classification levels);\\n\\n2) Access actions, such as successful and unsuccessful logon attempts, privileged activities or other system-level access, starting and ending time for user access to the system, concurrent logons from different workstations, successful and unsuccessful accesses to objects, all program initiations, and all direct access to the information system;\\n\\n3) All account creations, modifications, disabling, and terminations; and \\n\\n4) All kernel module load, unload, and restart actions.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000471-GPOS-00216, SRG-OS-000477-GPOS-00222</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure RHEL 8 to audit the execution of the module management program \\\"kmod\\\" by adding or updating the following line to \\\"/etc/audit/rules.d/audit.rules\\\":\\n\\n-a always,exit -F path=/usr/bin/kmod -F perm=x -F auid>=1000 -F auid!=unset -k modules\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-33109r568142_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33109r568142_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:298\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:28" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000169" + ], + "nist": [ + "AU-12 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without the capability to generate audit records, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nThe list of audited events is the set of events for which audits are to be generated. This set of events is typically a subset of the list of all events for which the system is capable of generating audit records.\\n\\nDoD has defined the list of events for which RHEL 8 will provide an audit record generation capability as the following:\\n\\n1) Successful and unsuccessful attempts to access, modify, or delete privileges, security objects, security levels, or categories of information (e.g., classification levels);\\n\\n2) Access actions, such as successful and unsuccessful logon attempts, privileged activities or other system-level access, starting and ending time for user access to the system, concurrent logons from different workstations, successful and unsuccessful accesses to objects, all program initiations, and all direct access to the information system;\\n\\n3) All account creations, modifications, disabling, and terminations; and \\n\\n4) All kernel module load, unload, and restart actions.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000473-GPOS-00218\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230467", + "group_title": "SRG-OS-000062-GPOS-00031", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230467r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:299", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33111r568148_fix", + "fixtext_fixref": "F-33111r568148_fix", + "ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230467r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230465r627750_rule", + "version": "RHEL-08-030580", + "time": "2021-12-17T10:30:28", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33109r568142_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:298", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "Successful/unsuccessful modifications to the lastlog file in RHEL 8 must generate an audit record.", + "id": "V-230467", + "desc": "Without the capability to generate audit records, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\n\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\n\nThe list of audited events is the set of events for which audits are to be generated. This set of events is typically a subset of the list of all events for which the system is capable of generating audit records.\n\nDoD has defined the list of events for which RHEL 8 will provide an audit record generation capability as the following:\n\n1) Successful and unsuccessful attempts to access, modify, or delete privileges, security objects, security levels, or categories of information (e.g., classification levels);\n\n2) Access actions, such as successful and unsuccessful logon attempts, privileged activities or other system-level access, starting and ending time for user access to the system, concurrent logons from different workstations, successful and unsuccessful accesses to objects, all program initiations, and all direct access to the information system;\n\n3) All account creations, modifications, disabling, and terminations; and \n\n4) All kernel module load, unload, and restart actions.\n\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000473-GPOS-00218", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:299", + "label": "check" + }, + { + "data": "Configure the audit system to generate an audit event for any successful/unsuccessful modifications to the \"lastlog\" file by adding or updating the following rules in the \"/etc/audit/rules.d/audit.rules\" file:\n\n-w /var/log/lastlog -p wa -k logins\n\nThe audit daemon must be restarted for the changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230467\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230467\",\n \"cdf:title\": \"SRG-OS-000062-GPOS-00031\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230467r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230467r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030600\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"Successful/unsuccessful modifications to the lastlog file in RHEL 8 must generate an audit record.\",\n \"cdf:description\": \"<VulnDiscussion>Without the capability to generate audit records, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\\n\\nAudit records can be generated from various components within the information system (e.g., module or policy filter).\\n\\nThe list of audited events is the set of events for which audits are to be generated. This set of events is typically a subset of the list of all events for which the system is capable of generating audit records.\\n\\nDoD has defined the list of events for which RHEL 8 will provide an audit record generation capability as the following:\\n\\n1) Successful and unsuccessful attempts to access, modify, or delete privileges, security objects, security levels, or categories of information (e.g., classification levels);\\n\\n2) Access actions, such as successful and unsuccessful logon attempts, privileged activities or other system-level access, starting and ending time for user access to the system, concurrent logons from different workstations, successful and unsuccessful accesses to objects, all program initiations, and all direct access to the information system;\\n\\n3) All account creations, modifications, disabling, and terminations; and \\n\\n4) All kernel module load, unload, and restart actions.\\n\\nSatisfies: SRG-OS-000062-GPOS-00031, SRG-OS-000037-GPOS-00015, SRG-OS-000042-GPOS-00020, SRG-OS-000062-GPOS-00031, SRG-OS-000392-GPOS-00172, SRG-OS-000462-GPOS-00206, SRG-OS-000471-GPOS-00215, SRG-OS-000473-GPOS-00218</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000169\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the audit system to generate an audit event for any successful/unsuccessful modifications to the \\\"lastlog\\\" file by adding or updating the following rules in the \\\"/etc/audit/rules.d/audit.rules\\\" file:\\n\\n-w /var/log/lastlog -p wa -k logins\\n\\nThe audit daemon must be restarted for the changes to take effect.\",\n \"fixref\": \"F-33111r568148_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33111r568148_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:299\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:28" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000171" + ], + "nist": [ + "AU-12 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without the capability to restrict the roles and individuals that can select which events are audited, unauthorized personnel may be able to prevent the auditing of critical events. Misconfigured audits may degrade the system's performance by overwhelming the audit log. Misconfigured audits may also make it more difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230471", + "group_title": "SRG-OS-000063-GPOS-00032", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230471r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:303", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33115r568160_fix", + "fixtext_fixref": "F-33115r568160_fix", + "ident": { + "text": "CCI-000171", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230471r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230467r627750_rule", + "version": "RHEL-08-030600", + "time": "2021-12-17T10:30:28", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000169", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33111r568148_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:299", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must allow only the Information System Security Manager (ISSM) (or individuals or roles appointed by the ISSM) to select which auditable events are to be audited.", + "id": "V-230471", + "desc": "Without the capability to restrict the roles and individuals that can select which events are audited, unauthorized personnel may be able to prevent the auditing of critical events. Misconfigured audits may degrade the system's performance by overwhelming the audit log. Misconfigured audits may also make it more difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:303", + "label": "check" + }, + { + "data": "Configure the files in directory \"/etc/audit/rules.d/\" and the \"/etc/audit/auditd.conf\" file to have a mode of \"0640\" with the following commands:\n\n$ sudo chmod 0640 /etc/audit/rules.d/audit.rules\n$ sudo chmod 0640 /etc/audit/rules.d/[customrulesfile].rules\n$ sudo chmod 0640 /etc/audit/auditd.conf", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230471\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230471\",\n \"cdf:title\": \"SRG-OS-000063-GPOS-00032\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230471r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230471r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030610\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must allow only the Information System Security Manager (ISSM) (or individuals or roles appointed by the ISSM) to select which auditable events are to be audited.\",\n \"cdf:description\": \"<VulnDiscussion>Without the capability to restrict the roles and individuals that can select which events are audited, unauthorized personnel may be able to prevent the auditing of critical events. Misconfigured audits may degrade the system's performance by overwhelming the audit log. Misconfigured audits may also make it more difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000171\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the files in directory \\\"/etc/audit/rules.d/\\\" and the \\\"/etc/audit/auditd.conf\\\" file to have a mode of \\\"0640\\\" with the following commands:\\n\\n$ sudo chmod 0640 /etc/audit/rules.d/audit.rules\\n$ sudo chmod 0640 /etc/audit/rules.d/[customrulesfile].rules\\n$ sudo chmod 0640 /etc/audit/auditd.conf\",\n \"fixref\": \"F-33115r568160_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33115r568160_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:303\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:30:28" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001493" + ], + "nist": [ + "AU-9 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Protecting audit information also includes identifying and protecting the tools used to view and manipulate log data. Therefore, protecting audit tools is necessary to prevent unauthorized operation on audit information.\\n\\nRHEL 8 systems providing tools to interface with audit information will leverage user permissions and roles identifying the user accessing the tools, and the corresponding rights the user enjoys, to make access decisions regarding the access to audit tools.\\n\\nAudit tools include, but are not limited to, vendor-provided and open source audit tools needed to successfully view and manipulate audit information system activity and records. Audit tools include custom queries and report generators.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230472", + "group_title": "SRG-OS-000256-GPOS-00097", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230472r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:304", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33116r568163_fix", + "fixtext_fixref": "F-33116r568163_fix", + "ident": { + "text": "CCI-001493", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230472r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230471r627750_rule", + "version": "RHEL-08-030610", + "time": "2021-12-17T10:30:28", + "weight": "10.0", + "severity": "medium", + "cdf:result": "pass", + "cdf:ident": { + "text": "CCI-000171", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33115r568160_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:303", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 audit tools must have a mode of 0755 or less permissive.", + "id": "V-230472", + "desc": "Protecting audit information also includes identifying and protecting the tools used to view and manipulate log data. Therefore, protecting audit tools is necessary to prevent unauthorized operation on audit information.\n\nRHEL 8 systems providing tools to interface with audit information will leverage user permissions and roles identifying the user accessing the tools, and the corresponding rights the user enjoys, to make access decisions regarding the access to audit tools.\n\nAudit tools include, but are not limited to, vendor-provided and open source audit tools needed to successfully view and manipulate audit information system activity and records. Audit tools include custom queries and report generators.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:304", + "label": "check" + }, + { + "data": "Configure the audit tools to be protected from unauthorized access by setting the correct permissive mode using the following command:\n\n$ sudo chmod 0755 [audit_tool]\n\nReplace \"[audit_tool]\" with the audit tool that does not have the correct permissive mode.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230472\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230472\",\n \"cdf:title\": \"SRG-OS-000256-GPOS-00097\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230472r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230472r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030620\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 audit tools must have a mode of 0755 or less permissive.\",\n \"cdf:description\": \"<VulnDiscussion>Protecting audit information also includes identifying and protecting the tools used to view and manipulate log data. Therefore, protecting audit tools is necessary to prevent unauthorized operation on audit information.\\n\\nRHEL 8 systems providing tools to interface with audit information will leverage user permissions and roles identifying the user accessing the tools, and the corresponding rights the user enjoys, to make access decisions regarding the access to audit tools.\\n\\nAudit tools include, but are not limited to, vendor-provided and open source audit tools needed to successfully view and manipulate audit information system activity and records. Audit tools include custom queries and report generators.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-001493\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the audit tools to be protected from unauthorized access by setting the correct permissive mode using the following command:\\n\\n$ sudo chmod 0755 [audit_tool]\\n\\nReplace \\\"[audit_tool]\\\" with the audit tool that does not have the correct permissive mode.\",\n \"fixref\": \"F-33116r568163_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33116r568163_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:304\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:30:28" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001493" + ], + "nist": [ + "AU-9 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Protecting audit information also includes identifying and protecting the tools used to view and manipulate log data. Therefore, protecting audit tools is necessary to prevent unauthorized operation on audit information.\\n\\nRHEL 8 systems providing tools to interface with audit information will leverage user permissions and roles identifying the user accessing the tools, and the corresponding rights the user enjoys, to make access decisions regarding the access to audit tools.\\n\\nAudit tools include, but are not limited to, vendor-provided and open source audit tools needed to successfully view and manipulate audit information system activity and records. Audit tools include custom queries and report generators.\\n\\nSatisfies: SRG-OS-000256-GPOS-00097, SRG-OS-000257-GPOS-00098, SRG-OS-000258-GPOS-00099\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230473", + "group_title": "SRG-OS-000256-GPOS-00097", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230473r744008_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:305", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33117r568166_fix", + "fixtext_fixref": "F-33117r568166_fix", + "ident": { + "text": "CCI-001493", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230473r744008_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230472r627750_rule", + "version": "RHEL-08-030620", + "time": "2021-12-17T10:30:28", + "weight": "10.0", + "severity": "medium", + "cdf:result": "pass", + "cdf:ident": { + "text": "CCI-001493", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33116r568163_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:304", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 audit tools must be owned by root.", + "id": "V-230473", + "desc": "Protecting audit information also includes identifying and protecting the tools used to view and manipulate log data. Therefore, protecting audit tools is necessary to prevent unauthorized operation on audit information.\n\nRHEL 8 systems providing tools to interface with audit information will leverage user permissions and roles identifying the user accessing the tools, and the corresponding rights the user enjoys, to make access decisions regarding the access to audit tools.\n\nAudit tools include, but are not limited to, vendor-provided and open source audit tools needed to successfully view and manipulate audit information system activity and records. Audit tools include custom queries and report generators.\n\nSatisfies: SRG-OS-000256-GPOS-00097, SRG-OS-000257-GPOS-00098, SRG-OS-000258-GPOS-00099", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:305", + "label": "check" + }, + { + "data": "Configure the audit tools to be owned by \"root\", by running the following command:\n\n$ sudo chown root [audit_tool]\n\nReplace \"[audit_tool]\" with each audit tool not owned by \"root\".", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230473\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230473\",\n \"cdf:title\": \"SRG-OS-000256-GPOS-00097\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230473r744008_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230473r744008_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030630\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 audit tools must be owned by root.\",\n \"cdf:description\": \"<VulnDiscussion>Protecting audit information also includes identifying and protecting the tools used to view and manipulate log data. Therefore, protecting audit tools is necessary to prevent unauthorized operation on audit information.\\n\\nRHEL 8 systems providing tools to interface with audit information will leverage user permissions and roles identifying the user accessing the tools, and the corresponding rights the user enjoys, to make access decisions regarding the access to audit tools.\\n\\nAudit tools include, but are not limited to, vendor-provided and open source audit tools needed to successfully view and manipulate audit information system activity and records. Audit tools include custom queries and report generators.\\n\\nSatisfies: SRG-OS-000256-GPOS-00097, SRG-OS-000257-GPOS-00098, SRG-OS-000258-GPOS-00099</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-001493\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the audit tools to be owned by \\\"root\\\", by running the following command:\\n\\n$ sudo chown root [audit_tool]\\n\\nReplace \\\"[audit_tool]\\\" with each audit tool not owned by \\\"root\\\".\",\n \"fixref\": \"F-33117r568166_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33117r568166_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:305\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:30:28" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001493" + ], + "nist": [ + "AU-9 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Protecting audit information also includes identifying and protecting the tools used to view and manipulate log data. Therefore, protecting audit tools is necessary to prevent unauthorized operation on audit information.\\n\\nRHEL 8 systems providing tools to interface with audit information will leverage user permissions and roles identifying the user accessing the tools, and the corresponding rights the user enjoys, to make access decisions regarding the access to audit tools.\\n\\nAudit tools include, but are not limited to, vendor-provided and open source audit tools needed to successfully view and manipulate audit information system activity and records. Audit tools include custom queries and report generators.\\n\\nSatisfies: SRG-OS-000256-GPOS-00097, SRG-OS-000257-GPOS-00098, SRG-OS-000258-GPOS-00099\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230474", + "group_title": "SRG-OS-000256-GPOS-00097", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230474r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:306", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33118r568169_fix", + "fixtext_fixref": "F-33118r568169_fix", + "ident": { + "text": "CCI-001493", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230474r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230473r744008_rule", + "version": "RHEL-08-030630", + "time": "2021-12-17T10:30:28", + "weight": "10.0", + "severity": "medium", + "cdf:result": "pass", + "cdf:ident": { + "text": "CCI-001493", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33117r568166_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:305", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 audit tools must be group-owned by root.", + "id": "V-230474", + "desc": "Protecting audit information also includes identifying and protecting the tools used to view and manipulate log data. Therefore, protecting audit tools is necessary to prevent unauthorized operation on audit information.\n\nRHEL 8 systems providing tools to interface with audit information will leverage user permissions and roles identifying the user accessing the tools, and the corresponding rights the user enjoys, to make access decisions regarding the access to audit tools.\n\nAudit tools include, but are not limited to, vendor-provided and open source audit tools needed to successfully view and manipulate audit information system activity and records. Audit tools include custom queries and report generators.\n\nSatisfies: SRG-OS-000256-GPOS-00097, SRG-OS-000257-GPOS-00098, SRG-OS-000258-GPOS-00099", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:306", + "label": "check" + }, + { + "data": "Configure the audit tools to be group-owned by \"root\", by running the following command:\n\n$ sudo chgrp root [audit_tool]\n\nReplace \"[audit_tool]\" with each audit tool not group-owned by \"root\".", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230474\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230474\",\n \"cdf:title\": \"SRG-OS-000256-GPOS-00097\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230474r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230474r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030640\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 audit tools must be group-owned by root.\",\n \"cdf:description\": \"<VulnDiscussion>Protecting audit information also includes identifying and protecting the tools used to view and manipulate log data. Therefore, protecting audit tools is necessary to prevent unauthorized operation on audit information.\\n\\nRHEL 8 systems providing tools to interface with audit information will leverage user permissions and roles identifying the user accessing the tools, and the corresponding rights the user enjoys, to make access decisions regarding the access to audit tools.\\n\\nAudit tools include, but are not limited to, vendor-provided and open source audit tools needed to successfully view and manipulate audit information system activity and records. Audit tools include custom queries and report generators.\\n\\nSatisfies: SRG-OS-000256-GPOS-00097, SRG-OS-000257-GPOS-00098, SRG-OS-000258-GPOS-00099</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-001493\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the audit tools to be group-owned by \\\"root\\\", by running the following command:\\n\\n$ sudo chgrp root [audit_tool]\\n\\nReplace \\\"[audit_tool]\\\" with each audit tool not group-owned by \\\"root\\\".\",\n \"fixref\": \"F-33118r568169_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33118r568169_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:306\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:30:28" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\\n\\nOff-loading is a common process in information systems with limited audit storage capacity.\\n\\nRHEL 8 installation media provides \\\"rsyslogd\\\". \\\"rsyslogd\\\" is a system utility providing support for message logging. Support for both internet and UNIX domain sockets enables this utility to support both local and remote logging. Couple this utility with \\\"gnutls\\\" (which is a secure communications library implementing the SSL, TLS and DTLS protocols), and you have a method to securely encrypt and off-load auditing.\\n\\nRsyslog provides three ways to forward message: the traditional UDP transport, which is extremely lossy but standard; the plain TCP based transport, which loses messages only during certain situations but is widely available; and the RELP transport, which does not lose messages but is currently available only as part of the rsyslogd 3.15.0 and above.\\nExamples of each configuration:\\nUDP *.* @remotesystemname\\nTCP *.* @@remotesystemname\\nRELP *.* :omrelp:remotesystemname:2514\\nNote that a port number was given as there is no standard port for RELP.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230477", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230477r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:412", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33121r568178_fix", + "fixtext_fixref": "F-33121r568178_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230477r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230474r627750_rule", + "version": "RHEL-08-030640", + "time": "2021-12-17T10:30:28", + "weight": "10.0", + "severity": "medium", + "cdf:result": "pass", + "cdf:ident": { + "text": "CCI-001493", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33118r568169_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:306", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must have the packages required for offloading audit logs installed.", + "id": "V-230477", + "desc": "Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\n\nOff-loading is a common process in information systems with limited audit storage capacity.\n\nRHEL 8 installation media provides \"rsyslogd\". \"rsyslogd\" is a system utility providing support for message logging. Support for both internet and UNIX domain sockets enables this utility to support both local and remote logging. Couple this utility with \"gnutls\" (which is a secure communications library implementing the SSL, TLS and DTLS protocols), and you have a method to securely encrypt and off-load auditing.\n\nRsyslog provides three ways to forward message: the traditional UDP transport, which is extremely lossy but standard; the plain TCP based transport, which loses messages only during certain situations but is widely available; and the RELP transport, which does not lose messages but is currently available only as part of the rsyslogd 3.15.0 and above.\nExamples of each configuration:\nUDP *.* @remotesystemname\nTCP *.* @@remotesystemname\nRELP *.* :omrelp:remotesystemname:2514\nNote that a port number was given as there is no standard port for RELP.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:412", + "label": "check" + }, + { + "data": "Configure the operating system to offload audit logs by installing the required packages with the following command:\n\n$ sudo yum install rsyslog", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230477\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230477\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230477r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230477r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030670\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must have the packages required for offloading audit logs installed.\",\n \"cdf:description\": \"<VulnDiscussion>Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\\n\\nOff-loading is a common process in information systems with limited audit storage capacity.\\n\\nRHEL 8 installation media provides \\\"rsyslogd\\\". \\\"rsyslogd\\\" is a system utility providing support for message logging. Support for both internet and UNIX domain sockets enables this utility to support both local and remote logging. Couple this utility with \\\"gnutls\\\" (which is a secure communications library implementing the SSL, TLS and DTLS protocols), and you have a method to securely encrypt and off-load auditing.\\n\\nRsyslog provides three ways to forward message: the traditional UDP transport, which is extremely lossy but standard; the plain TCP based transport, which loses messages only during certain situations but is widely available; and the RELP transport, which does not lose messages but is currently available only as part of the rsyslogd 3.15.0 and above.\\nExamples of each configuration:\\nUDP *.* @remotesystemname\\nTCP *.* @@remotesystemname\\nRELP *.* :omrelp:remotesystemname:2514\\nNote that a port number was given as there is no standard port for RELP.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to offload audit logs by installing the required packages with the following command:\\n\\n$ sudo yum install rsyslog\",\n \"fixref\": \"F-33121r568178_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33121r568178_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:412\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:30:28" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\\n\\nOff-loading is a common process in information systems with limited audit storage capacity.\\n\\nRHEL 8 installation media provides \\\"rsyslogd\\\". \\\"rsyslogd\\\" is a system utility providing support for message logging. Support for both internet and UNIX domain sockets enables this utility to support both local and remote logging. Couple this utility with \\\"rsyslog-gnutls\\\" (which is a secure communications library implementing the SSL, TLS and DTLS protocols), and you have a method to securely encrypt and off-load auditing.\\n\\nRsyslog provides three ways to forward message: the traditional UDP transport, which is extremely lossy but standard; the plain TCP based transport, which loses messages only during certain situations but is widely available; and the RELP transport, which does not lose messages but is currently available only as part of the rsyslogd 3.15.0 and above.\\nExamples of each configuration:\\nUDP *.* @remotesystemname\\nTCP *.* @@remotesystemname\\nRELP *.* :omrelp:remotesystemname:2514\\nNote that a port number was given as there is no standard port for RELP.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230478", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230478r744011_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:307", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33122r744010_fix", + "fixtext_fixref": "F-33122r744010_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230478r744011_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230477r627750_rule", + "version": "RHEL-08-030670", + "time": "2021-12-17T10:30:28", + "weight": "10.0", + "severity": "medium", + "cdf:result": "pass", + "cdf:ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33121r568178_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:412", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must have the packages required for encrypting offloaded audit logs installed.", + "id": "V-230478", + "desc": "Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\n\nOff-loading is a common process in information systems with limited audit storage capacity.\n\nRHEL 8 installation media provides \"rsyslogd\". \"rsyslogd\" is a system utility providing support for message logging. Support for both internet and UNIX domain sockets enables this utility to support both local and remote logging. Couple this utility with \"rsyslog-gnutls\" (which is a secure communications library implementing the SSL, TLS and DTLS protocols), and you have a method to securely encrypt and off-load auditing.\n\nRsyslog provides three ways to forward message: the traditional UDP transport, which is extremely lossy but standard; the plain TCP based transport, which loses messages only during certain situations but is widely available; and the RELP transport, which does not lose messages but is currently available only as part of the rsyslogd 3.15.0 and above.\nExamples of each configuration:\nUDP *.* @remotesystemname\nTCP *.* @@remotesystemname\nRELP *.* :omrelp:remotesystemname:2514\nNote that a port number was given as there is no standard port for RELP.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:307", + "label": "check" + }, + { + "data": "Configure the operating system to encrypt offloaded audit logs by installing the required packages with the following command:\n\n$ sudo yum install rsyslog-gnutls", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230478\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230478\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230478r744011_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230478r744011_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030680\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must have the packages required for encrypting offloaded audit logs installed.\",\n \"cdf:description\": \"<VulnDiscussion>Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\\n\\nOff-loading is a common process in information systems with limited audit storage capacity.\\n\\nRHEL 8 installation media provides \\\"rsyslogd\\\". \\\"rsyslogd\\\" is a system utility providing support for message logging. Support for both internet and UNIX domain sockets enables this utility to support both local and remote logging. Couple this utility with \\\"rsyslog-gnutls\\\" (which is a secure communications library implementing the SSL, TLS and DTLS protocols), and you have a method to securely encrypt and off-load auditing.\\n\\nRsyslog provides three ways to forward message: the traditional UDP transport, which is extremely lossy but standard; the plain TCP based transport, which loses messages only during certain situations but is widely available; and the RELP transport, which does not lose messages but is currently available only as part of the rsyslogd 3.15.0 and above.\\nExamples of each configuration:\\nUDP *.* @remotesystemname\\nTCP *.* @@remotesystemname\\nRELP *.* :omrelp:remotesystemname:2514\\nNote that a port number was given as there is no standard port for RELP.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to encrypt offloaded audit logs by installing the required packages with the following command:\\n\\n$ sudo yum install rsyslog-gnutls\",\n \"fixref\": \"F-33122r744010_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33122r744010_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:307\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:30:28" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001851" + ], + "nist": [ + "AU-4 (1)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\\n\\nOff-loading is a common process in information systems with limited audit storage capacity.\\n\\nRHEL 8 installation media provides \\\"rsyslogd\\\". \\\"rsyslogd\\\" is a system utility providing support for message logging. Support for both internet and UNIX domain sockets enables this utility to support both local and remote logging. Couple this utility with \\\"gnutls\\\" (which is a secure communications library implementing the SSL, TLS and DTLS protocols), and you have a method to securely encrypt and off-load auditing.\\n\\nSatisfies: SRG-OS-000342-GPOS-00133, SRG-OS-000479-GPOS-00224\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230480", + "group_title": "SRG-OS-000342-GPOS-00133", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230480r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:308", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33124r568187_fix", + "fixtext_fixref": "F-33124r568187_fix", + "ident": { + "text": "CCI-001851", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230480r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230478r744011_rule", + "version": "RHEL-08-030680", + "time": "2021-12-17T10:30:28", + "weight": "10.0", + "severity": "medium", + "cdf:result": "pass", + "cdf:ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33122r744010_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:307", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must take appropriate action when the internal event queue is full.", + "id": "V-230480", + "desc": "Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\n\nOff-loading is a common process in information systems with limited audit storage capacity.\n\nRHEL 8 installation media provides \"rsyslogd\". \"rsyslogd\" is a system utility providing support for message logging. Support for both internet and UNIX domain sockets enables this utility to support both local and remote logging. Couple this utility with \"gnutls\" (which is a secure communications library implementing the SSL, TLS and DTLS protocols), and you have a method to securely encrypt and off-load auditing.\n\nSatisfies: SRG-OS-000342-GPOS-00133, SRG-OS-000479-GPOS-00224", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:308", + "label": "check" + }, + { + "data": "Edit the /etc/audit/auditd.conf file and add or update the \"overflow_action\" option:\n\noverflow_action = syslog\n\nThe audit daemon must be restarted for changes to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230480\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230480\",\n \"cdf:title\": \"SRG-OS-000342-GPOS-00133\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230480r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230480r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030700\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must take appropriate action when the internal event queue is full.\",\n \"cdf:description\": \"<VulnDiscussion>Information stored in one location is vulnerable to accidental or incidental deletion or alteration.\\n\\nOff-loading is a common process in information systems with limited audit storage capacity.\\n\\nRHEL 8 installation media provides \\\"rsyslogd\\\". \\\"rsyslogd\\\" is a system utility providing support for message logging. Support for both internet and UNIX domain sockets enables this utility to support both local and remote logging. Couple this utility with \\\"gnutls\\\" (which is a secure communications library implementing the SSL, TLS and DTLS protocols), and you have a method to securely encrypt and off-load auditing.\\n\\nSatisfies: SRG-OS-000342-GPOS-00133, SRG-OS-000479-GPOS-00224</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-001851\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Edit the /etc/audit/auditd.conf file and add or update the \\\"overflow_action\\\" option:\\n\\noverflow_action = syslog\\n\\nThe audit daemon must be restarted for changes to take effect.\",\n \"fixref\": \"F-33124r568187_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33124r568187_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:308\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:30:30" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001855" + ], + "nist": [ + "AU-5 (1)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"If security personnel are not notified immediately when storage volume reaches 75 percent utilization, they are unable to plan for audit record storage capacity expansion.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230483", + "group_title": "SRG-OS-000343-GPOS-00134", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230483r744014_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:309", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33127r744013_fix", + "fixtext_fixref": "F-33127r744013_fix", + "ident": { + "text": "CCI-001855", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230483r744014_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230480r627750_rule", + "version": "RHEL-08-030700", + "time": "2021-12-17T10:30:30", + "weight": "10.0", + "severity": "medium", + "cdf:result": "pass", + "cdf:ident": { + "text": "CCI-001851", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33124r568187_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:308", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must take action when allocated audit record storage volume reaches 75 percent of the repository maximum audit record storage capacity.", + "id": "V-230483", + "desc": "If security personnel are not notified immediately when storage volume reaches 75 percent utilization, they are unable to plan for audit record storage capacity expansion.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:309", + "label": "check" + }, + { + "data": "Configure the operating system to initiate an action to notify the SA and ISSO (at a minimum) when allocated audit record storage volume reaches 75 percent of the repository maximum audit record storage capacity by adding/modifying the following line in the /etc/audit/auditd.conf file.\n\nspace_left = 25%\n\nNote: Option names and values in the auditd.conf file are case insensitive.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230483\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230483\",\n \"cdf:title\": \"SRG-OS-000343-GPOS-00134\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230483r744014_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230483r744014_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030730\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must take action when allocated audit record storage volume reaches 75 percent of the repository maximum audit record storage capacity.\",\n \"cdf:description\": \"<VulnDiscussion>If security personnel are not notified immediately when storage volume reaches 75 percent utilization, they are unable to plan for audit record storage capacity expansion.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-001855\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to initiate an action to notify the SA and ISSO (at a minimum) when allocated audit record storage volume reaches 75 percent of the repository maximum audit record storage capacity by adding/modifying the following line in the /etc/audit/auditd.conf file.\\n\\nspace_left = 25%\\n\\nNote: Option names and values in the auditd.conf file are case insensitive.\",\n \"fixref\": \"F-33127r744013_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33127r744013_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:309\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:31" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000381" + ], + "nist": [ + "CM-7 a" + ], + "severity": "low", + "description": "{\"VulnDiscussion\":\"Inaccurate time stamps make it more difficult to correlate events and can lead to an inaccurate analysis. Determining the correct time a particular event occurred on a system is critical when conducting forensic analysis and investigating system events. Sources outside the configured acceptable allowance (drift) may be inaccurate.\\n\\nMinimizing the exposure of the server functionality of the chrony daemon diminishes the attack surface.\\n\\nRHEL 8 utilizes the \\\"timedatectl\\\" command to view the status of the \\\"systemd-timesyncd.service\\\". The \\\"timedatectl\\\" status will display the local time, UTC, and the offset from UTC.\\n\\nNote that USNO offers authenticated NTP service to DoD and U.S. Government agencies operating on the NIPR and SIPR networks. Visit https://www.usno.navy.mil/USNO/time/ntp/dod-customers for more information.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230485", + "group_title": "SRG-OS-000095-GPOS-00049", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230485r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:310", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33129r568202_fix", + "fixtext_fixref": "F-33129r568202_fix", + "ident": { + "text": "CCI-000381", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230485r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230483r744014_rule", + "version": "RHEL-08-030730", + "time": "2021-12-17T10:30:31", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-001855", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33127r744013_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:309", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must disable the chrony daemon from acting as a server.", + "id": "V-230485", + "desc": "Inaccurate time stamps make it more difficult to correlate events and can lead to an inaccurate analysis. Determining the correct time a particular event occurred on a system is critical when conducting forensic analysis and investigating system events. Sources outside the configured acceptable allowance (drift) may be inaccurate.\n\nMinimizing the exposure of the server functionality of the chrony daemon diminishes the attack surface.\n\nRHEL 8 utilizes the \"timedatectl\" command to view the status of the \"systemd-timesyncd.service\". The \"timedatectl\" status will display the local time, UTC, and the offset from UTC.\n\nNote that USNO offers authenticated NTP service to DoD and U.S. Government agencies operating on the NIPR and SIPR networks. Visit https://www.usno.navy.mil/USNO/time/ntp/dod-customers for more information.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:310", + "label": "check" + }, + { + "data": "Configure the operating system to disable the chrony daemon from acting as a server by adding/modifying the following line in the /etc/chrony.conf file.\n\nport 0", + "label": "fix" + } + ], + "impact": 0.3, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230485\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230485\",\n \"cdf:title\": \"SRG-OS-000095-GPOS-00049\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230485r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230485r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"low\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030741\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must disable the chrony daemon from acting as a server.\",\n \"cdf:description\": \"<VulnDiscussion>Inaccurate time stamps make it more difficult to correlate events and can lead to an inaccurate analysis. Determining the correct time a particular event occurred on a system is critical when conducting forensic analysis and investigating system events. Sources outside the configured acceptable allowance (drift) may be inaccurate.\\n\\nMinimizing the exposure of the server functionality of the chrony daemon diminishes the attack surface.\\n\\nRHEL 8 utilizes the \\\"timedatectl\\\" command to view the status of the \\\"systemd-timesyncd.service\\\". The \\\"timedatectl\\\" status will display the local time, UTC, and the offset from UTC.\\n\\nNote that USNO offers authenticated NTP service to DoD and U.S. Government agencies operating on the NIPR and SIPR networks. Visit https://www.usno.navy.mil/USNO/time/ntp/dod-customers for more information.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000381\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to disable the chrony daemon from acting as a server by adding/modifying the following line in the /etc/chrony.conf file.\\n\\nport 0\",\n \"fixref\": \"F-33129r568202_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33129r568202_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:310\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:31" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000381" + ], + "nist": [ + "CM-7 a" + ], + "severity": "low", + "description": "{\"VulnDiscussion\":\"Inaccurate time stamps make it more difficult to correlate events and can lead to an inaccurate analysis. Determining the correct time a particular event occurred on a system is critical when conducting forensic analysis and investigating system events. Sources outside the configured acceptable allowance (drift) may be inaccurate.\\n\\nNot exposing the management interface of the chrony daemon on the network diminishes the attack space.\\n\\nRHEL 8 utilizes the \\\"timedatectl\\\" command to view the status of the \\\"systemd-timesyncd.service\\\". The \\\"timedatectl\\\" status will display the local time, UTC, and the offset from UTC.\\n\\nNote that USNO offers authenticated NTP service to DoD and U.S. Government agencies operating on the NIPR and SIPR networks. Visit https://www.usno.navy.mil/USNO/time/ntp/dod-customers for more information.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230486", + "group_title": "SRG-OS-000095-GPOS-00049", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230486r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:311", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33130r568205_fix", + "fixtext_fixref": "F-33130r568205_fix", + "ident": { + "text": "CCI-000381", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230486r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230485r627750_rule", + "version": "RHEL-08-030741", + "time": "2021-12-17T10:30:31", + "weight": "10.0", + "severity": "low", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000381", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33129r568202_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:310", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must disable network management of the chrony daemon.", + "id": "V-230486", + "desc": "Inaccurate time stamps make it more difficult to correlate events and can lead to an inaccurate analysis. Determining the correct time a particular event occurred on a system is critical when conducting forensic analysis and investigating system events. Sources outside the configured acceptable allowance (drift) may be inaccurate.\n\nNot exposing the management interface of the chrony daemon on the network diminishes the attack space.\n\nRHEL 8 utilizes the \"timedatectl\" command to view the status of the \"systemd-timesyncd.service\". The \"timedatectl\" status will display the local time, UTC, and the offset from UTC.\n\nNote that USNO offers authenticated NTP service to DoD and U.S. Government agencies operating on the NIPR and SIPR networks. Visit https://www.usno.navy.mil/USNO/time/ntp/dod-customers for more information.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:311", + "label": "check" + }, + { + "data": "Configure the operating system disable network management of the chrony daemon by adding/modifying the following line in the /etc/chrony.conf file.\n\ncmdport 0", + "label": "fix" + } + ], + "impact": 0.3, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230486\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230486\",\n \"cdf:title\": \"SRG-OS-000095-GPOS-00049\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230486r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230486r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"low\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-030742\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must disable network management of the chrony daemon.\",\n \"cdf:description\": \"<VulnDiscussion>Inaccurate time stamps make it more difficult to correlate events and can lead to an inaccurate analysis. Determining the correct time a particular event occurred on a system is critical when conducting forensic analysis and investigating system events. Sources outside the configured acceptable allowance (drift) may be inaccurate.\\n\\nNot exposing the management interface of the chrony daemon on the network diminishes the attack space.\\n\\nRHEL 8 utilizes the \\\"timedatectl\\\" command to view the status of the \\\"systemd-timesyncd.service\\\". The \\\"timedatectl\\\" status will display the local time, UTC, and the offset from UTC.\\n\\nNote that USNO offers authenticated NTP service to DoD and U.S. Government agencies operating on the NIPR and SIPR networks. Visit https://www.usno.navy.mil/USNO/time/ntp/dod-customers for more information.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000381\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system disable network management of the chrony daemon by adding/modifying the following line in the /etc/chrony.conf file.\\n\\ncmdport 0\",\n \"fixref\": \"F-33130r568205_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33130r568205_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:311\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:31" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000381" + ], + "nist": [ + "CM-7 a" + ], + "severity": "high", + "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\\n\\nExamples of non-essential capabilities include, but are not limited to, games, software packages, tools, and demonstration software not related to requirements or providing a wide array of functionality not required for every mission, but which cannot be disabled.\\n\\nVerify the operating system is configured to disable non-essential capabilities. The most secure way of ensuring a non-essential capability is disabled is to not have the capability installed.\\n\\nThe telnet service provides an unencrypted remote access service that does not provide for the confidentiality and integrity of user passwords or the remote session.\\n\\nIf a privileged user were to log on using this service, the privileged user password could be compromised.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230487", + "group_title": "SRG-OS-000095-GPOS-00049", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230487r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:312", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33131r568208_fix", + "fixtext_fixref": "F-33131r568208_fix", + "ident": { + "text": "CCI-000381", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230487r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230486r627750_rule", + "version": "RHEL-08-030742", + "time": "2021-12-17T10:30:31", + "weight": "10.0", + "severity": "low", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000381", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33130r568205_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:311", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must not have the telnet-server package installed.", + "id": "V-230487", + "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\n\nExamples of non-essential capabilities include, but are not limited to, games, software packages, tools, and demonstration software not related to requirements or providing a wide array of functionality not required for every mission, but which cannot be disabled.\n\nVerify the operating system is configured to disable non-essential capabilities. The most secure way of ensuring a non-essential capability is disabled is to not have the capability installed.\n\nThe telnet service provides an unencrypted remote access service that does not provide for the confidentiality and integrity of user passwords or the remote session.\n\nIf a privileged user were to log on using this service, the privileged user password could be compromised.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:312", + "label": "check" + }, + { + "data": "Configure the operating system to disable non-essential capabilities by removing the telnet-server package from the system with the following command:\n\n$ sudo yum remove telnet-server", + "label": "fix" + } + ], + "impact": 0.7, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230487\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230487\",\n \"cdf:title\": \"SRG-OS-000095-GPOS-00049\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230487r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230487r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"high\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-040000\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must not have the telnet-server package installed.\",\n \"cdf:description\": \"<VulnDiscussion>It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\\n\\nExamples of non-essential capabilities include, but are not limited to, games, software packages, tools, and demonstration software not related to requirements or providing a wide array of functionality not required for every mission, but which cannot be disabled.\\n\\nVerify the operating system is configured to disable non-essential capabilities. The most secure way of ensuring a non-essential capability is disabled is to not have the capability installed.\\n\\nThe telnet service provides an unencrypted remote access service that does not provide for the confidentiality and integrity of user passwords or the remote session.\\n\\nIf a privileged user were to log on using this service, the privileged user password could be compromised.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000381\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to disable non-essential capabilities by removing the telnet-server package from the system with the following command:\\n\\n$ sudo yum remove telnet-server\",\n \"fixref\": \"F-33131r568208_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33131r568208_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:312\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:30:31" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000381" + ], + "nist": [ + "CM-7 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\\n\\nExamples of non-essential capabilities include, but are not limited to, games, software packages, tools, and demonstration software not related to requirements or providing a wide array of functionality not required for every mission, but which cannot be disabled.\\n\\nVerify the operating system is configured to disable non-essential capabilities. The most secure way of ensuring a non-essential capability is disabled is to not have the capability installed.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230488", + "group_title": "SRG-OS-000095-GPOS-00049", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230488r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:313", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33132r568211_fix", + "fixtext_fixref": "F-33132r568211_fix", + "ident": { + "text": "CCI-000381", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230488r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230487r627750_rule", + "version": "RHEL-08-040000", + "time": "2021-12-17T10:30:31", + "weight": "10.0", + "severity": "high", + "cdf:result": "pass", + "cdf:ident": { + "text": "CCI-000381", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33131r568208_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:312", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must not have any automated bug reporting tools installed.", + "id": "V-230488", + "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\n\nExamples of non-essential capabilities include, but are not limited to, games, software packages, tools, and demonstration software not related to requirements or providing a wide array of functionality not required for every mission, but which cannot be disabled.\n\nVerify the operating system is configured to disable non-essential capabilities. The most secure way of ensuring a non-essential capability is disabled is to not have the capability installed.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:313", + "label": "check" + }, + { + "data": "Configure the operating system to disable non-essential capabilities by removing automated bug reporting packages from the system with the following command:\n\n$ sudo yum remove abrt*", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230488\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230488\",\n \"cdf:title\": \"SRG-OS-000095-GPOS-00049\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230488r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230488r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-040001\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must not have any automated bug reporting tools installed.\",\n \"cdf:description\": \"<VulnDiscussion>It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\\n\\nExamples of non-essential capabilities include, but are not limited to, games, software packages, tools, and demonstration software not related to requirements or providing a wide array of functionality not required for every mission, but which cannot be disabled.\\n\\nVerify the operating system is configured to disable non-essential capabilities. The most secure way of ensuring a non-essential capability is disabled is to not have the capability installed.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000381\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to disable non-essential capabilities by removing automated bug reporting packages from the system with the following command:\\n\\n$ sudo yum remove abrt*\",\n \"fixref\": \"F-33132r568211_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33132r568211_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:313\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:30:33" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000381" + ], + "nist": [ + "CM-7 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\\n\\nExamples of non-essential capabilities include, but are not limited to, games, software packages, tools, and demonstration software not related to requirements or providing a wide array of functionality not required for every mission, but which cannot be disabled.\\n\\nVerify the operating system is configured to disable non-essential capabilities. The most secure way of ensuring a non-essential capability is disabled is to not have the capability installed.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230489", + "group_title": "SRG-OS-000095-GPOS-00049", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230489r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:314", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33133r568214_fix", + "fixtext_fixref": "F-33133r568214_fix", + "ident": { + "text": "CCI-000381", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230489r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230488r627750_rule", + "version": "RHEL-08-040001", + "time": "2021-12-17T10:30:33", + "weight": "10.0", + "severity": "medium", + "cdf:result": "pass", + "cdf:ident": { + "text": "CCI-000381", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33132r568211_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:313", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must not have the sendmail package installed.", + "id": "V-230489", + "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\n\nExamples of non-essential capabilities include, but are not limited to, games, software packages, tools, and demonstration software not related to requirements or providing a wide array of functionality not required for every mission, but which cannot be disabled.\n\nVerify the operating system is configured to disable non-essential capabilities. The most secure way of ensuring a non-essential capability is disabled is to not have the capability installed.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:314", + "label": "check" + }, + { + "data": "Configure the operating system to disable non-essential capabilities by removing the sendmail package from the system with the following command:\n\n$ sudo yum remove sendmail", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230489\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230489\",\n \"cdf:title\": \"SRG-OS-000095-GPOS-00049\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230489r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230489r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-040002\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must not have the sendmail package installed.\",\n \"cdf:description\": \"<VulnDiscussion>It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\\n\\nExamples of non-essential capabilities include, but are not limited to, games, software packages, tools, and demonstration software not related to requirements or providing a wide array of functionality not required for every mission, but which cannot be disabled.\\n\\nVerify the operating system is configured to disable non-essential capabilities. The most secure way of ensuring a non-essential capability is disabled is to not have the capability installed.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000381\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to disable non-essential capabilities by removing the sendmail package from the system with the following command:\\n\\n$ sudo yum remove sendmail\",\n \"fixref\": \"F-33133r568214_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33133r568214_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:314\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:30:35" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000381" + ], + "nist": [ + "CM-7 a" + ], + "severity": "high", + "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\\n\\nThe rsh-server service provides an unencrypted remote access service that does not provide for the confidentiality and integrity of user passwords or the remote session and has very weak authentication.\\n\\nIf a privileged user were to log on using this service, the privileged user password could be compromised.\\n\\nSatisfies: SRG-OS-000095-GPOS-00049, SRG-OS-000074-GPOS-00042\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230492", + "group_title": "SRG-OS-000095-GPOS-00049", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230492r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:317", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33136r568223_fix", + "fixtext_fixref": "F-33136r568223_fix", + "ident": { + "text": "CCI-000381", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230492r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230489r627750_rule", + "version": "RHEL-08-040002", + "time": "2021-12-17T10:30:35", + "weight": "10.0", + "severity": "medium", + "cdf:result": "pass", + "cdf:ident": { + "text": "CCI-000381", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33133r568214_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:314", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must not have the rsh-server package installed.", + "id": "V-230492", + "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\n\nThe rsh-server service provides an unencrypted remote access service that does not provide for the confidentiality and integrity of user passwords or the remote session and has very weak authentication.\n\nIf a privileged user were to log on using this service, the privileged user password could be compromised.\n\nSatisfies: SRG-OS-000095-GPOS-00049, SRG-OS-000074-GPOS-00042", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:317", + "label": "check" + }, + { + "data": "Configure the operating system to disable non-essential capabilities by removing the rsh-server package from the system with the following command:\n\n$ sudo yum remove rsh-server", + "label": "fix" + } + ], + "impact": 0.7, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230492\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230492\",\n \"cdf:title\": \"SRG-OS-000095-GPOS-00049\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230492r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230492r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"high\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-040010\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must not have the rsh-server package installed.\",\n \"cdf:description\": \"<VulnDiscussion>It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\\n\\nThe rsh-server service provides an unencrypted remote access service that does not provide for the confidentiality and integrity of user passwords or the remote session and has very weak authentication.\\n\\nIf a privileged user were to log on using this service, the privileged user password could be compromised.\\n\\nSatisfies: SRG-OS-000095-GPOS-00049, SRG-OS-000074-GPOS-00042</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000381\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to disable non-essential capabilities by removing the rsh-server package from the system with the following command:\\n\\n$ sudo yum remove rsh-server\",\n \"fixref\": \"F-33136r568223_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33136r568223_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:317\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:30:37" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000381" + ], + "nist": [ + "CM-7 a" + ], + "severity": "low", + "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nFailing to disconnect unused protocols can result in a system compromise.\\n\\nThe Asynchronous Transfer Mode (ATM) is a protocol operating on network, data link, and physical layers, based on virtual circuits and virtual paths. Disabling ATM protects the system against exploitation of any laws in its implementation.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230494", + "group_title": "SRG-OS-000095-GPOS-00049", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230494r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:318", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33138r568229_fix", + "fixtext_fixref": "F-33138r568229_fix", + "ident": { + "text": "CCI-000381", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230494r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230492r627750_rule", + "version": "RHEL-08-040010", + "time": "2021-12-17T10:30:37", + "weight": "10.0", + "severity": "high", + "cdf:result": "pass", + "cdf:ident": { + "text": "CCI-000381", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33136r568223_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:317", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must disable the asynchronous transfer mode (ATM) protocol.", + "id": "V-230494", + "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nFailing to disconnect unused protocols can result in a system compromise.\n\nThe Asynchronous Transfer Mode (ATM) is a protocol operating on network, data link, and physical layers, based on virtual circuits and virtual paths. Disabling ATM protects the system against exploitation of any laws in its implementation.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:318", + "label": "check" + }, + { + "data": "Configure the operating system to disable the ability to use the ATM protocol kernel module.\n\nAdd or update the following lines in the file \"/etc/modprobe.d/blacklist.conf\":\n\ninstall ATM /bin/true\nblacklist ATM\n\nReboot the system for the settings to take effect.", + "label": "fix" + } + ], + "impact": 0.3, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230494\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230494\",\n \"cdf:title\": \"SRG-OS-000095-GPOS-00049\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230494r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230494r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"low\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-040021\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must disable the asynchronous transfer mode (ATM) protocol.\",\n \"cdf:description\": \"<VulnDiscussion>It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nFailing to disconnect unused protocols can result in a system compromise.\\n\\nThe Asynchronous Transfer Mode (ATM) is a protocol operating on network, data link, and physical layers, based on virtual circuits and virtual paths. Disabling ATM protects the system against exploitation of any laws in its implementation.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000381\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to disable the ability to use the ATM protocol kernel module.\\n\\nAdd or update the following lines in the file \\\"/etc/modprobe.d/blacklist.conf\\\":\\n\\ninstall ATM /bin/true\\nblacklist ATM\\n\\nReboot the system for the settings to take effect.\",\n \"fixref\": \"F-33138r568229_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33138r568229_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:318\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:38" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000381" + ], + "nist": [ + "CM-7 a" + ], + "severity": "low", + "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nFailing to disconnect unused protocols can result in a system compromise.\\n\\nThe Controller Area Network (CAN) is a serial communications protocol, which was initially developed for automotive and is now also used in marine, industrial, and medical applications. Disabling CAN protects the system against exploitation of any flaws in its implementation.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230495", + "group_title": "SRG-OS-000095-GPOS-00049", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230495r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:319", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33139r568232_fix", + "fixtext_fixref": "F-33139r568232_fix", + "ident": { + "text": "CCI-000381", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230495r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230494r627750_rule", + "version": "RHEL-08-040021", + "time": "2021-12-17T10:30:38", + "weight": "10.0", + "severity": "low", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000381", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33138r568229_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:318", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must disable the controller area network (CAN) protocol.", + "id": "V-230495", + "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nFailing to disconnect unused protocols can result in a system compromise.\n\nThe Controller Area Network (CAN) is a serial communications protocol, which was initially developed for automotive and is now also used in marine, industrial, and medical applications. Disabling CAN protects the system against exploitation of any flaws in its implementation.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:319", + "label": "check" + }, + { + "data": "Configure the operating system to disable the ability to use the CAN protocol kernel module.\n\nAdd or update the following lines in the file \"/etc/modprobe.d/blacklist.conf\":\n\ninstall CAN /bin/true\nblacklist CAN\n\nReboot the system for the settings to take effect.", + "label": "fix" + } + ], + "impact": 0.3, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230495\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230495\",\n \"cdf:title\": \"SRG-OS-000095-GPOS-00049\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230495r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230495r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"low\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-040022\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must disable the controller area network (CAN) protocol.\",\n \"cdf:description\": \"<VulnDiscussion>It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nFailing to disconnect unused protocols can result in a system compromise.\\n\\nThe Controller Area Network (CAN) is a serial communications protocol, which was initially developed for automotive and is now also used in marine, industrial, and medical applications. Disabling CAN protects the system against exploitation of any flaws in its implementation.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000381\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to disable the ability to use the CAN protocol kernel module.\\n\\nAdd or update the following lines in the file \\\"/etc/modprobe.d/blacklist.conf\\\":\\n\\ninstall CAN /bin/true\\nblacklist CAN\\n\\nReboot the system for the settings to take effect.\",\n \"fixref\": \"F-33139r568232_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33139r568232_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:319\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:38" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000381" + ], + "nist": [ + "CM-7 a" + ], + "severity": "low", + "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nFailing to disconnect unused protocols can result in a system compromise.\\n\\nThe Stream Control Transmission Protocol (SCTP) is a transport layer protocol, designed to support the idea of message-oriented communication, with several streams of messages within one connection. Disabling SCTP protects the system against exploitation of any flaws in its implementation.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230496", + "group_title": "SRG-OS-000095-GPOS-00049", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230496r744017_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:320", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33140r744016_fix", + "fixtext_fixref": "F-33140r744016_fix", + "ident": { + "text": "CCI-000381", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230496r744017_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230495r627750_rule", + "version": "RHEL-08-040022", + "time": "2021-12-17T10:30:38", + "weight": "10.0", + "severity": "low", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000381", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33139r568232_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:319", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must disable the stream control transmission protocol (SCTP).", + "id": "V-230496", + "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nFailing to disconnect unused protocols can result in a system compromise.\n\nThe Stream Control Transmission Protocol (SCTP) is a transport layer protocol, designed to support the idea of message-oriented communication, with several streams of messages within one connection. Disabling SCTP protects the system against exploitation of any flaws in its implementation.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:320", + "label": "check" + }, + { + "data": "Configure the operating system to disable the ability to use the SCTP kernel module.\n\nAdd or update the following lines in the file \"/etc/modprobe.d/blacklist.conf\":\n\ninstall SCTP /bin/true\nblacklist SCTP\n\nReboot the system for the settings to take effect.", + "label": "fix" + } + ], + "impact": 0.3, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230496\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230496\",\n \"cdf:title\": \"SRG-OS-000095-GPOS-00049\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230496r744017_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230496r744017_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"low\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-040023\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must disable the stream control transmission protocol (SCTP).\",\n \"cdf:description\": \"<VulnDiscussion>It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nFailing to disconnect unused protocols can result in a system compromise.\\n\\nThe Stream Control Transmission Protocol (SCTP) is a transport layer protocol, designed to support the idea of message-oriented communication, with several streams of messages within one connection. Disabling SCTP protects the system against exploitation of any flaws in its implementation.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000381\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to disable the ability to use the SCTP kernel module.\\n\\nAdd or update the following lines in the file \\\"/etc/modprobe.d/blacklist.conf\\\":\\n\\ninstall SCTP /bin/true\\nblacklist SCTP\\n\\nReboot the system for the settings to take effect.\",\n \"fixref\": \"F-33140r744016_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33140r744016_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:320\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:38" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000381" + ], + "nist": [ + "CM-7 a" + ], + "severity": "low", + "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nFailing to disconnect unused protocols can result in a system compromise.\\n\\nThe Transparent Inter-Process Communication (TIPC) protocol is designed to provide communications between nodes in a cluster. Disabling TIPC protects the system against exploitation of any flaws in its implementation.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230497", + "group_title": "SRG-OS-000095-GPOS-00049", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230497r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:321", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33141r568238_fix", + "fixtext_fixref": "F-33141r568238_fix", + "ident": { + "text": "CCI-000381", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230497r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230496r744017_rule", + "version": "RHEL-08-040023", + "time": "2021-12-17T10:30:38", + "weight": "10.0", + "severity": "low", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000381", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33140r744016_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:320", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must disable the transparent inter-process communication (TIPC) protocol.", + "id": "V-230497", + "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nFailing to disconnect unused protocols can result in a system compromise.\n\nThe Transparent Inter-Process Communication (TIPC) protocol is designed to provide communications between nodes in a cluster. Disabling TIPC protects the system against exploitation of any flaws in its implementation.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:321", + "label": "check" + }, + { + "data": "Configure the operating system to disable the ability to use the TIPC protocol kernel module.\n\nAdd or update the following lines in the file \"/etc/modprobe.d/blacklist.conf\":\n\ninstall TIPC /bin/true\nblacklist TIPC\n\nReboot the system for the settings to take effect.", + "label": "fix" + } + ], + "impact": 0.3, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230497\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230497\",\n \"cdf:title\": \"SRG-OS-000095-GPOS-00049\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230497r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230497r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"low\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-040024\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must disable the transparent inter-process communication (TIPC) protocol.\",\n \"cdf:description\": \"<VulnDiscussion>It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nFailing to disconnect unused protocols can result in a system compromise.\\n\\nThe Transparent Inter-Process Communication (TIPC) protocol is designed to provide communications between nodes in a cluster. Disabling TIPC protects the system against exploitation of any flaws in its implementation.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000381\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to disable the ability to use the TIPC protocol kernel module.\\n\\nAdd or update the following lines in the file \\\"/etc/modprobe.d/blacklist.conf\\\":\\n\\ninstall TIPC /bin/true\\nblacklist TIPC\\n\\nReboot the system for the settings to take effect.\",\n \"fixref\": \"F-33141r568238_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33141r568238_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:321\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:38" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000381" + ], + "nist": [ + "CM-7 a" + ], + "severity": "low", + "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nRemoving support for unneeded filesystem types reduces the local attack surface of the server.\\n\\nCompressed ROM/RAM file system (or cramfs) is a read-only file system designed for simplicity and space-efficiency. It is mainly used in embedded and small-footprint systems.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230498", + "group_title": "SRG-OS-000095-GPOS-00049", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230498r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:322", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33142r568241_fix", + "fixtext_fixref": "F-33142r568241_fix", + "ident": { + "text": "CCI-000381", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230498r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230497r627750_rule", + "version": "RHEL-08-040024", + "time": "2021-12-17T10:30:38", + "weight": "10.0", + "severity": "low", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000381", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33141r568238_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:321", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must disable mounting of cramfs.", + "id": "V-230498", + "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nRemoving support for unneeded filesystem types reduces the local attack surface of the server.\n\nCompressed ROM/RAM file system (or cramfs) is a read-only file system designed for simplicity and space-efficiency. It is mainly used in embedded and small-footprint systems.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:322", + "label": "check" + }, + { + "data": "Configure the operating system to disable the ability to use the cramfs kernel module.\n\nAdd or update the following lines in the file \"/etc/modprobe.d/blacklist.conf\":\n\ninstall cramfs /bin/true\nblacklist cramfs\n\nReboot the system for the settings to take effect.", + "label": "fix" + } + ], + "impact": 0.3, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230498\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230498\",\n \"cdf:title\": \"SRG-OS-000095-GPOS-00049\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230498r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230498r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"low\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-040025\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must disable mounting of cramfs.\",\n \"cdf:description\": \"<VulnDiscussion>It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nRemoving support for unneeded filesystem types reduces the local attack surface of the server.\\n\\nCompressed ROM/RAM file system (or cramfs) is a read-only file system designed for simplicity and space-efficiency. It is mainly used in embedded and small-footprint systems.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000381\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to disable the ability to use the cramfs kernel module.\\n\\nAdd or update the following lines in the file \\\"/etc/modprobe.d/blacklist.conf\\\":\\n\\ninstall cramfs /bin/true\\nblacklist cramfs\\n\\nReboot the system for the settings to take effect.\",\n \"fixref\": \"F-33142r568241_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33142r568241_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:322\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000381" + ], + "nist": [ + "CM-7 a" + ], + "severity": "low", + "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nThe IEEE 1394 (FireWire) is a serial bus standard for high-speed real-time communication. Disabling FireWire protects the system against exploitation of any flaws in its implementation.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230499", + "group_title": "SRG-OS-000095-GPOS-00049", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230499r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:323", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33143r568244_fix", + "fixtext_fixref": "F-33143r568244_fix", + "ident": { + "text": "CCI-000381", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230499r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230498r627750_rule", + "version": "RHEL-08-040025", + "time": "2021-12-17T10:30:39", + "weight": "10.0", + "severity": "low", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000381", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33142r568241_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:322", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must disable IEEE 1394 (FireWire) Support.", + "id": "V-230499", + "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nThe IEEE 1394 (FireWire) is a serial bus standard for high-speed real-time communication. Disabling FireWire protects the system against exploitation of any flaws in its implementation.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:323", + "label": "check" + }, + { + "data": "Configure the operating system to disable the ability to use the firewire-core kernel module.\n\nAdd or update the following lines in the file \"/etc/modprobe.d/blacklist.conf\":\n\ninstall firewire-core /bin/true\nblacklist firewire-core\n\nReboot the system for the settings to take effect.", + "label": "fix" + } + ], + "impact": 0.3, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230499\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230499\",\n \"cdf:title\": \"SRG-OS-000095-GPOS-00049\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230499r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230499r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"low\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-040026\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must disable IEEE 1394 (FireWire) Support.\",\n \"cdf:description\": \"<VulnDiscussion>It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nThe IEEE 1394 (FireWire) is a serial bus standard for high-speed real-time communication. Disabling FireWire protects the system against exploitation of any flaws in its implementation.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000381\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to disable the ability to use the firewire-core kernel module.\\n\\nAdd or update the following lines in the file \\\"/etc/modprobe.d/blacklist.conf\\\":\\n\\ninstall firewire-core /bin/true\\nblacklist firewire-core\\n\\nReboot the system for the settings to take effect.\",\n \"fixref\": \"F-33143r568244_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33143r568244_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:323\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000778" + ], + "nist": [ + "IA-3" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"USB mass storage permits easy introduction of unknown devices, thereby facilitating malicious activity.\\n\\nSatisfies: SRG-OS-000114-GPOS-00059, SRG-OS-000378-GPOS-00163\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230503", + "group_title": "SRG-OS-000114-GPOS-00059", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230503r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:325", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33147r568256_fix", + "fixtext_fixref": "F-33147r568256_fix", + "ident": { + "text": "CCI-000778", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230503r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230499r627750_rule", + "version": "RHEL-08-040026", + "time": "2021-12-17T10:30:39", + "weight": "10.0", + "severity": "low", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000381", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33143r568244_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:323", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must be configured to disable USB mass storage.", + "id": "V-230503", + "desc": "USB mass storage permits easy introduction of unknown devices, thereby facilitating malicious activity.\n\nSatisfies: SRG-OS-000114-GPOS-00059, SRG-OS-000378-GPOS-00163", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:325", + "label": "check" + }, + { + "data": "Configure the operating system to disable the ability to use the USB Storage kernel module.\n\nCreate a file under \"/etc/modprobe.d\" with the following command:\n\n$ sudo touch /etc/modprobe.d/usb-storage.conf\n\nAdd the following line to the created file:\n\ninstall usb-storage /bin/true\n\nConfigure the operating system to disable the ability to use USB mass storage devices.\n\n$ sudo vi /etc/modprobe.d/blacklist.conf\n\nAdd or update the line:\n\nblacklist usb-storage", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230503\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230503\",\n \"cdf:title\": \"SRG-OS-000114-GPOS-00059\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230503r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230503r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-040080\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must be configured to disable USB mass storage.\",\n \"cdf:description\": \"<VulnDiscussion>USB mass storage permits easy introduction of unknown devices, thereby facilitating malicious activity.\\n\\nSatisfies: SRG-OS-000114-GPOS-00059, SRG-OS-000378-GPOS-00163</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000778\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to disable the ability to use the USB Storage kernel module.\\n\\nCreate a file under \\\"/etc/modprobe.d\\\" with the following command:\\n\\n$ sudo touch /etc/modprobe.d/usb-storage.conf\\n\\nAdd the following line to the created file:\\n\\ninstall usb-storage /bin/true\\n\\nConfigure the operating system to disable the ability to use USB mass storage devices.\\n\\n$ sudo vi /etc/modprobe.d/blacklist.conf\\n\\nAdd or update the line:\\n\\nblacklist usb-storage\",\n \"fixref\": \"F-33147r568256_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33147r568256_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:325\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001443" + ], + "nist": [ + "AC-18 (1)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without protection of communications with wireless peripherals, confidentiality and integrity may be compromised because unprotected communications can be intercepted and either read, altered, or used to compromise the RHEL 8 operating system.\\n\\nThis requirement applies to wireless peripheral technologies (e.g., wireless mice, keyboards, displays, etc.) used with RHEL 8 systems. Wireless peripherals (e.g., Wi-Fi/Bluetooth/IR Keyboards, Mice, and Pointing Devices and Near Field Communications [NFC]) present a unique challenge by creating an open, unsecured port on a computer. Wireless peripherals must meet DoD requirements for wireless data transmission and be approved for use by the Authorizing Official (AO). Even though some wireless peripherals, such as mice and pointing devices, do not ordinarily carry information that need to be protected, modification of communications with these wireless peripherals may be used to compromise the RHEL 8 operating system. Communication paths outside the physical protection of a controlled boundary are exposed to the possibility of interception and modification.\\n\\nProtecting the confidentiality and integrity of communications with wireless peripherals can be accomplished by physical means (e.g., employing physical barriers to wireless radio frequencies) or by logical means (e.g., employing cryptographic techniques). If physical means of protection are employed, then logical means (cryptography) do not have to be employed, and vice versa. If the wireless peripheral is only passing telemetry data, encryption of the data may not be required.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230507", + "group_title": "SRG-OS-000300-GPOS-00118", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230507r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:326", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33151r568268_fix", + "fixtext_fixref": "F-33151r568268_fix", + "ident": { + "text": "CCI-001443", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230507r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230503r627750_rule", + "version": "RHEL-08-040080", + "time": "2021-12-17T10:30:39", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000778", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33147r568256_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:325", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 Bluetooth must be disabled.", + "id": "V-230507", + "desc": "Without protection of communications with wireless peripherals, confidentiality and integrity may be compromised because unprotected communications can be intercepted and either read, altered, or used to compromise the RHEL 8 operating system.\n\nThis requirement applies to wireless peripheral technologies (e.g., wireless mice, keyboards, displays, etc.) used with RHEL 8 systems. Wireless peripherals (e.g., Wi-Fi/Bluetooth/IR Keyboards, Mice, and Pointing Devices and Near Field Communications [NFC]) present a unique challenge by creating an open, unsecured port on a computer. Wireless peripherals must meet DoD requirements for wireless data transmission and be approved for use by the Authorizing Official (AO). Even though some wireless peripherals, such as mice and pointing devices, do not ordinarily carry information that need to be protected, modification of communications with these wireless peripherals may be used to compromise the RHEL 8 operating system. Communication paths outside the physical protection of a controlled boundary are exposed to the possibility of interception and modification.\n\nProtecting the confidentiality and integrity of communications with wireless peripherals can be accomplished by physical means (e.g., employing physical barriers to wireless radio frequencies) or by logical means (e.g., employing cryptographic techniques). If physical means of protection are employed, then logical means (cryptography) do not have to be employed, and vice versa. If the wireless peripheral is only passing telemetry data, encryption of the data may not be required.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:326", + "label": "check" + }, + { + "data": "Configure the operating system to disable the Bluetooth adapter when not in use.\n\nBuild or modify the \"/etc/modprobe.d/bluetooth.conf\" file with the following line:\n\ninstall bluetooth /bin/true\n\nReboot the system for the settings to take effect.", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230507\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230507\",\n \"cdf:title\": \"SRG-OS-000300-GPOS-00118\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230507r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230507r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-040111\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 Bluetooth must be disabled.\",\n \"cdf:description\": \"<VulnDiscussion>Without protection of communications with wireless peripherals, confidentiality and integrity may be compromised because unprotected communications can be intercepted and either read, altered, or used to compromise the RHEL 8 operating system.\\n\\nThis requirement applies to wireless peripheral technologies (e.g., wireless mice, keyboards, displays, etc.) used with RHEL 8 systems. Wireless peripherals (e.g., Wi-Fi/Bluetooth/IR Keyboards, Mice, and Pointing Devices and Near Field Communications [NFC]) present a unique challenge by creating an open, unsecured port on a computer. Wireless peripherals must meet DoD requirements for wireless data transmission and be approved for use by the Authorizing Official (AO). Even though some wireless peripherals, such as mice and pointing devices, do not ordinarily carry information that need to be protected, modification of communications with these wireless peripherals may be used to compromise the RHEL 8 operating system. Communication paths outside the physical protection of a controlled boundary are exposed to the possibility of interception and modification.\\n\\nProtecting the confidentiality and integrity of communications with wireless peripherals can be accomplished by physical means (e.g., employing physical barriers to wireless radio frequencies) or by logical means (e.g., employing cryptographic techniques). If physical means of protection are employed, then logical means (cryptography) do not have to be employed, and vice versa. If the wireless peripheral is only passing telemetry data, encryption of the data may not be required.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-001443\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the operating system to disable the Bluetooth adapter when not in use.\\n\\nBuild or modify the \\\"/etc/modprobe.d/bluetooth.conf\\\" file with the following line:\\n\\ninstall bluetooth /bin/true\\n\\nReboot the system for the settings to take effect.\",\n \"fixref\": \"F-33151r568268_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33151r568268_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:326\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001764" + ], + "nist": [ + "CM-7 (2)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230508", + "group_title": "SRG-OS-000368-GPOS-00154", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230508r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:327", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33152r568271_fix", + "fixtext_fixref": "F-33152r568271_fix", + "ident": { + "text": "CCI-001764", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230508r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230507r627750_rule", + "version": "RHEL-08-040111", + "time": "2021-12-17T10:30:39", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-001443", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33151r568268_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:326", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must mount /dev/shm with the nodev option.", + "id": "V-230508", + "desc": "The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\n\nThe \"noexec\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nodev\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nosuid\" mount option causes the system to not execute \"setuid\" and \"setgid\" files with owner privileges. This option must be used for mounting any file system not containing approved \"setuid\" and \"setguid\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:327", + "label": "check" + }, + { + "data": "Configure the system so that /dev/shm is mounted with the \"nodev\" option by adding /modifying the /etc/fstab with the following line:\n\ntmpfs /dev/shm tmpfs defaults,nodev,nosuid,noexec 0 0", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230508\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230508\",\n \"cdf:title\": \"SRG-OS-000368-GPOS-00154\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230508r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230508r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-040120\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must mount /dev/shm with the nodev option.\",\n \"cdf:description\": \"<VulnDiscussion>The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-001764\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the system so that /dev/shm is mounted with the \\\"nodev\\\" option by adding /modifying the /etc/fstab with the following line:\\n\\ntmpfs /dev/shm tmpfs defaults,nodev,nosuid,noexec 0 0\",\n \"fixref\": \"F-33152r568271_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33152r568271_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:327\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:30:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001764" + ], + "nist": [ + "CM-7 (2)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230509", + "group_title": "SRG-OS-000368-GPOS-00154", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230509r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:328", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33153r568274_fix", + "fixtext_fixref": "F-33153r568274_fix", + "ident": { + "text": "CCI-001764", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230509r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230508r627750_rule", + "version": "RHEL-08-040120", + "time": "2021-12-17T10:30:39", + "weight": "10.0", + "severity": "medium", + "cdf:result": "pass", + "cdf:ident": { + "text": "CCI-001764", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33152r568271_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:327", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must mount /dev/shm with the nosuid option.", + "id": "V-230509", + "desc": "The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\n\nThe \"noexec\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\nThe \"nodev\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\nThe \"nosuid\" mount option causes the system to not execute \"setuid\" and \"setgid\" files with owner privileges. This option must be used for mounting any file system not containing approved \"setuid\" and \"setguid\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:328", + "label": "check" + }, + { + "data": "Configure the system so that /dev/shm is mounted with the \"nosuid\" option by adding /modifying the /etc/fstab with the following line:\n\ntmpfs /dev/shm tmpfs defaults,nodev,nosuid,noexec 0 0", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230509\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230509\",\n \"cdf:title\": \"SRG-OS-000368-GPOS-00154\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230509r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230509r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-040121\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must mount /dev/shm with the nosuid option.\",\n \"cdf:description\": \"<VulnDiscussion>The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-001764\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the system so that /dev/shm is mounted with the \\\"nosuid\\\" option by adding /modifying the /etc/fstab with the following line:\\n\\ntmpfs /dev/shm tmpfs defaults,nodev,nosuid,noexec 0 0\",\n \"fixref\": \"F-33153r568274_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33153r568274_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:328\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:30:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001764" + ], + "nist": [ + "CM-7 (2)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230510", + "group_title": "SRG-OS-000368-GPOS-00154", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230510r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:329", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33154r568277_fix", + "fixtext_fixref": "F-33154r568277_fix", + "ident": { + "text": "CCI-001764", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230510r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230509r627750_rule", + "version": "RHEL-08-040121", + "time": "2021-12-17T10:30:39", + "weight": "10.0", + "severity": "medium", + "cdf:result": "pass", + "cdf:ident": { + "text": "CCI-001764", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33153r568274_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:328", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must mount /dev/shm with the noexec option.", + "id": "V-230510", + "desc": "The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\n\nThe \"noexec\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nodev\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nosuid\" mount option causes the system to not execute \"setuid\" and \"setgid\" files with owner privileges. This option must be used for mounting any file system not containing approved \"setuid\" and \"setguid\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:329", + "label": "check" + }, + { + "data": "Configure the system so that /dev/shm is mounted with the \"noexec\" option by adding /modifying the /etc/fstab with the following line:\n\ntmpfs /dev/shm tmpfs defaults,nodev,nosuid,noexec 0 0", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230510\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230510\",\n \"cdf:title\": \"SRG-OS-000368-GPOS-00154\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230510r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230510r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-040122\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must mount /dev/shm with the noexec option.\",\n \"cdf:description\": \"<VulnDiscussion>The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-001764\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the system so that /dev/shm is mounted with the \\\"noexec\\\" option by adding /modifying the /etc/fstab with the following line:\\n\\ntmpfs /dev/shm tmpfs defaults,nodev,nosuid,noexec 0 0\",\n \"fixref\": \"F-33154r568277_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33154r568277_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:329\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001764" + ], + "nist": [ + "CM-7 (2)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230511", + "group_title": "SRG-OS-000368-GPOS-00154", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230511r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:330", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33155r568280_fix", + "fixtext_fixref": "F-33155r568280_fix", + "ident": { + "text": "CCI-001764", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230511r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230510r627750_rule", + "version": "RHEL-08-040122", + "time": "2021-12-17T10:30:39", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-001764", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33154r568277_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:329", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must mount /tmp with the nodev option.", + "id": "V-230511", + "desc": "The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\n\nThe \"noexec\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nodev\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nosuid\" mount option causes the system to not execute \"setuid\" and \"setgid\" files with owner privileges. This option must be used for mounting any file system not containing approved \"setuid\" and \"setguid\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:330", + "label": "check" + }, + { + "data": "Configure the system so that /tmp is mounted with the \"nodev\" option by adding /modifying the /etc/fstab with the following line:\n\n/dev/mapper/rhel-tmp /tmp xfs defaults,nodev,nosuid,noexec 0 0", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230511\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230511\",\n \"cdf:title\": \"SRG-OS-000368-GPOS-00154\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230511r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230511r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-040123\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must mount /tmp with the nodev option.\",\n \"cdf:description\": \"<VulnDiscussion>The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-001764\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the system so that /tmp is mounted with the \\\"nodev\\\" option by adding /modifying the /etc/fstab with the following line:\\n\\n/dev/mapper/rhel-tmp /tmp xfs defaults,nodev,nosuid,noexec 0 0\",\n \"fixref\": \"F-33155r568280_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33155r568280_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:330\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001764" + ], + "nist": [ + "CM-7 (2)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230512", + "group_title": "SRG-OS-000368-GPOS-00154", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230512r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:331", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33156r568283_fix", + "fixtext_fixref": "F-33156r568283_fix", + "ident": { + "text": "CCI-001764", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230512r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230511r627750_rule", + "version": "RHEL-08-040123", + "time": "2021-12-17T10:30:39", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-001764", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33155r568280_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:330", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must mount /tmp with the nosuid option.", + "id": "V-230512", + "desc": "The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\n\nThe \"noexec\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\nThe \"nodev\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\nThe \"nosuid\" mount option causes the system to not execute \"setuid\" and \"setgid\" files with owner privileges. This option must be used for mounting any file system not containing approved \"setuid\" and \"setguid\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:331", + "label": "check" + }, + { + "data": "Configure the system so that /tmp is mounted with the \"nosuid\" option by adding /modifying the /etc/fstab with the following line:\n\n/dev/mapper/rhel-tmp /tmp xfs defaults,nodev,nosuid,noexec 0 0", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230512\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230512\",\n \"cdf:title\": \"SRG-OS-000368-GPOS-00154\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230512r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230512r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-040124\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must mount /tmp with the nosuid option.\",\n \"cdf:description\": \"<VulnDiscussion>The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-001764\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the system so that /tmp is mounted with the \\\"nosuid\\\" option by adding /modifying the /etc/fstab with the following line:\\n\\n/dev/mapper/rhel-tmp /tmp xfs defaults,nodev,nosuid,noexec 0 0\",\n \"fixref\": \"F-33156r568283_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33156r568283_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:331\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001764" + ], + "nist": [ + "CM-7 (2)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230513", + "group_title": "SRG-OS-000368-GPOS-00154", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230513r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:332", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33157r568286_fix", + "fixtext_fixref": "F-33157r568286_fix", + "ident": { + "text": "CCI-001764", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230513r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230512r627750_rule", + "version": "RHEL-08-040124", + "time": "2021-12-17T10:30:39", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-001764", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33156r568283_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:331", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must mount /tmp with the noexec option.", + "id": "V-230513", + "desc": "The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\n\nThe \"noexec\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nodev\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nosuid\" mount option causes the system to not execute \"setuid\" and \"setgid\" files with owner privileges. This option must be used for mounting any file system not containing approved \"setuid\" and \"setguid\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:332", + "label": "check" + }, + { + "data": "Configure the system so that /tmp is mounted with the \"noexec\" option by adding /modifying the /etc/fstab with the following line:\n\n/dev/mapper/rhel-tmp /tmp xfs defaults,nodev,nosuid,noexec 0 0", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230513\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230513\",\n \"cdf:title\": \"SRG-OS-000368-GPOS-00154\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230513r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230513r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-040125\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must mount /tmp with the noexec option.\",\n \"cdf:description\": \"<VulnDiscussion>The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-001764\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the system so that /tmp is mounted with the \\\"noexec\\\" option by adding /modifying the /etc/fstab with the following line:\\n\\n/dev/mapper/rhel-tmp /tmp xfs defaults,nodev,nosuid,noexec 0 0\",\n \"fixref\": \"F-33157r568286_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33157r568286_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:332\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001764" + ], + "nist": [ + "CM-7 (2)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230514", + "group_title": "SRG-OS-000368-GPOS-00154", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230514r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:333", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33158r568289_fix", + "fixtext_fixref": "F-33158r568289_fix", + "ident": { + "text": "CCI-001764", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230514r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230513r627750_rule", + "version": "RHEL-08-040125", + "time": "2021-12-17T10:30:39", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-001764", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33157r568286_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:332", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must mount /var/log with the nodev option.", + "id": "V-230514", + "desc": "The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\n\nThe \"noexec\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nodev\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nosuid\" mount option causes the system to not execute \"setuid\" and \"setgid\" files with owner privileges. This option must be used for mounting any file system not containing approved \"setuid\" and \"setguid\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:333", + "label": "check" + }, + { + "data": "Configure the system so that /var/log is mounted with the \"nodev\" option by adding /modifying the /etc/fstab with the following line:\n\n/dev/mapper/rhel-var-log /var/log xfs defaults,nodev,nosuid,noexec 0 0", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230514\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230514\",\n \"cdf:title\": \"SRG-OS-000368-GPOS-00154\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230514r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230514r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-040126\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must mount /var/log with the nodev option.\",\n \"cdf:description\": \"<VulnDiscussion>The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-001764\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the system so that /var/log is mounted with the \\\"nodev\\\" option by adding /modifying the /etc/fstab with the following line:\\n\\n/dev/mapper/rhel-var-log /var/log xfs defaults,nodev,nosuid,noexec 0 0\",\n \"fixref\": \"F-33158r568289_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33158r568289_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:333\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001764" + ], + "nist": [ + "CM-7 (2)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230515", + "group_title": "SRG-OS-000368-GPOS-00154", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230515r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:334", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33159r568292_fix", + "fixtext_fixref": "F-33159r568292_fix", + "ident": { + "text": "CCI-001764", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230515r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230514r627750_rule", + "version": "RHEL-08-040126", + "time": "2021-12-17T10:30:39", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-001764", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33158r568289_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:333", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must mount /var/log with the nosuid option.", + "id": "V-230515", + "desc": "The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\n\nThe \"noexec\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nodev\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nosuid\" mount option causes the system to not execute \"setuid\" and \"setgid\" files with owner privileges. This option must be used for mounting any file system not containing approved \"setuid\" and \"setguid\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:334", + "label": "check" + }, + { + "data": "Configure the system so that /var/log is mounted with the \"nosuid\" option by adding /modifying the /etc/fstab with the following line:\n\n/dev/mapper/rhel-var-log /var/log xfs defaults,nodev,nosuid,noexec 0 0", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230515\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230515\",\n \"cdf:title\": \"SRG-OS-000368-GPOS-00154\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230515r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230515r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-040127\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must mount /var/log with the nosuid option.\",\n \"cdf:description\": \"<VulnDiscussion>The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-001764\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the system so that /var/log is mounted with the \\\"nosuid\\\" option by adding /modifying the /etc/fstab with the following line:\\n\\n/dev/mapper/rhel-var-log /var/log xfs defaults,nodev,nosuid,noexec 0 0\",\n \"fixref\": \"F-33159r568292_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33159r568292_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:334\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001764" + ], + "nist": [ + "CM-7 (2)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230516", + "group_title": "SRG-OS-000368-GPOS-00154", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230516r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:335", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33160r568295_fix", + "fixtext_fixref": "F-33160r568295_fix", + "ident": { + "text": "CCI-001764", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230516r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230515r627750_rule", + "version": "RHEL-08-040127", + "time": "2021-12-17T10:30:39", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-001764", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33159r568292_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:334", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must mount /var/log with the noexec option.", + "id": "V-230516", + "desc": "The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\n\nThe \"noexec\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nodev\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nosuid\" mount option causes the system to not execute \"setuid\" and \"setgid\" files with owner privileges. This option must be used for mounting any file system not containing approved \"setuid\" and \"setguid\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:335", + "label": "check" + }, + { + "data": "Configure the system so that /var/log is mounted with the \"noexec\" option by adding /modifying the /etc/fstab with the following line:\n\n/dev/mapper/rhel-var-log /var/log xfs defaults,nodev,nosuid,noexec 0 0", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230516\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230516\",\n \"cdf:title\": \"SRG-OS-000368-GPOS-00154\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230516r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230516r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-040128\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must mount /var/log with the noexec option.\",\n \"cdf:description\": \"<VulnDiscussion>The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-001764\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the system so that /var/log is mounted with the \\\"noexec\\\" option by adding /modifying the /etc/fstab with the following line:\\n\\n/dev/mapper/rhel-var-log /var/log xfs defaults,nodev,nosuid,noexec 0 0\",\n \"fixref\": \"F-33160r568295_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33160r568295_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:335\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001764" + ], + "nist": [ + "CM-7 (2)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230517", + "group_title": "SRG-OS-000368-GPOS-00154", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230517r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:336", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33161r568298_fix", + "fixtext_fixref": "F-33161r568298_fix", + "ident": { + "text": "CCI-001764", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230517r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230516r627750_rule", + "version": "RHEL-08-040128", + "time": "2021-12-17T10:30:39", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-001764", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33160r568295_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:335", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must mount /var/log/audit with the nodev option.", + "id": "V-230517", + "desc": "The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\n\nThe \"noexec\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nodev\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nosuid\" mount option causes the system to not execute \"setuid\" and \"setgid\" files with owner privileges. This option must be used for mounting any file system not containing approved \"setuid\" and \"setguid\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:336", + "label": "check" + }, + { + "data": "Configure the system so that /var/log/audit is mounted with the \"nodev\" option by adding /modifying the /etc/fstab with the following line:\n\n/dev/mapper/rhel-var-log-audit /var/log/audit xfs defaults,nodev,nosuid,noexec 0 0", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230517\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230517\",\n \"cdf:title\": \"SRG-OS-000368-GPOS-00154\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230517r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230517r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-040129\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must mount /var/log/audit with the nodev option.\",\n \"cdf:description\": \"<VulnDiscussion>The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-001764\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the system so that /var/log/audit is mounted with the \\\"nodev\\\" option by adding /modifying the /etc/fstab with the following line:\\n\\n/dev/mapper/rhel-var-log-audit /var/log/audit xfs defaults,nodev,nosuid,noexec 0 0\",\n \"fixref\": \"F-33161r568298_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33161r568298_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:336\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001764" + ], + "nist": [ + "CM-7 (2)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230518", + "group_title": "SRG-OS-000368-GPOS-00154", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230518r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:337", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33162r568301_fix", + "fixtext_fixref": "F-33162r568301_fix", + "ident": { + "text": "CCI-001764", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230518r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230517r627750_rule", + "version": "RHEL-08-040129", + "time": "2021-12-17T10:30:39", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-001764", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33161r568298_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:336", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must mount /var/log/audit with the nosuid option.", + "id": "V-230518", + "desc": "The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\n\nThe \"noexec\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nodev\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nosuid\" mount option causes the system to not execute \"setuid\" and \"setgid\" files with owner privileges. This option must be used for mounting any file system not containing approved \"setuid\" and \"setguid\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:337", + "label": "check" + }, + { + "data": "Configure the system so that /var/log/audit is mounted with the \"nosuid\" option by adding /modifying the /etc/fstab with the following line:\n\n/dev/mapper/rhel-var-log-audit /var/log/audit xfs defaults,nodev,nosuid,noexec 0 0", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230518\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230518\",\n \"cdf:title\": \"SRG-OS-000368-GPOS-00154\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230518r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230518r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-040130\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must mount /var/log/audit with the nosuid option.\",\n \"cdf:description\": \"<VulnDiscussion>The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-001764\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the system so that /var/log/audit is mounted with the \\\"nosuid\\\" option by adding /modifying the /etc/fstab with the following line:\\n\\n/dev/mapper/rhel-var-log-audit /var/log/audit xfs defaults,nodev,nosuid,noexec 0 0\",\n \"fixref\": \"F-33162r568301_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33162r568301_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:337\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001764" + ], + "nist": [ + "CM-7 (2)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230519", + "group_title": "SRG-OS-000368-GPOS-00154", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230519r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:338", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33163r568304_fix", + "fixtext_fixref": "F-33163r568304_fix", + "ident": { + "text": "CCI-001764", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230519r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230518r627750_rule", + "version": "RHEL-08-040130", + "time": "2021-12-17T10:30:39", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-001764", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33162r568301_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:337", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must mount /var/log/audit with the noexec option.", + "id": "V-230519", + "desc": "The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\n\nThe \"noexec\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nodev\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nosuid\" mount option causes the system to not execute \"setuid\" and \"setgid\" files with owner privileges. This option must be used for mounting any file system not containing approved \"setuid\" and \"setguid\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:338", + "label": "check" + }, + { + "data": "Configure the system so that /var/log/audit is mounted with the \"noexec\" option by adding /modifying the /etc/fstab with the following line:\n\n/dev/mapper/rhel-var-log-audit /var/log/audit xfs defaults,nodev,nosuid,noexec 0 0", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230519\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230519\",\n \"cdf:title\": \"SRG-OS-000368-GPOS-00154\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230519r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230519r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-040131\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must mount /var/log/audit with the noexec option.\",\n \"cdf:description\": \"<VulnDiscussion>The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-001764\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the system so that /var/log/audit is mounted with the \\\"noexec\\\" option by adding /modifying the /etc/fstab with the following line:\\n\\n/dev/mapper/rhel-var-log-audit /var/log/audit xfs defaults,nodev,nosuid,noexec 0 0\",\n \"fixref\": \"F-33163r568304_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33163r568304_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:338\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001764" + ], + "nist": [ + "CM-7 (2)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230520", + "group_title": "SRG-OS-000368-GPOS-00154", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230520r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:339", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33164r568307_fix", + "fixtext_fixref": "F-33164r568307_fix", + "ident": { + "text": "CCI-001764", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230520r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230519r627750_rule", + "version": "RHEL-08-040131", + "time": "2021-12-17T10:30:39", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-001764", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33163r568304_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:338", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must mount /var/tmp with the nodev option.", + "id": "V-230520", + "desc": "The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\n\nThe \"noexec\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nodev\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nosuid\" mount option causes the system to not execute \"setuid\" and \"setgid\" files with owner privileges. This option must be used for mounting any file system not containing approved \"setuid\" and \"setguid\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:339", + "label": "check" + }, + { + "data": "Configure the system so that /var/tmp is mounted with the \"nodev\" option by adding /modifying the /etc/fstab with the following line:\n\n/dev/mapper/rhel-var-log-audit /var/tmp xfs defaults,nodev,nosuid,noexec 0 0", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230520\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230520\",\n \"cdf:title\": \"SRG-OS-000368-GPOS-00154\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230520r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230520r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-040132\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must mount /var/tmp with the nodev option.\",\n \"cdf:description\": \"<VulnDiscussion>The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-001764\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the system so that /var/tmp is mounted with the \\\"nodev\\\" option by adding /modifying the /etc/fstab with the following line:\\n\\n/dev/mapper/rhel-var-log-audit /var/tmp xfs defaults,nodev,nosuid,noexec 0 0\",\n \"fixref\": \"F-33164r568307_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33164r568307_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:339\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:30:39" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001764" + ], + "nist": [ + "CM-7 (2)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230521", + "group_title": "SRG-OS-000368-GPOS-00154", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230521r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:340", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33165r568310_fix", + "fixtext_fixref": "F-33165r568310_fix", + "ident": { + "text": "CCI-001764", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230521r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230520r627750_rule", + "version": "RHEL-08-040132", + "time": "2021-12-17T10:30:39", + "weight": "10.0", + "severity": "medium", + "cdf:result": "pass", + "cdf:ident": { + "text": "CCI-001764", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33164r568307_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:339", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must mount /var/tmp with the nosuid option.", + "id": "V-230521", + "desc": "The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\n\nThe \"noexec\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nodev\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nosuid\" mount option causes the system to not execute \"setuid\" and \"setgid\" files with owner privileges. This option must be used for mounting any file system not containing approved \"setuid\" and \"setguid\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:340", + "label": "check" + }, + { + "data": "Configure the system so that /var/tmp is mounted with the \"nosuid\" option by adding /modifying the /etc/fstab with the following line:\n\n/dev/mapper/rhel-var-log-audit /var/tmp xfs defaults,nodev,nosuid,noexec 0 0", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230521\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230521\",\n \"cdf:title\": \"SRG-OS-000368-GPOS-00154\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230521r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230521r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-040133\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must mount /var/tmp with the nosuid option.\",\n \"cdf:description\": \"<VulnDiscussion>The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-001764\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the system so that /var/tmp is mounted with the \\\"nosuid\\\" option by adding /modifying the /etc/fstab with the following line:\\n\\n/dev/mapper/rhel-var-log-audit /var/tmp xfs defaults,nodev,nosuid,noexec 0 0\",\n \"fixref\": \"F-33165r568310_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33165r568310_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:340\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:30:40" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-001764" + ], + "nist": [ + "CM-7 (2)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230522", + "group_title": "SRG-OS-000368-GPOS-00154", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230522r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:341", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33166r568313_fix", + "fixtext_fixref": "F-33166r568313_fix", + "ident": { + "text": "CCI-001764", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230522r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230521r627750_rule", + "version": "RHEL-08-040133", + "time": "2021-12-17T10:30:40", + "weight": "10.0", + "severity": "medium", + "cdf:result": "pass", + "cdf:ident": { + "text": "CCI-001764", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33165r568310_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:340", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must mount /var/tmp with the noexec option.", + "id": "V-230522", + "desc": "The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\n\nThe \"noexec\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nodev\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\n\nThe \"nosuid\" mount option causes the system to not execute \"setuid\" and \"setgid\" files with owner privileges. This option must be used for mounting any file system not containing approved \"setuid\" and \"setguid\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:341", + "label": "check" + }, + { + "data": "Configure the system so that /var/tmp is mounted with the \"noexec\" option by adding /modifying the /etc/fstab with the following line:\n\n/dev/mapper/rhel-var-log-audit /var/tmp xfs defaults,nodev,nosuid,noexec 0 0", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230522\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230522\",\n \"cdf:title\": \"SRG-OS-000368-GPOS-00154\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230522r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230522r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-040134\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must mount /var/tmp with the noexec option.\",\n \"cdf:description\": \"<VulnDiscussion>The organization must identify authorized software programs and permit execution of authorized software. The process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting.\\n\\nThe \\\"noexec\\\" mount option causes the system to not execute binary files. This option must be used for mounting any file system not containing approved binary files, as they may be incompatible. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nodev\\\" mount option causes the system to not interpret character or block special devices. Executing character or block special devices from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.\\n\\nThe \\\"nosuid\\\" mount option causes the system to not execute \\\"setuid\\\" and \\\"setgid\\\" files with owner privileges. This option must be used for mounting any file system not containing approved \\\"setuid\\\" and \\\"setguid\\\" files. Executing files from untrusted file systems increases the opportunity for unprivileged users to attain unauthorized administrative access.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-001764\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the system so that /var/tmp is mounted with the \\\"noexec\\\" option by adding /modifying the /etc/fstab with the following line:\\n\\n/dev/mapper/rhel-var-log-audit /var/tmp xfs defaults,nodev,nosuid,noexec 0 0\",\n \"fixref\": \"F-33166r568313_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33166r568313_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:341\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:30:40" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-002418" + ], + "nist": [ + "SC-8" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without protection of the transmitted information, confidentiality and integrity may be compromised because unprotected communications can be intercepted and either read or altered. \\n\\nThis requirement applies to both internal and external networks and all types of information system components from which information can be transmitted (e.g., servers, mobile devices, notebook computers, printers, copiers, scanners, and facsimile machines). Communication paths outside the physical protection of a controlled boundary are exposed to the possibility of interception and modification. \\n\\nProtecting the confidentiality and integrity of organizational information can be accomplished by physical means (e.g., employing physical distribution systems) or by logical means (e.g., employing cryptographic techniques). If physical means of protection are employed, then logical means (cryptography) do not have to be employed, and vice versa.\\n\\nSatisfies: SRG-OS-000423-GPOS-00187, SRG-OS-000424-GPOS-00188, SRG-OS-000425-GPOS-00189, SRG-OS-000426-GPOS-00190\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230526", + "group_title": "SRG-OS-000423-GPOS-00187", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230526r744032_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:342", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33170r744031_fix", + "fixtext_fixref": "F-33170r744031_fix", + "ident": { + "text": "CCI-002418", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230526r744032_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230522r627750_rule", + "version": "RHEL-08-040134", + "time": "2021-12-17T10:30:40", + "weight": "10.0", + "severity": "medium", + "cdf:result": "pass", + "cdf:ident": { + "text": "CCI-001764", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33166r568313_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:341", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "All RHEL 8 networked systems must have and implement SSH to protect the confidentiality and integrity of transmitted and received information, as well as information during preparation for transmission.", + "id": "V-230526", + "desc": "Without protection of the transmitted information, confidentiality and integrity may be compromised because unprotected communications can be intercepted and either read or altered. \n\nThis requirement applies to both internal and external networks and all types of information system components from which information can be transmitted (e.g., servers, mobile devices, notebook computers, printers, copiers, scanners, and facsimile machines). Communication paths outside the physical protection of a controlled boundary are exposed to the possibility of interception and modification. \n\nProtecting the confidentiality and integrity of organizational information can be accomplished by physical means (e.g., employing physical distribution systems) or by logical means (e.g., employing cryptographic techniques). If physical means of protection are employed, then logical means (cryptography) do not have to be employed, and vice versa.\n\nSatisfies: SRG-OS-000423-GPOS-00187, SRG-OS-000424-GPOS-00188, SRG-OS-000425-GPOS-00189, SRG-OS-000426-GPOS-00190", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:342", + "label": "check" + }, + { + "data": "Configure the SSH service to automatically start after reboot with the following command:\n\n$ sudo systemctl enable sshd.service", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230526\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230526\",\n \"cdf:title\": \"SRG-OS-000423-GPOS-00187\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230526r744032_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230526r744032_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-040160\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"All RHEL 8 networked systems must have and implement SSH to protect the confidentiality and integrity of transmitted and received information, as well as information during preparation for transmission.\",\n \"cdf:description\": \"<VulnDiscussion>Without protection of the transmitted information, confidentiality and integrity may be compromised because unprotected communications can be intercepted and either read or altered. \\n\\nThis requirement applies to both internal and external networks and all types of information system components from which information can be transmitted (e.g., servers, mobile devices, notebook computers, printers, copiers, scanners, and facsimile machines). Communication paths outside the physical protection of a controlled boundary are exposed to the possibility of interception and modification. \\n\\nProtecting the confidentiality and integrity of organizational information can be accomplished by physical means (e.g., employing physical distribution systems) or by logical means (e.g., employing cryptographic techniques). If physical means of protection are employed, then logical means (cryptography) do not have to be employed, and vice versa.\\n\\nSatisfies: SRG-OS-000423-GPOS-00187, SRG-OS-000424-GPOS-00188, SRG-OS-000425-GPOS-00189, SRG-OS-000426-GPOS-00190</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-002418\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the SSH service to automatically start after reboot with the following command:\\n\\n$ sudo systemctl enable sshd.service\",\n \"fixref\": \"F-33170r744031_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33170r744031_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:342\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:30:40" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000068" + ], + "nist": [ + "AC-17 (2)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without protection of the transmitted information, confidentiality and integrity may be compromised because unprotected communications can be intercepted and either read or altered. \\n\\nThis requirement applies to both internal and external networks and all types of information system components from which information can be transmitted (e.g., servers, mobile devices, notebook computers, printers, copiers, scanners, and facsimile machines). Communication paths outside the physical protection of a controlled boundary are exposed to the possibility of interception and modification. \\n\\nProtecting the confidentiality and integrity of organizational information can be accomplished by physical means (e.g., employing physical distribution systems) or by logical means (e.g., employing cryptographic techniques). If physical means of protection are employed, then logical means (cryptography) do not have to be employed, and vice versa.\\n\\nSession key regeneration limits the chances of a session key becoming compromised.\\n\\nSatisfies: SRG-OS-000033-GPOS-00014, SRG-OS-000420-GPOS-00186, SRG-OS-000424-GPOS-00188\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230527", + "group_title": "SRG-OS-000033-GPOS-00014", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230527r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:343", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33171r568328_fix", + "fixtext_fixref": "F-33171r568328_fix", + "ident": { + "text": "CCI-000068", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230527r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230526r744032_rule", + "version": "RHEL-08-040160", + "time": "2021-12-17T10:30:40", + "weight": "10.0", + "severity": "medium", + "cdf:result": "pass", + "cdf:ident": { + "text": "CCI-002418", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33170r744031_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:342", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must force a frequent session key renegotiation for SSH connections to the server.", + "id": "V-230527", + "desc": "Without protection of the transmitted information, confidentiality and integrity may be compromised because unprotected communications can be intercepted and either read or altered. \n\nThis requirement applies to both internal and external networks and all types of information system components from which information can be transmitted (e.g., servers, mobile devices, notebook computers, printers, copiers, scanners, and facsimile machines). Communication paths outside the physical protection of a controlled boundary are exposed to the possibility of interception and modification. \n\nProtecting the confidentiality and integrity of organizational information can be accomplished by physical means (e.g., employing physical distribution systems) or by logical means (e.g., employing cryptographic techniques). If physical means of protection are employed, then logical means (cryptography) do not have to be employed, and vice versa.\n\nSession key regeneration limits the chances of a session key becoming compromised.\n\nSatisfies: SRG-OS-000033-GPOS-00014, SRG-OS-000420-GPOS-00186, SRG-OS-000424-GPOS-00188", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:343", + "label": "check" + }, + { + "data": "Configure the system to force a frequent session key renegotiation for SSH connections to the server by add or modifying the following line in the \"/etc/ssh/sshd_config\" file:\n\nRekeyLimit 1G 1h\n\nRestart the SSH daemon for the settings to take effect.\n\n$ sudo systemctl restart sshd.service", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230527\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230527\",\n \"cdf:title\": \"SRG-OS-000033-GPOS-00014\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230527r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230527r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-040161\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must force a frequent session key renegotiation for SSH connections to the server.\",\n \"cdf:description\": \"<VulnDiscussion>Without protection of the transmitted information, confidentiality and integrity may be compromised because unprotected communications can be intercepted and either read or altered. \\n\\nThis requirement applies to both internal and external networks and all types of information system components from which information can be transmitted (e.g., servers, mobile devices, notebook computers, printers, copiers, scanners, and facsimile machines). Communication paths outside the physical protection of a controlled boundary are exposed to the possibility of interception and modification. \\n\\nProtecting the confidentiality and integrity of organizational information can be accomplished by physical means (e.g., employing physical distribution systems) or by logical means (e.g., employing cryptographic techniques). If physical means of protection are employed, then logical means (cryptography) do not have to be employed, and vice versa.\\n\\nSession key regeneration limits the chances of a session key becoming compromised.\\n\\nSatisfies: SRG-OS-000033-GPOS-00014, SRG-OS-000420-GPOS-00186, SRG-OS-000424-GPOS-00188</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000068\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the system to force a frequent session key renegotiation for SSH connections to the server by add or modifying the following line in the \\\"/etc/ssh/sshd_config\\\" file:\\n\\nRekeyLimit 1G 1h\\n\\nRestart the SSH daemon for the settings to take effect.\\n\\n$ sudo systemctl restart sshd.service\",\n \"fixref\": \"F-33171r568328_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33171r568328_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:343\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:42" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "high", + "description": "{\"VulnDiscussion\":\"A locally logged-on user who presses Ctrl-Alt-Delete when at the console can reboot the system. If accidentally pressed, as could happen in the case of a mixed OS environment, this can create the risk of short-term loss of availability of systems due to unintentional reboot. In a graphical user environment, risk of unintentional reboot from the Ctrl-Alt-Delete sequence is reduced because the user will be prompted before any action is taken.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230531", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230531r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:345", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33175r619890_fix", + "fixtext_fixref": "F-33175r619890_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230531r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230527r627750_rule", + "version": "RHEL-08-040161", + "time": "2021-12-17T10:30:42", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000068", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33171r568328_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:343", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The systemd Ctrl-Alt-Delete burst key sequence in RHEL 8 must be disabled.", + "id": "V-230531", + "desc": "A locally logged-on user who presses Ctrl-Alt-Delete when at the console can reboot the system. If accidentally pressed, as could happen in the case of a mixed OS environment, this can create the risk of short-term loss of availability of systems due to unintentional reboot. In a graphical user environment, risk of unintentional reboot from the Ctrl-Alt-Delete sequence is reduced because the user will be prompted before any action is taken.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:345", + "label": "check" + }, + { + "data": "Configure the system to disable the CtrlAltDelBurstAction by added or modifying the following line in the \"/etc/systemd/system.conf\" configuration file:\n\nCtrlAltDelBurstAction=none\n\nReload the daemon for this change to take effect.\n\n$ sudo systemctl daemon-reload", + "label": "fix" + } + ], + "impact": 0.7, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230531\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230531\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230531r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230531r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"high\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-040172\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The systemd Ctrl-Alt-Delete burst key sequence in RHEL 8 must be disabled.\",\n \"cdf:description\": \"<VulnDiscussion>A locally logged-on user who presses Ctrl-Alt-Delete when at the console can reboot the system. If accidentally pressed, as could happen in the case of a mixed OS environment, this can create the risk of short-term loss of availability of systems due to unintentional reboot. In a graphical user environment, risk of unintentional reboot from the Ctrl-Alt-Delete sequence is reduced because the user will be prompted before any action is taken.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the system to disable the CtrlAltDelBurstAction by added or modifying the following line in the \\\"/etc/systemd/system.conf\\\" configuration file:\\n\\nCtrlAltDelBurstAction=none\\n\\nReload the daemon for this change to take effect.\\n\\n$ sudo systemctl daemon-reload\",\n \"fixref\": \"F-33175r619890_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33175r619890_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:345\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:42" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "high", + "description": "{\"VulnDiscussion\":\"If TFTP is required for operational support (such as the transmission of router configurations) its use must be documented with the Information System Security Officer (ISSO), restricted to only authorized personnel, and have access control rules established.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230533", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230533r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:346", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33177r568346_fix", + "fixtext_fixref": "F-33177r568346_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230533r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230531r627750_rule", + "version": "RHEL-08-040172", + "time": "2021-12-17T10:30:42", + "weight": "10.0", + "severity": "high", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33175r619890_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:345", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The Trivial File Transfer Protocol (TFTP) server package must not be installed if not required for RHEL 8 operational support.", + "id": "V-230533", + "desc": "If TFTP is required for operational support (such as the transmission of router configurations) its use must be documented with the Information System Security Officer (ISSO), restricted to only authorized personnel, and have access control rules established.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:346", + "label": "check" + }, + { + "data": "Remove the TFTP package from the system with the following command:\n\n$ sudo yum remove tftp-server", + "label": "fix" + } + ], + "impact": 0.7, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230533\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230533\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230533r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230533r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"high\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-040190\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The Trivial File Transfer Protocol (TFTP) server package must not be installed if not required for RHEL 8 operational support.\",\n \"cdf:description\": \"<VulnDiscussion>If TFTP is required for operational support (such as the transmission of router configurations) its use must be documented with the Information System Security Officer (ISSO), restricted to only authorized personnel, and have access control rules established.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Remove the TFTP package from the system with the following command:\\n\\n$ sudo yum remove tftp-server\",\n \"fixref\": \"F-33177r568346_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33177r568346_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:346\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:30:42" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "high", + "description": "{\"VulnDiscussion\":\"If an account other than root also has a User Identifier (UID) of \\\"0\\\", it has root authority, giving that account unrestricted access to the entire operating system. Multiple accounts with a UID of \\\"0\\\" afford an opportunity for potential intruders to guess a password for a privileged account.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230534", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230534r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:347", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33178r568349_fix", + "fixtext_fixref": "F-33178r568349_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230534r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230533r627750_rule", + "version": "RHEL-08-040190", + "time": "2021-12-17T10:30:42", + "weight": "10.0", + "severity": "high", + "cdf:result": "pass", + "cdf:ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33177r568346_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:346", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The root account must be the only account having unrestricted access to the RHEL 8 system.", + "id": "V-230534", + "desc": "If an account other than root also has a User Identifier (UID) of \"0\", it has root authority, giving that account unrestricted access to the entire operating system. Multiple accounts with a UID of \"0\" afford an opportunity for potential intruders to guess a password for a privileged account.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:347", + "label": "check" + }, + { + "data": "Change the UID of any account on the system, other than root, that has a UID of \"0\". \n\nIf the account is associated with system commands or applications, the UID should be changed to one greater than \"0\" but less than \"1000\". Otherwise, assign a UID of greater than \"1000\" that has not already been assigned.", + "label": "fix" + } + ], + "impact": 0.7, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230534\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230534\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230534r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230534r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"high\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-040200\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The root account must be the only account having unrestricted access to the RHEL 8 system.\",\n \"cdf:description\": \"<VulnDiscussion>If an account other than root also has a User Identifier (UID) of \\\"0\\\", it has root authority, giving that account unrestricted access to the entire operating system. Multiple accounts with a UID of \\\"0\\\" afford an opportunity for potential intruders to guess a password for a privileged account.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Change the UID of any account on the system, other than root, that has a UID of \\\"0\\\". \\n\\nIf the account is associated with system commands or applications, the UID should be changed to one greater than \\\"0\\\" but less than \\\"1000\\\". Otherwise, assign a UID of greater than \\\"1000\\\" that has not already been assigned.\",\n \"fixref\": \"F-33178r568349_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33178r568349_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:347\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:30:44" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages modify the host's route table and are unauthenticated. An illicit ICMP redirect message could result in a man-in-the-middle attack.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230535", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230535r744035_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:348", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33179r744034_fix", + "fixtext_fixref": "F-33179r744034_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230535r744035_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230534r627750_rule", + "version": "RHEL-08-040200", + "time": "2021-12-17T10:30:44", + "weight": "10.0", + "severity": "high", + "cdf:result": "pass", + "cdf:ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33178r568349_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:347", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must prevent IPv6 Internet Control Message Protocol (ICMP) redirect messages from being accepted.", + "id": "V-230535", + "desc": "ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages modify the host's route table and are unauthenticated. An illicit ICMP redirect message could result in a man-in-the-middle attack.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:348", + "label": "check" + }, + { + "data": "Configure RHEL 8 to prevent IPv6 ICMP redirect messages from being accepted with the following command:\n\n$ sudo sysctl -w net.ipv6.conf.default.accept_redirects=0\n\nIf \"0\" is not the system's default value then add or update the following line in the appropriate file under \"/etc/sysctl.d\":\n\nnet.ipv6.conf.default.accept_redirects=0", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230535\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230535\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230535r744035_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230535r744035_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-040210\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must prevent IPv6 Internet Control Message Protocol (ICMP) redirect messages from being accepted.\",\n \"cdf:description\": \"<VulnDiscussion>ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages modify the host's route table and are unauthenticated. An illicit ICMP redirect message could result in a man-in-the-middle attack.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure RHEL 8 to prevent IPv6 ICMP redirect messages from being accepted with the following command:\\n\\n$ sudo sysctl -w net.ipv6.conf.default.accept_redirects=0\\n\\nIf \\\"0\\\" is not the system's default value then add or update the following line in the appropriate file under \\\"/etc/sysctl.d\\\":\\n\\nnet.ipv6.conf.default.accept_redirects=0\",\n \"fixref\": \"F-33179r744034_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33179r744034_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:348\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:44" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages contain information from the system's route table, possibly revealing portions of the network topology.\\n\\nThere are notable differences between Internet Protocol version 4 (IPv4) and Internet Protocol version 6 (IPv6). There is only a directive to disable sending of IPv4 redirected packets. Refer to RFC4294 for an explanation of \\\"IPv6 Node Requirements\\\", which resulted in this difference between IPv4 and IPv6.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230536", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230536r744037_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:349", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33180r568355_fix", + "fixtext_fixref": "F-33180r568355_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230536r744037_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230535r744035_rule", + "version": "RHEL-08-040210", + "time": "2021-12-17T10:30:44", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33179r744034_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:348", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must not send Internet Control Message Protocol (ICMP) redirects.", + "id": "V-230536", + "desc": "ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages contain information from the system's route table, possibly revealing portions of the network topology.\n\nThere are notable differences between Internet Protocol version 4 (IPv4) and Internet Protocol version 6 (IPv6). There is only a directive to disable sending of IPv4 redirected packets. Refer to RFC4294 for an explanation of \"IPv6 Node Requirements\", which resulted in this difference between IPv4 and IPv6.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:349", + "label": "check" + }, + { + "data": "Configure RHEL 8 to not allow interfaces to perform IPv4 ICMP redirects with the following command:\n\n$ sudo sysctl -w net.ipv4.conf.all.send_redirects=0\n\nIf \"0\" is not the system's default value then add or update the following line in the appropriate file under \"/etc/sysctl.d\":\n\nnet.ipv4.conf.all.send_redirects=0", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230536\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230536\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230536r744037_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230536r744037_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-040220\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must not send Internet Control Message Protocol (ICMP) redirects.\",\n \"cdf:description\": \"<VulnDiscussion>ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages contain information from the system's route table, possibly revealing portions of the network topology.\\n\\nThere are notable differences between Internet Protocol version 4 (IPv4) and Internet Protocol version 6 (IPv6). There is only a directive to disable sending of IPv4 redirected packets. Refer to RFC4294 for an explanation of \\\"IPv6 Node Requirements\\\", which resulted in this difference between IPv4 and IPv6.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure RHEL 8 to not allow interfaces to perform IPv4 ICMP redirects with the following command:\\n\\n$ sudo sysctl -w net.ipv4.conf.all.send_redirects=0\\n\\nIf \\\"0\\\" is not the system's default value then add or update the following line in the appropriate file under \\\"/etc/sysctl.d\\\":\\n\\nnet.ipv4.conf.all.send_redirects=0\",\n \"fixref\": \"F-33180r568355_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33180r568355_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:349\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:45" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Responding to broadcast ICMP echoes facilitates network mapping and provides a vector for amplification attacks.\\n\\nThere are notable differences between Internet Protocol version 4 (IPv4) and Internet Protocol version 6 (IPv6). IPv6 does not implement the same method of broadcast as IPv4. Instead, IPv6 uses multicast addressing to the all-hosts multicast group. Refer to RFC4294 for an explanation of \\\"IPv6 Node Requirements\\\", which resulted in this difference between IPv4 and IPv6.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230537", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230537r744039_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:350", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33181r568358_fix", + "fixtext_fixref": "F-33181r568358_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230537r744039_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230536r744037_rule", + "version": "RHEL-08-040220", + "time": "2021-12-17T10:30:45", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33180r568355_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:349", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must not respond to Internet Control Message Protocol (ICMP) echoes sent to a broadcast address.", + "id": "V-230537", + "desc": "Responding to broadcast ICMP echoes facilitates network mapping and provides a vector for amplification attacks.\n\nThere are notable differences between Internet Protocol version 4 (IPv4) and Internet Protocol version 6 (IPv6). IPv6 does not implement the same method of broadcast as IPv4. Instead, IPv6 uses multicast addressing to the all-hosts multicast group. Refer to RFC4294 for an explanation of \"IPv6 Node Requirements\", which resulted in this difference between IPv4 and IPv6.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:350", + "label": "check" + }, + { + "data": "Configure RHEL 8 to not respond to IPv4 ICMP echoes sent to a broadcast address with the following command:\n\n$ sudo sysctl -w net.ipv4.icmp_echo_ignore_broadcasts=1\n\nIf \"1\" is not the system's default value then add or update the following line in the appropriate file under \"/etc/sysctl.d\":\n\nnet.ipv4.icmp_echo_ignore_broadcasts=1", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230537\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230537\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230537r744039_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230537r744039_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-040230\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must not respond to Internet Control Message Protocol (ICMP) echoes sent to a broadcast address.\",\n \"cdf:description\": \"<VulnDiscussion>Responding to broadcast ICMP echoes facilitates network mapping and provides a vector for amplification attacks.\\n\\nThere are notable differences between Internet Protocol version 4 (IPv4) and Internet Protocol version 6 (IPv6). IPv6 does not implement the same method of broadcast as IPv4. Instead, IPv6 uses multicast addressing to the all-hosts multicast group. Refer to RFC4294 for an explanation of \\\"IPv6 Node Requirements\\\", which resulted in this difference between IPv4 and IPv6.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure RHEL 8 to not respond to IPv4 ICMP echoes sent to a broadcast address with the following command:\\n\\n$ sudo sysctl -w net.ipv4.icmp_echo_ignore_broadcasts=1\\n\\nIf \\\"1\\\" is not the system's default value then add or update the following line in the appropriate file under \\\"/etc/sysctl.d\\\":\\n\\nnet.ipv4.icmp_echo_ignore_broadcasts=1\",\n \"fixref\": \"F-33181r568358_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33181r568358_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:350\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:45" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Source-routed packets allow the source of the packet to suggest that routers forward the packet along a different path than configured on the router, which can be used to bypass network security measures. This requirement applies only to the forwarding of source-routed traffic, such as when forwarding is enabled and the system is functioning as a router.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230538", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230538r744042_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:351", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33182r744041_fix", + "fixtext_fixref": "F-33182r744041_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230538r744042_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230537r744039_rule", + "version": "RHEL-08-040230", + "time": "2021-12-17T10:30:45", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33181r568358_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:350", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must not forward IPv6 source-routed packets.", + "id": "V-230538", + "desc": "Source-routed packets allow the source of the packet to suggest that routers forward the packet along a different path than configured on the router, which can be used to bypass network security measures. This requirement applies only to the forwarding of source-routed traffic, such as when forwarding is enabled and the system is functioning as a router.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:351", + "label": "check" + }, + { + "data": "Configure RHEL 8 to not forward IPv6 source-routed packets with the following command:\n\n$ sudo sysctl -w net.ipv6.conf.all.accept_source_route=0\n\nIf \"0\" is not the system's all value then add or update the following line in the appropriate file under \"/etc/sysctl.d\":\n\nnet.ipv6.conf.all.accept_source_route=0", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230538\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230538\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230538r744042_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230538r744042_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-040240\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must not forward IPv6 source-routed packets.\",\n \"cdf:description\": \"<VulnDiscussion>Source-routed packets allow the source of the packet to suggest that routers forward the packet along a different path than configured on the router, which can be used to bypass network security measures. This requirement applies only to the forwarding of source-routed traffic, such as when forwarding is enabled and the system is functioning as a router.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure RHEL 8 to not forward IPv6 source-routed packets with the following command:\\n\\n$ sudo sysctl -w net.ipv6.conf.all.accept_source_route=0\\n\\nIf \\\"0\\\" is not the system's all value then add or update the following line in the appropriate file under \\\"/etc/sysctl.d\\\":\\n\\nnet.ipv6.conf.all.accept_source_route=0\",\n \"fixref\": \"F-33182r744041_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33182r744041_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:351\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:45" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Source-routed packets allow the source of the packet to suggest that routers forward the packet along a different path than configured on the router, which can be used to bypass network security measures. This requirement applies only to the forwarding of source-routed traffic, such as when forwarding is enabled and the system is functioning as a router.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230539", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230539r744045_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:352", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33183r744044_fix", + "fixtext_fixref": "F-33183r744044_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230539r744045_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230538r744042_rule", + "version": "RHEL-08-040240", + "time": "2021-12-17T10:30:45", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33182r744041_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:351", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must not forward IPv6 source-routed packets by default.", + "id": "V-230539", + "desc": "Source-routed packets allow the source of the packet to suggest that routers forward the packet along a different path than configured on the router, which can be used to bypass network security measures. This requirement applies only to the forwarding of source-routed traffic, such as when forwarding is enabled and the system is functioning as a router.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:352", + "label": "check" + }, + { + "data": "Configure RHEL 8 to not forward IPv6 source-routed packets by default with the following command:\n\n$ sudo sysctl -w net.ipv6.conf.default.accept_source_route=0\n\nIf \"0\" is not the system's default value then add or update the following line in the appropriate file under \"/etc/sysctl.d\":\n\nnet.ipv6.conf.default.accept_source_route=0", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230539\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230539\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230539r744045_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230539r744045_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-040250\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must not forward IPv6 source-routed packets by default.\",\n \"cdf:description\": \"<VulnDiscussion>Source-routed packets allow the source of the packet to suggest that routers forward the packet along a different path than configured on the router, which can be used to bypass network security measures. This requirement applies only to the forwarding of source-routed traffic, such as when forwarding is enabled and the system is functioning as a router.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure RHEL 8 to not forward IPv6 source-routed packets by default with the following command:\\n\\n$ sudo sysctl -w net.ipv6.conf.default.accept_source_route=0\\n\\nIf \\\"0\\\" is not the system's default value then add or update the following line in the appropriate file under \\\"/etc/sysctl.d\\\":\\n\\nnet.ipv6.conf.default.accept_source_route=0\",\n \"fixref\": \"F-33183r744044_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33183r744044_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:352\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:45" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Routing protocol daemons are typically used on routers to exchange network topology information with other routers. If this software is used when not required, system network information may be unnecessarily transmitted across the network.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230540", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230540r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:353", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33184r568367_fix", + "fixtext_fixref": "F-33184r568367_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230540r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230539r744045_rule", + "version": "RHEL-08-040250", + "time": "2021-12-17T10:30:45", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33183r744044_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:352", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must not be performing packet forwarding unless the system is a router.", + "id": "V-230540", + "desc": "Routing protocol daemons are typically used on routers to exchange network topology information with other routers. If this software is used when not required, system network information may be unnecessarily transmitted across the network.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:353", + "label": "check" + }, + { + "data": "Configure RHEL 8 to not allow packet forwarding, unless the system is a router with the following commands:\n\n$ sudo sysctl -w net.ipv4.ip_forward=0\n\n$ sudo sysctl -w net.ipv6.conf.all.forwarding=0\n\nIf \"0\" is not the system's default value then add or update the following lines in the appropriate file under \"/etc/sysctl.d\":\n\nnet.ipv4.ip_forward=0\n\nnet.ipv6.conf.all.forwarding=0", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230540\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230540\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230540r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230540r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-040260\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must not be performing packet forwarding unless the system is a router.\",\n \"cdf:description\": \"<VulnDiscussion>Routing protocol daemons are typically used on routers to exchange network topology information with other routers. If this software is used when not required, system network information may be unnecessarily transmitted across the network.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure RHEL 8 to not allow packet forwarding, unless the system is a router with the following commands:\\n\\n$ sudo sysctl -w net.ipv4.ip_forward=0\\n\\n$ sudo sysctl -w net.ipv6.conf.all.forwarding=0\\n\\nIf \\\"0\\\" is not the system's default value then add or update the following lines in the appropriate file under \\\"/etc/sysctl.d\\\":\\n\\nnet.ipv4.ip_forward=0\\n\\nnet.ipv6.conf.all.forwarding=0\",\n \"fixref\": \"F-33184r568367_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33184r568367_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:353\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:45" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Routing protocol daemons are typically used on routers to exchange network topology information with other routers. If this software is used when not required, system network information may be unnecessarily transmitted across the network.\\n\\nAn illicit router advertisement message could result in a man-in-the-middle attack.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230541", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230541r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:354", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33185r568370_fix", + "fixtext_fixref": "F-33185r568370_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230541r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230540r627750_rule", + "version": "RHEL-08-040260", + "time": "2021-12-17T10:30:45", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33184r568367_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:353", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must not accept router advertisements on all IPv6 interfaces.", + "id": "V-230541", + "desc": "Routing protocol daemons are typically used on routers to exchange network topology information with other routers. If this software is used when not required, system network information may be unnecessarily transmitted across the network.\n\nAn illicit router advertisement message could result in a man-in-the-middle attack.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:354", + "label": "check" + }, + { + "data": "Configure RHEL 8 to not accept router advertisements on all IPv6 interfaces unless the system is a router with the following commands:\n\n$ sudo sysctl -w net.ipv6.conf.all.accept_ra=0\n\nIf \"0\" is not the system's default value then add or update the following lines in the appropriate file under \"/etc/sysctl.d\":\n\nnet.ipv6.conf.all.accept_ra=0", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230541\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230541\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230541r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230541r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-040261\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must not accept router advertisements on all IPv6 interfaces.\",\n \"cdf:description\": \"<VulnDiscussion>Routing protocol daemons are typically used on routers to exchange network topology information with other routers. If this software is used when not required, system network information may be unnecessarily transmitted across the network.\\n\\nAn illicit router advertisement message could result in a man-in-the-middle attack.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure RHEL 8 to not accept router advertisements on all IPv6 interfaces unless the system is a router with the following commands:\\n\\n$ sudo sysctl -w net.ipv6.conf.all.accept_ra=0\\n\\nIf \\\"0\\\" is not the system's default value then add or update the following lines in the appropriate file under \\\"/etc/sysctl.d\\\":\\n\\nnet.ipv6.conf.all.accept_ra=0\",\n \"fixref\": \"F-33185r568370_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33185r568370_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:354\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:45" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Routing protocol daemons are typically used on routers to exchange network topology information with other routers. If this software is used when not required, system network information may be unnecessarily transmitted across the network.\\n\\nAn illicit router advertisement message could result in a man-in-the-middle attack.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230542", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230542r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:355", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33186r568373_fix", + "fixtext_fixref": "F-33186r568373_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230542r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230541r627750_rule", + "version": "RHEL-08-040261", + "time": "2021-12-17T10:30:45", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33185r568370_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:354", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must not accept router advertisements on all IPv6 interfaces by default.", + "id": "V-230542", + "desc": "Routing protocol daemons are typically used on routers to exchange network topology information with other routers. If this software is used when not required, system network information may be unnecessarily transmitted across the network.\n\nAn illicit router advertisement message could result in a man-in-the-middle attack.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:355", + "label": "check" + }, + { + "data": "Configure RHEL 8 to not accept router advertisements on all IPv6 interfaces by default unless the system is a router with the following commands:\n\n$ sudo sysctl -w net.ipv6.conf.default.accept_ra=0\n\nIf \"0\" is not the system's default value then add or update the following lines in the appropriate file under \"/etc/sysctl.d\":\n\nnet.ipv6.conf.default.accept_ra=0", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230542\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230542\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230542r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230542r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-040262\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must not accept router advertisements on all IPv6 interfaces by default.\",\n \"cdf:description\": \"<VulnDiscussion>Routing protocol daemons are typically used on routers to exchange network topology information with other routers. If this software is used when not required, system network information may be unnecessarily transmitted across the network.\\n\\nAn illicit router advertisement message could result in a man-in-the-middle attack.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure RHEL 8 to not accept router advertisements on all IPv6 interfaces by default unless the system is a router with the following commands:\\n\\n$ sudo sysctl -w net.ipv6.conf.default.accept_ra=0\\n\\nIf \\\"0\\\" is not the system's default value then add or update the following lines in the appropriate file under \\\"/etc/sysctl.d\\\":\\n\\nnet.ipv6.conf.default.accept_ra=0\",\n \"fixref\": \"F-33186r568373_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33186r568373_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:355\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:45" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages contain information from the system's route table, possibly revealing portions of the network topology.\\n\\nThere are notable differences between Internet Protocol version 4 (IPv4) and Internet Protocol version 6 (IPv6). There is only a directive to disable sending of IPv4 redirected packets. Refer to RFC4294 for an explanation of \\\"IPv6 Node Requirements\\\", which resulted in this difference between IPv4 and IPv6.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230543", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230543r744047_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:356", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33187r568376_fix", + "fixtext_fixref": "F-33187r568376_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230543r744047_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230542r627750_rule", + "version": "RHEL-08-040262", + "time": "2021-12-17T10:30:45", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33186r568373_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:355", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must not allow interfaces to perform Internet Control Message Protocol (ICMP) redirects by default.", + "id": "V-230543", + "desc": "ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages contain information from the system's route table, possibly revealing portions of the network topology.\n\nThere are notable differences between Internet Protocol version 4 (IPv4) and Internet Protocol version 6 (IPv6). There is only a directive to disable sending of IPv4 redirected packets. Refer to RFC4294 for an explanation of \"IPv6 Node Requirements\", which resulted in this difference between IPv4 and IPv6.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:356", + "label": "check" + }, + { + "data": "Configure RHEL 8 to not allow interfaces to perform Internet Protocol version 4 (IPv4) ICMP redirects by default with the following command:\n\n$ sudo sysctl -w net.ipv4.conf.default.send_redirects=0\n\nIf \"0\" is not the system's default value then add or update the following line in the appropriate file under \"/etc/sysctl.d\":\n\nnet.ipv4.conf.default.send_redirects=0", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230543\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230543\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230543r744047_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230543r744047_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-040270\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must not allow interfaces to perform Internet Control Message Protocol (ICMP) redirects by default.\",\n \"cdf:description\": \"<VulnDiscussion>ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages contain information from the system's route table, possibly revealing portions of the network topology.\\n\\nThere are notable differences between Internet Protocol version 4 (IPv4) and Internet Protocol version 6 (IPv6). There is only a directive to disable sending of IPv4 redirected packets. Refer to RFC4294 for an explanation of \\\"IPv6 Node Requirements\\\", which resulted in this difference between IPv4 and IPv6.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure RHEL 8 to not allow interfaces to perform Internet Protocol version 4 (IPv4) ICMP redirects by default with the following command:\\n\\n$ sudo sysctl -w net.ipv4.conf.default.send_redirects=0\\n\\nIf \\\"0\\\" is not the system's default value then add or update the following line in the appropriate file under \\\"/etc/sysctl.d\\\":\\n\\nnet.ipv4.conf.default.send_redirects=0\",\n \"fixref\": \"F-33187r568376_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33187r568376_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:356\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:45" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages modify the host's route table and are unauthenticated. An illicit ICMP redirect message could result in a man-in-the-middle attack.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230544", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230544r744050_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:357", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33188r744049_fix", + "fixtext_fixref": "F-33188r744049_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230544r744050_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230543r744047_rule", + "version": "RHEL-08-040270", + "time": "2021-12-17T10:30:45", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33187r568376_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:356", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must ignore IPv6 Internet Control Message Protocol (ICMP) redirect messages.", + "id": "V-230544", + "desc": "ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages modify the host's route table and are unauthenticated. An illicit ICMP redirect message could result in a man-in-the-middle attack.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:357", + "label": "check" + }, + { + "data": "Configure RHEL 8 to ignore IPv6 ICMP redirect messages with the following command:\n\n$ sudo sysctl -w net.ipv6.conf.all.accept_redirects=0\n\nIf \"0\" is not the system's default value then add or update the following line in the appropriate file under \"/etc/sysctl.d\":\n\nnet.ipv6.conf.all.accept_redirects = 0", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230544\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230544\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230544r744050_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230544r744050_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-040280\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must ignore IPv6 Internet Control Message Protocol (ICMP) redirect messages.\",\n \"cdf:description\": \"<VulnDiscussion>ICMP redirect messages are used by routers to inform hosts that a more direct route exists for a particular destination. These messages modify the host's route table and are unauthenticated. An illicit ICMP redirect message could result in a man-in-the-middle attack.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure RHEL 8 to ignore IPv6 ICMP redirect messages with the following command:\\n\\n$ sudo sysctl -w net.ipv6.conf.all.accept_redirects=0\\n\\nIf \\\"0\\\" is not the system's default value then add or update the following line in the appropriate file under \\\"/etc/sysctl.d\\\":\\n\\nnet.ipv6.conf.all.accept_redirects = 0\",\n \"fixref\": \"F-33188r744049_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33188r744049_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:357\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:46" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230545", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230545r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:358", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33189r568382_fix", + "fixtext_fixref": "F-33189r568382_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230545r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230544r744050_rule", + "version": "RHEL-08-040280", + "time": "2021-12-17T10:30:46", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33188r744049_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:357", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must disable access to network bpf syscall from unprivileged processes.", + "id": "V-230545", + "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:358", + "label": "check" + }, + { + "data": "Configure RHEL 8 to prevent privilege escalation thru the kernel by disabling access to the bpf syscall by adding the following line to a file in the \"/etc/sysctl.d\" directory:\n\nkernel.unprivileged_bpf_disabled = 1\n\nThe system configuration files need to be reloaded for the changes to take effect. To reload the contents of the files, run the following command:\n\n$ sudo sysctl --system", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230545\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230545\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230545r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230545r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-040281\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must disable access to network bpf syscall from unprivileged processes.\",\n \"cdf:description\": \"<VulnDiscussion>It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure RHEL 8 to prevent privilege escalation thru the kernel by disabling access to the bpf syscall by adding the following line to a file in the \\\"/etc/sysctl.d\\\" directory:\\n\\nkernel.unprivileged_bpf_disabled = 1\\n\\nThe system configuration files need to be reloaded for the changes to take effect. To reload the contents of the files, run the following command:\\n\\n$ sudo sysctl --system\",\n \"fixref\": \"F-33189r568382_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33189r568382_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:358\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:46" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230546", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230546r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:359", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33190r568385_fix", + "fixtext_fixref": "F-33190r568385_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230546r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230545r627750_rule", + "version": "RHEL-08-040281", + "time": "2021-12-17T10:30:46", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33189r568382_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:358", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must restrict usage of ptrace to descendant processes.", + "id": "V-230546", + "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:359", + "label": "check" + }, + { + "data": "Configure RHEL 8 to restrict usage of ptrace to descendant processes by adding the following line to a file in the \"/etc/sysctl.d\" directory:\n\nkernel.yama.ptrace_scope = 1\n\nThe system configuration files need to be reloaded for the changes to take effect. To reload the contents of the files, run the following command:\n\n$ sudo sysctl --system", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230546\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230546\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230546r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230546r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-040282\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must restrict usage of ptrace to descendant processes.\",\n \"cdf:description\": \"<VulnDiscussion>It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure RHEL 8 to restrict usage of ptrace to descendant processes by adding the following line to a file in the \\\"/etc/sysctl.d\\\" directory:\\n\\nkernel.yama.ptrace_scope = 1\\n\\nThe system configuration files need to be reloaded for the changes to take effect. To reload the contents of the files, run the following command:\\n\\n$ sudo sysctl --system\",\n \"fixref\": \"F-33190r568385_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33190r568385_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:359\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:46" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230547", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230547r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:360", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33191r568388_fix", + "fixtext_fixref": "F-33191r568388_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230547r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230546r627750_rule", + "version": "RHEL-08-040282", + "time": "2021-12-17T10:30:46", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33190r568385_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:359", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must restrict exposed kernel pointer addresses access.", + "id": "V-230547", + "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:360", + "label": "check" + }, + { + "data": "Configure RHEL 8 to restrict exposed kernel pointer addresses access by adding the following line to a file in the \"/etc/sysctl.d\" directory:\n\nkernel.kptr_restrict = 1\n\nThe system configuration files need to be reloaded for the changes to take effect. To reload the contents of the files, run the following command:\n\n$ sudo sysctl --system", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230547\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230547\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230547r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230547r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-040283\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must restrict exposed kernel pointer addresses access.\",\n \"cdf:description\": \"<VulnDiscussion>It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure RHEL 8 to restrict exposed kernel pointer addresses access by adding the following line to a file in the \\\"/etc/sysctl.d\\\" directory:\\n\\nkernel.kptr_restrict = 1\\n\\nThe system configuration files need to be reloaded for the changes to take effect. To reload the contents of the files, run the following command:\\n\\n$ sudo sysctl --system\",\n \"fixref\": \"F-33191r568388_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33191r568388_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:360\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:30:46" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nUser namespaces are used primarily for Linux container. The value 0 disallows the use of user namespaces. When containers are not in use, namespaces should be disallowed. When containers are deployed on a system, the value should be set to a large non-zero value. The default value is 7182.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230548", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230548r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:361", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33192r568391_fix", + "fixtext_fixref": "F-33192r568391_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230548r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230547r627750_rule", + "version": "RHEL-08-040283", + "time": "2021-12-17T10:30:46", + "weight": "10.0", + "severity": "medium", + "cdf:result": "pass", + "cdf:ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33191r568388_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:360", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must disable the use of user namespaces.", + "id": "V-230548", + "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nUser namespaces are used primarily for Linux container. The value 0 disallows the use of user namespaces. When containers are not in use, namespaces should be disallowed. When containers are deployed on a system, the value should be set to a large non-zero value. The default value is 7182.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:361", + "label": "check" + }, + { + "data": "Configure RHEL 8 to disable the use of user namespaces by adding the following line to a file in the \"/etc/sysctl.d\" directory:\n\nNote: User namespaces are used primarily for Linux containers. If containers are in use, this requirement is not applicable. \n\nuser.max_user_namespaces = 0\n\nThe system configuration files need to be reloaded for the changes to take effect. To reload the contents of the files, run the following command:\n\n$ sudo sysctl --system", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230548\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230548\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230548r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230548r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-040284\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must disable the use of user namespaces.\",\n \"cdf:description\": \"<VulnDiscussion>It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nUser namespaces are used primarily for Linux container. The value 0 disallows the use of user namespaces. When containers are not in use, namespaces should be disallowed. When containers are deployed on a system, the value should be set to a large non-zero value. The default value is 7182.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure RHEL 8 to disable the use of user namespaces by adding the following line to a file in the \\\"/etc/sysctl.d\\\" directory:\\n\\nNote: User namespaces are used primarily for Linux containers. If containers are in use, this requirement is not applicable. \\n\\nuser.max_user_namespaces = 0\\n\\nThe system configuration files need to be reloaded for the changes to take effect. To reload the contents of the files, run the following command:\\n\\n$ sudo sysctl --system\",\n \"fixref\": \"F-33192r568391_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33192r568391_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:361\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:46" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nEnabling reverse path filtering drops packets with source addresses that are not routable. There is not an equivalent filter for IPv6 traffic.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230549", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230549r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:362", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33193r568394_fix", + "fixtext_fixref": "F-33193r568394_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230549r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230548r627750_rule", + "version": "RHEL-08-040284", + "time": "2021-12-17T10:30:46", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33192r568391_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:361", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must use reverse path filtering on all IPv4 interfaces.", + "id": "V-230549", + "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nEnabling reverse path filtering drops packets with source addresses that are not routable. There is not an equivalent filter for IPv6 traffic.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:362", + "label": "check" + }, + { + "data": "Configure RHEL 8 to use reverse path filtering on all IPv4 interfaces by adding the following line to a file in the \"/etc/sysctl.d\" directory:\n\nnet.ipv4.conf.all.rp_filter = 1\n\nThe system configuration files need to be reloaded for the changes to take effect. To reload the contents of the files, run the following command:\n\n$ sudo sysctl --system", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230549\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230549\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230549r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230549r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-040285\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must use reverse path filtering on all IPv4 interfaces.\",\n \"cdf:description\": \"<VulnDiscussion>It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nEnabling reverse path filtering drops packets with source addresses that are not routable. There is not an equivalent filter for IPv6 traffic.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure RHEL 8 to use reverse path filtering on all IPv4 interfaces by adding the following line to a file in the \\\"/etc/sysctl.d\\\" directory:\\n\\nnet.ipv4.conf.all.rp_filter = 1\\n\\nThe system configuration files need to be reloaded for the changes to take effect. To reload the contents of the files, run the following command:\\n\\n$ sudo sysctl --system\",\n \"fixref\": \"F-33193r568394_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33193r568394_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:362\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:30:46" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"If unrestricted mail relaying is permitted, unauthorized senders could use this host as a mail relay for the purpose of sending spam or other unauthorized activity.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230550", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230550r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:363", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33194r568397_fix", + "fixtext_fixref": "F-33194r568397_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230550r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230549r627750_rule", + "version": "RHEL-08-040285", + "time": "2021-12-17T10:30:46", + "weight": "10.0", + "severity": "medium", + "cdf:result": "pass", + "cdf:ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33193r568394_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:362", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must be configured to prevent unrestricted mail relaying.", + "id": "V-230550", + "desc": "If unrestricted mail relaying is permitted, unauthorized senders could use this host as a mail relay for the purpose of sending spam or other unauthorized activity.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:363", + "label": "check" + }, + { + "data": "If \"postfix\" is installed, modify the \"/etc/postfix/main.cf\" file to restrict client connections to the local network with the following command:\n\n$ sudo postconf -e 'smtpd_client_restrictions = permit_mynetworks,reject'", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230550\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230550\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230550r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230550r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-040290\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must be configured to prevent unrestricted mail relaying.\",\n \"cdf:description\": \"<VulnDiscussion>If unrestricted mail relaying is permitted, unauthorized senders could use this host as a mail relay for the purpose of sending spam or other unauthorized activity.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"If \\\"postfix\\\" is installed, modify the \\\"/etc/postfix/main.cf\\\" file to restrict client connections to the local network with the following command:\\n\\n$ sudo postconf -e 'smtpd_client_restrictions = permit_mynetworks,reject'\",\n \"fixref\": \"F-33194r568397_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33194r568397_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:363\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:30:47" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"The security risk of using X11 forwarding is that the client's X11 display server may be exposed to attack when the SSH client requests forwarding. A system administrator may have a stance in which they want to protect clients that may expose themselves to attack by unwittingly requesting X11 forwarding, which can warrant a \\\"no\\\" setting.\\n\\nX11 forwarding should be enabled with caution. Users with the ability to bypass file permissions on the remote host (for the user's X11 authorization database) can access the local X11 display through the forwarded connection. An attacker may then be able to perform activities such as keystroke monitoring if the ForwardX11Trusted option is also enabled.\\n\\nIf X11 services are not required for the system's intended function, they should be disabled or restricted as appropriate to the system's needs.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230555", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230555r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:364", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33199r568412_fix", + "fixtext_fixref": "F-33199r568412_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230555r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230550r627750_rule", + "version": "RHEL-08-040290", + "time": "2021-12-17T10:30:47", + "weight": "10.0", + "severity": "medium", + "cdf:result": "pass", + "cdf:ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33194r568397_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:363", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 remote X connections for interactive users must be disabled unless to fulfill documented and validated mission requirements.", + "id": "V-230555", + "desc": "The security risk of using X11 forwarding is that the client's X11 display server may be exposed to attack when the SSH client requests forwarding. A system administrator may have a stance in which they want to protect clients that may expose themselves to attack by unwittingly requesting X11 forwarding, which can warrant a \"no\" setting.\n\nX11 forwarding should be enabled with caution. Users with the ability to bypass file permissions on the remote host (for the user's X11 authorization database) can access the local X11 display through the forwarded connection. An attacker may then be able to perform activities such as keystroke monitoring if the ForwardX11Trusted option is also enabled.\n\nIf X11 services are not required for the system's intended function, they should be disabled or restricted as appropriate to the system's needs.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:364", + "label": "check" + }, + { + "data": "Edit the \"/etc/ssh/sshd_config\" file to uncomment or add the line for the \"X11Forwarding\" keyword and set its value to \"no\" (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor):\n\nX11Forwarding no\n\nThe SSH service must be restarted for changes to take effect:\n\n$ sudo systemctl restart sshd", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230555\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230555\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230555r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230555r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-040340\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 remote X connections for interactive users must be disabled unless to fulfill documented and validated mission requirements.\",\n \"cdf:description\": \"<VulnDiscussion>The security risk of using X11 forwarding is that the client's X11 display server may be exposed to attack when the SSH client requests forwarding. A system administrator may have a stance in which they want to protect clients that may expose themselves to attack by unwittingly requesting X11 forwarding, which can warrant a \\\"no\\\" setting.\\n\\nX11 forwarding should be enabled with caution. Users with the ability to bypass file permissions on the remote host (for the user's X11 authorization database) can access the local X11 display through the forwarded connection. An attacker may then be able to perform activities such as keystroke monitoring if the ForwardX11Trusted option is also enabled.\\n\\nIf X11 services are not required for the system's intended function, they should be disabled or restricted as appropriate to the system's needs.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Edit the \\\"/etc/ssh/sshd_config\\\" file to uncomment or add the line for the \\\"X11Forwarding\\\" keyword and set its value to \\\"no\\\" (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor):\\n\\nX11Forwarding no\\n\\nThe SSH service must be restarted for changes to take effect:\\n\\n$ sudo systemctl restart sshd\",\n \"fixref\": \"F-33199r568412_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33199r568412_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:364\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:48" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"When X11 forwarding is enabled, there may be additional exposure to the server and client displays if the sshd proxy display is configured to listen on the wildcard address. By default, sshd binds the forwarding server to the loopback address and sets the hostname part of the DIPSLAY environment variable to localhost. This prevents remote hosts from connecting to the proxy display.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230556", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230556r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:365", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33200r568415_fix", + "fixtext_fixref": "F-33200r568415_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230556r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230555r627750_rule", + "version": "RHEL-08-040340", + "time": "2021-12-17T10:30:48", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33199r568412_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:364", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The RHEL 8 SSH daemon must prevent remote hosts from connecting to the proxy display.", + "id": "V-230556", + "desc": "When X11 forwarding is enabled, there may be additional exposure to the server and client displays if the sshd proxy display is configured to listen on the wildcard address. By default, sshd binds the forwarding server to the loopback address and sets the hostname part of the DIPSLAY environment variable to localhost. This prevents remote hosts from connecting to the proxy display.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:365", + "label": "check" + }, + { + "data": "Configure the SSH daemon to prevent remote hosts from connecting to the proxy display.\n\nEdit the \"/etc/ssh/sshd_config\" file to uncomment or add the line for the \"X11UseLocalhost\" keyword and set its value to \"yes\" (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor):\n\nX11UseLocalhost yes", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230556\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230556\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230556r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230556r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-040341\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The RHEL 8 SSH daemon must prevent remote hosts from connecting to the proxy display.\",\n \"cdf:description\": \"<VulnDiscussion>When X11 forwarding is enabled, there may be additional exposure to the server and client displays if the sshd proxy display is configured to listen on the wildcard address. By default, sshd binds the forwarding server to the loopback address and sets the hostname part of the DIPSLAY environment variable to localhost. This prevents remote hosts from connecting to the proxy display.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the SSH daemon to prevent remote hosts from connecting to the proxy display.\\n\\nEdit the \\\"/etc/ssh/sshd_config\\\" file to uncomment or add the line for the \\\"X11UseLocalhost\\\" keyword and set its value to \\\"yes\\\" (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor):\\n\\nX11UseLocalhost yes\",\n \"fixref\": \"F-33200r568415_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33200r568415_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:365\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:49" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Restricting TFTP to a specific directory prevents remote users from copying, transferring, or overwriting system files.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230557", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230557r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:366", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33201r568418_fix", + "fixtext_fixref": "F-33201r568418_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230557r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230556r627750_rule", + "version": "RHEL-08-040341", + "time": "2021-12-17T10:30:49", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33200r568415_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:365", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "If the Trivial File Transfer Protocol (TFTP) server is required, the RHEL 8 TFTP daemon must be configured to operate in secure mode.", + "id": "V-230557", + "desc": "Restricting TFTP to a specific directory prevents remote users from copying, transferring, or overwriting system files.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:366", + "label": "check" + }, + { + "data": "Configure the TFTP daemon to operate in secure mode by adding the following line to \"/etc/xinetd.d/tftp\" (or modify the line to have the required value):\n\nserver_args = -s /var/lib/tftpboot", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230557\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230557\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230557r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230557r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-040350\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"If the Trivial File Transfer Protocol (TFTP) server is required, the RHEL 8 TFTP daemon must be configured to operate in secure mode.\",\n \"cdf:description\": \"<VulnDiscussion>Restricting TFTP to a specific directory prevents remote users from copying, transferring, or overwriting system files.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the TFTP daemon to operate in secure mode by adding the following line to \\\"/etc/xinetd.d/tftp\\\" (or modify the line to have the required value):\\n\\nserver_args = -s /var/lib/tftpboot\",\n \"fixref\": \"F-33201r568418_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33201r568418_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:366\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:30:49" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "high", + "description": "{\"VulnDiscussion\":\"The FTP service provides an unencrypted remote access that does not provide for the confidentiality and integrity of user passwords or the remote session. If a privileged user were to log on using this service, the privileged user password could be compromised. SSH or other encrypted file transfer methods must be used in place of this service.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230558", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230558r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:367", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33202r568421_fix", + "fixtext_fixref": "F-33202r568421_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230558r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230557r627750_rule", + "version": "RHEL-08-040350", + "time": "2021-12-17T10:30:49", + "weight": "10.0", + "severity": "medium", + "cdf:result": "pass", + "cdf:ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33201r568418_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:366", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "A File Transfer Protocol (FTP) server package must not be installed unless mission essential on RHEL 8.", + "id": "V-230558", + "desc": "The FTP service provides an unencrypted remote access that does not provide for the confidentiality and integrity of user passwords or the remote session. If a privileged user were to log on using this service, the privileged user password could be compromised. SSH or other encrypted file transfer methods must be used in place of this service.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:367", + "label": "check" + }, + { + "data": "Document the FTP server package with the ISSO as an operational requirement or remove it from the system with the following command:\n\n$ sudo yum remove vsftpd", + "label": "fix" + } + ], + "impact": 0.7, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230558\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230558\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230558r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230558r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"high\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-040360\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"A File Transfer Protocol (FTP) server package must not be installed unless mission essential on RHEL 8.\",\n \"cdf:description\": \"<VulnDiscussion>The FTP service provides an unencrypted remote access that does not provide for the confidentiality and integrity of user passwords or the remote session. If a privileged user were to log on using this service, the privileged user password could be compromised. SSH or other encrypted file transfer methods must be used in place of this service.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Document the FTP server package with the ISSO as an operational requirement or remove it from the system with the following command:\\n\\n$ sudo yum remove vsftpd\",\n \"fixref\": \"F-33202r568421_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33202r568421_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:367\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:30:49" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000381" + ], + "nist": [ + "CM-7 a" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\\n\\nThe gssproxy package is a proxy for GSS API credential handling and could expose secrets on some networks. It is not needed for normal function of the OS.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230559", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230559r646887_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:368", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33203r568424_fix", + "fixtext_fixref": "F-33203r568424_fix", + "ident": { + "text": "CCI-000381", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230559r646887_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230558r627750_rule", + "version": "RHEL-08-040360", + "time": "2021-12-17T10:30:49", + "weight": "10.0", + "severity": "high", + "cdf:result": "pass", + "cdf:ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33202r568421_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:367", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The gssproxy package must not be installed unless mission essential on RHEL 8.", + "id": "V-230559", + "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\n\nThe gssproxy package is a proxy for GSS API credential handling and could expose secrets on some networks. It is not needed for normal function of the OS.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:368", + "label": "check" + }, + { + "data": "Document the gssproxy package with the ISSO as an operational requirement or remove it from the system with the following command:\n\n$ sudo yum remove gssproxy", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230559\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230559\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230559r646887_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230559r646887_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-040370\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The gssproxy package must not be installed unless mission essential on RHEL 8.\",\n \"cdf:description\": \"<VulnDiscussion>It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\\n\\nThe gssproxy package is a proxy for GSS API credential handling and could expose secrets on some networks. It is not needed for normal function of the OS.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000381\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Document the gssproxy package with the ISSO as an operational requirement or remove it from the system with the following command:\\n\\n$ sudo yum remove gssproxy\",\n \"fixref\": \"F-33203r568424_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33203r568424_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:368\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:51" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\\n\\nThe iprutils package provides a suite of utilities to manage and configure SCSI devices supported by the ipr SCSI storage device driver.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230560", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230560r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:369", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33204r568427_fix", + "fixtext_fixref": "F-33204r568427_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230560r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230559r646887_rule", + "version": "RHEL-08-040370", + "time": "2021-12-17T10:30:51", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000381", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33203r568424_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:368", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The iprutils package must not be installed unless mission essential on RHEL 8.", + "id": "V-230560", + "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\n\nThe iprutils package provides a suite of utilities to manage and configure SCSI devices supported by the ipr SCSI storage device driver.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:369", + "label": "check" + }, + { + "data": "Document the iprutils package with the ISSO as an operational requirement or remove it from the system with the following command:\n\n$ sudo yum remove iprutils", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230560\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230560\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230560r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230560r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-040380\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The iprutils package must not be installed unless mission essential on RHEL 8.\",\n \"cdf:description\": \"<VulnDiscussion>It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\\n\\nThe iprutils package provides a suite of utilities to manage and configure SCSI devices supported by the ipr SCSI storage device driver.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Document the iprutils package with the ISSO as an operational requirement or remove it from the system with the following command:\\n\\n$ sudo yum remove iprutils\",\n \"fixref\": \"F-33204r568427_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33204r568427_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:369\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:53" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\\n\\nThe tuned package contains a daemon that tunes the system settings dynamically. It does so by monitoring the usage of several system components periodically. Based on that information, components will then be put into lower or higher power savings modes to adapt to the current usage. The tuned package is not needed for normal OS operations.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-230561", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-230561r627750_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:370", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-33205r568430_fix", + "fixtext_fixref": "F-33205r568430_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-230561r627750_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230560r627750_rule", + "version": "RHEL-08-040380", + "time": "2021-12-17T10:30:53", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33204r568427_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:369", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The tuned package must not be installed unless mission essential on RHEL 8.", + "id": "V-230561", + "desc": "It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\n\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\n\nThe tuned package contains a daemon that tunes the system settings dynamically. It does so by monitoring the usage of several system components periodically. Based on that information, components will then be put into lower or higher power savings modes to adapt to the current usage. The tuned package is not needed for normal OS operations.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:370", + "label": "check" + }, + { + "data": "Document the tuned package with the ISSO as an operational requirement or remove it from the system with the following command:\n\n$ sudo yum remove tuned", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-230561\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-230561\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-230561r627750_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-230561r627750_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-040390\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The tuned package must not be installed unless mission essential on RHEL 8.\",\n \"cdf:description\": \"<VulnDiscussion>It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.\\n\\nOperating systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions).\\n\\nThe tuned package contains a daemon that tunes the system settings dynamically. It does so by monitoring the usage of several system components periodically. Based on that information, components will then be put into lower or higher power savings modes to adapt to the current usage. The tuned package is not needed for normal OS operations.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Document the tuned package with the ISSO as an operational requirement or remove it from the system with the following command:\\n\\n$ sudo yum remove tuned\",\n \"fixref\": \"F-33205r568430_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-33205r568430_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:370\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:55" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000803" + ], + "nist": [ + "IA-7" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Unapproved mechanisms that are used for authentication to the cryptographic module are not verified and therefore cannot be relied upon to provide confidentiality or integrity, and DoD data may be compromised.\\n\\nRHEL 8 systems utilizing encryption are required to use FIPS-compliant mechanisms for authenticating to cryptographic modules.\\n\\nCurrently, Kerberos does not utilize FIPS 140-2 cryptography.\\n\\nFIPS 140-2 is the current standard for validating that mechanisms used to access cryptographic modules utilize authentication that meets DoD requirements. This allows for Security Levels 1, 2, 3, or 4 for use on a general-purpose computing system.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-237640", + "group_title": "SRG-OS-000120-GPOS-00061", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-237640r646890_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:413", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-40822r646889_fix", + "fixtext_fixref": "F-40822r646889_fix", + "ident": { + "text": "CCI-000803", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-237640r646890_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-230561r627750_rule", + "version": "RHEL-08-040390", + "time": "2021-12-17T10:30:55", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-33205r568430_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:370", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "The krb5-server package must not be installed on RHEL 8.", + "id": "V-237640", + "desc": "Unapproved mechanisms that are used for authentication to the cryptographic module are not verified and therefore cannot be relied upon to provide confidentiality or integrity, and DoD data may be compromised.\n\nRHEL 8 systems utilizing encryption are required to use FIPS-compliant mechanisms for authenticating to cryptographic modules.\n\nCurrently, Kerberos does not utilize FIPS 140-2 cryptography.\n\nFIPS 140-2 is the current standard for validating that mechanisms used to access cryptographic modules utilize authentication that meets DoD requirements. This allows for Security Levels 1, 2, 3, or 4 for use on a general-purpose computing system.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:413", + "label": "check" + }, + { + "data": "Document the krb5-server package with the ISSO as an operational requirement or remove it from the system with the following command:\n\n$ sudo yum remove krb5-server", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-237640\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-237640\",\n \"cdf:title\": \"SRG-OS-000120-GPOS-00061\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-237640r646890_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-237640r646890_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-010163\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"The krb5-server package must not be installed on RHEL 8.\",\n \"cdf:description\": \"<VulnDiscussion>Unapproved mechanisms that are used for authentication to the cryptographic module are not verified and therefore cannot be relied upon to provide confidentiality or integrity, and DoD data may be compromised.\\n\\nRHEL 8 systems utilizing encryption are required to use FIPS-compliant mechanisms for authenticating to cryptographic modules.\\n\\nCurrently, Kerberos does not utilize FIPS 140-2 cryptography.\\n\\nFIPS 140-2 is the current standard for validating that mechanisms used to access cryptographic modules utilize authentication that meets DoD requirements. This allows for Security Levels 1, 2, 3, or 4 for use on a general-purpose computing system.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000803\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Document the krb5-server package with the ISSO as an operational requirement or remove it from the system with the following command:\\n\\n$ sudo yum remove krb5-server\",\n \"fixref\": \"F-40822r646889_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-40822r646889_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:413\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:30:57" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-000366" + ], + "nist": [ + "CM-6 b" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"The sudo command allows a user to execute programs with elevated (administrator) privileges. It prompts the user for their password and confirms your request to execute a command by checking a file, called sudoers. If the \\\"sudoers\\\" file is not configured correctly, any user defined on the system can initiate privileged actions on the target system.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-237641", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-237641r646893_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:414", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-40823r646892_fix", + "fixtext_fixref": "F-40823r646892_fix", + "ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-237641r646893_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-237640r646890_rule", + "version": "RHEL-08-010163", + "time": "2021-12-17T10:30:57", + "weight": "10.0", + "severity": "medium", + "cdf:result": "pass", + "cdf:ident": { + "text": "CCI-000803", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-40822r646889_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:413", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must restrict privilege elevation to authorized personnel.", + "id": "V-237641", + "desc": "The sudo command allows a user to execute programs with elevated (administrator) privileges. It prompts the user for their password and confirms your request to execute a command by checking a file, called sudoers. If the \"sudoers\" file is not configured correctly, any user defined on the system can initiate privileged actions on the target system.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:414", + "label": "check" + }, + { + "data": "Remove the following entries from the sudoers file:\nALL ALL=(ALL) ALL\nALL ALL=(ALL:ALL) ALL", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-237641\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-237641\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-237641r646893_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-237641r646893_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-010382\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must restrict privilege elevation to authorized personnel.\",\n \"cdf:description\": \"<VulnDiscussion>The sudo command allows a user to execute programs with elevated (administrator) privileges. It prompts the user for their password and confirms your request to execute a command by checking a file, called sudoers. If the \\\"sudoers\\\" file is not configured correctly, any user defined on the system can initiate privileged actions on the target system.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-000366\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Remove the following entries from the sudoers file:\\nALL ALL=(ALL) ALL\\nALL ALL=(ALL:ALL) ALL\",\n \"fixref\": \"F-40823r646892_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-40823r646892_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:414\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "passed", + "code_desc": "", + "start_time": "2021-12-17T10:30:57" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-002227" + ], + "nist": [ + "AC-6 (5)" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"The sudoers security policy requires that users authenticate themselves before they can use sudo. When sudoers requires authentication, it validates the invoking user's credentials. If the rootpw, targetpw, or runaspw flags are defined and not disabled, by default the operating system will prompt the invoking user for the \\\"root\\\" user password. \\nFor more information on each of the listed configurations, reference the sudoers(5) manual page.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-237642", + "group_title": "SRG-OS-000480-GPOS-00227", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-237642r646896_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:415", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-40824r646895_fix", + "fixtext_fixref": "F-40824r646895_fix", + "ident": { + "text": "CCI-002227", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-237642r646896_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-237641r646893_rule", + "version": "RHEL-08-010382", + "time": "2021-12-17T10:30:57", + "weight": "10.0", + "severity": "medium", + "cdf:result": "pass", + "cdf:ident": { + "text": "CCI-000366", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-40823r646892_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:414", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must use the invoking user's password for privilege escalation when using \"sudo\".", + "id": "V-237642", + "desc": "The sudoers security policy requires that users authenticate themselves before they can use sudo. When sudoers requires authentication, it validates the invoking user's credentials. If the rootpw, targetpw, or runaspw flags are defined and not disabled, by default the operating system will prompt the invoking user for the \"root\" user password. \nFor more information on each of the listed configurations, reference the sudoers(5) manual page.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:415", + "label": "check" + }, + { + "data": "Define the following in the Defaults section of the /etc/sudoers file or a configuration file in the /etc/sudoers.d/ directory:\nDefaults !targetpw\nDefaults !rootpw\nDefaults !runaspw", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-237642\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-237642\",\n \"cdf:title\": \"SRG-OS-000480-GPOS-00227\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-237642r646896_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-237642r646896_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-010383\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must use the invoking user's password for privilege escalation when using \\\"sudo\\\".\",\n \"cdf:description\": \"<VulnDiscussion>The sudoers security policy requires that users authenticate themselves before they can use sudo. When sudoers requires authentication, it validates the invoking user's credentials. If the rootpw, targetpw, or runaspw flags are defined and not disabled, by default the operating system will prompt the invoking user for the \\\"root\\\" user password. \\nFor more information on each of the listed configurations, reference the sudoers(5) manual page.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-002227\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Define the following in the Defaults section of the /etc/sudoers file or a configuration file in the /etc/sudoers.d/ directory:\\nDefaults !targetpw\\nDefaults !rootpw\\nDefaults !runaspw\",\n \"fixref\": \"F-40824r646895_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-40824r646895_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:415\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:57" + } + ] + }, + { + "tags": { + "cci": [ + "CCI-002038" + ], + "nist": [ + "IA-11" + ], + "severity": "medium", + "description": "{\"VulnDiscussion\":\"Without re-authentication, users may access resources or perform tasks for which they do not have authorization. \\n\\nWhen operating systems provide the capability to escalate a functional capability, it is critical the organization requires the user to re-authenticate when using the \\\"sudo\\\" command.\\n\\nIf the value is set to an integer less than 0, the user's time stamp will not expire and the user will not have to re-authenticate for privileged actions until the user's session is terminated.\"}", + "group_id": "xccdf_mil.disa.stig_group_V-237643", + "group_title": "SRG-OS-000373-GPOS-00156", + "group_description": "{}", + "rule_id": "xccdf_mil.disa.stig_rule_SV-237643r646899_rule", + "check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:416", + "href": "U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" + } + }, + "fix_id": "F-40825r646898_fix", + "fixtext_fixref": "F-40825r646898_fix", + "ident": { + "text": "CCI-002038", + "system": "http://cyber.mil/cci" + }, + "reference": { + "dc:publisher": "DISA", + "dc:identifier": 2921, + "dc:type": "DPMS Target" + }, + "selected": "", + "version": "xccdf_mil.disa.stig_rule_SV-237643r646899_rule", + "weight": "10.0", + "profiles": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "I - Mission Critical Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "II - Mission Support Sensitive" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Classified" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Public" + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "description": { + "ProfileDescription": "" + }, + "title": "III - Administrative Sensitive" + } + ], + "rule_result": { + "idref": "xccdf_mil.disa.stig_rule_SV-237642r646896_rule", + "version": "RHEL-08-010383", + "time": "2021-12-17T10:30:57", + "weight": "10.0", + "severity": "medium", + "cdf:result": "fail", + "cdf:ident": { + "text": "CCI-002227", + "system": "http://cyber.mil/cci" + }, + "cdf:fix": { + "id": "F-40824r646895_fix" + }, + "cdf:check": { + "system": "http://oval.mitre.org/XMLSchema/oval-definitions-5", + "cdf:check-content-ref": { + "name": "oval:mil.disa.stig.rhel8:def:415", + "href": "#scap_mil.disa.stig_comp_U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml" } + } + } + }, + "refs": [], + "source_location": {}, + "title": "RHEL 8 must require re-authentication when using the \"sudo\" command.", + "id": "V-237643", + "desc": "Without re-authentication, users may access resources or perform tasks for which they do not have authorization. \n\nWhen operating systems provide the capability to escalate a functional capability, it is critical the organization requires the user to re-authenticate when using the \"sudo\" command.\n\nIf the value is set to an integer less than 0, the user's time stamp will not expire and the user will not have to re-authenticate for privileged actions until the user's session is terminated.", + "descriptions": [ + { + "data": "oval:mil.disa.stig.rhel8:def:416", + "label": "check" + }, + { + "data": "Configure the \"sudo\" command to require re-authentication.\nEdit the /etc/sudoers file:\n$ sudo visudo\n\nAdd or modify the following line:\nDefaults timestamp_timeout=[value]\nNote: The \"[value]\" must be a number that is greater than or equal to \"0\".", + "label": "fix" + } + ], + "impact": 0.5, + "code": "{\n \"id\": \"xccdf_mil.disa.stig_group_V-237643\",\n \"Id\": \"xccdf_mil.disa.stig_group_V-237643\",\n \"cdf:title\": \"SRG-OS-000373-GPOS-00156\",\n \"cdf:description\": \"<GroupDescription></GroupDescription>\",\n \"cdf:Rule\": {\n \"id\": \"xccdf_mil.disa.stig_rule_SV-237643r646899_rule\",\n \"Id\": \"xccdf_mil.disa.stig_rule_SV-237643r646899_rule\",\n \"weight\": \"10.0\",\n \"severity\": \"medium\",\n \"cdf:version\": {\n \"text\": \"RHEL-08-010384\",\n \"update\": \"http://iase.disa.mil/stigs\"\n },\n \"cdf:title\": \"RHEL 8 must require re-authentication when using the \\\"sudo\\\" command.\",\n \"cdf:description\": \"<VulnDiscussion>Without re-authentication, users may access resources or perform tasks for which they do not have authorization. \\n\\nWhen operating systems provide the capability to escalate a functional capability, it is critical the organization requires the user to re-authenticate when using the \\\"sudo\\\" command.\\n\\nIf the value is set to an integer less than 0, the user's time stamp will not expire and the user will not have to re-authenticate for privileged actions until the user's session is terminated.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls>\",\n \"cdf:reference\": {\n \"dc:publisher\": \"DISA\",\n \"dc:identifier\": 2921,\n \"dc:type\": \"DPMS Target\"\n },\n \"cdf:ident\": {\n \"text\": \"CCI-002038\",\n \"system\": \"http://cyber.mil/cci\"\n },\n \"cdf:fixtext\": {\n \"text\": \"Configure the \\\"sudo\\\" command to require re-authentication.\\nEdit the /etc/sudoers file:\\n$ sudo visudo\\n\\nAdd or modify the following line:\\nDefaults timestamp_timeout=[value]\\nNote: The \\\"[value]\\\" must be a number that is greater than or equal to \\\"0\\\".\",\n \"fixref\": \"F-40825r646898_fix\"\n },\n \"cdf:fix\": {\n \"id\": \"F-40825r646898_fix\"\n },\n \"cdf:check\": {\n \"system\": \"http://oval.mitre.org/XMLSchema/oval-definitions-5\",\n \"cdf:check-content-ref\": {\n \"name\": \"oval:mil.disa.stig.rhel8:def:416\",\n \"href\": \"U_RHEL_8_V1R2_STIG_SCAP_1-2_Benchmark-oval.xml\"\n }\n }\n }\n}", + "results": [ + { + "status": "failed", + "code_desc": "", + "start_time": "2021-12-17T10:30:57" + } + ] + } + ], + "sha256": "18aa16a2719193772da21f9434b17a18e9ef5140d816c1261c2a4f04f51f2c92" + } + ], + "passthrough": { + "auxiliary_data": [ + { + "name": "XCCDF", + "data": { + "cdf:Benchmark": { + "xsi:schemaLocation": "http://checklists.nist.gov/xccdf/1.2 http://scap.nist.gov/schema/xccdf/1.2/xccdf_1.2.xsd http://cpe.mitre.org/dictionary/2.0 http://scap.nist.gov/schema/cpe/2.3/cpe-dictionary_2.3.xsd http://cpe.mitre.org/language/2.0 http://scap.nist.gov/schema/cpe/2.3/cpe-language_2.3.xsd", + "resolved": "1", + "xmlns:cdf": "http://checklists.nist.gov/xccdf/1.2", + "xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", + "xmlns:dc": "http://purl.org/dc/elements/1.1/", + "cdf:status": { + "text": "accepted", + "date": "2021-06-14" + }, + "cdf:rear-matter": "", + "cdf:plain-text": [ + { + "text": "Release: 1.2 Benchmark Date: 23 Jul 2021", + "id": "release-info" + }, + { + "text": "3.2.2.36079", + "id": "generator" + }, + { + "text": "1.10.0", + "id": "conventionsVersion" + } ], - "sha256": "7c69909208d5e637b333c56df48f689c504799d87e3f7b76f516493df64990e7" + "cdf:metadata": { + "dc:creator": "DISA", + "dc:publisher": "DISA", + "dc:contributor": "DISA", + "dc:source": "STIG.DOD.MIL" + }, + "cdf:Profile": [ + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Classified", + "cdf:title": "I - Mission Critical Classified", + "cdf:description": "<ProfileDescription></ProfileDescription>", + "cdf:select": [ + { + "idref": "xccdf_mil.disa.stig_group_V-230221", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230223", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230231", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230232", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230233", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230234", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230235", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230236", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230237", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230238", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230239", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230241", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230244", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230245", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230246", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230247", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230248", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230249", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230250", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230253", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230255", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230257", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230258", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230259", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230264", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230265", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230266", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230267", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230268", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230269", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230270", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230271", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230272", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230273", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230281", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230282", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230283", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230284", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230286", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230287", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230288", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230289", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230290", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230291", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230292", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230293", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230294", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230295", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230296", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230297", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230298", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230300", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230301", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230306", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230307", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230308", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230311", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230313", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230314", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230315", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230324", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230330", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230332", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230333", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230334", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230335", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230336", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230337", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230340", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230341", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230342", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230343", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230344", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230345", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230346", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230348", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230349", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230350", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230356", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230357", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230358", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230359", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230360", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230361", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230362", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230363", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230364", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230365", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230366", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230367", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230368", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230369", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230370", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230373", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230375", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230377", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230378", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230380", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230382", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230383", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230386", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230388", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230390", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230391", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230392", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230393", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230394", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230395", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230396", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230397", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230398", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230399", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230400", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230401", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230402", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230403", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230404", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230405", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230406", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230407", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230408", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230409", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230410", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230411", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230412", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230413", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230414", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230415", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230416", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230417", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230418", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230419", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230420", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230421", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230422", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230423", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230424", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230425", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230426", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230427", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230428", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230429", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230430", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230431", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230432", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230433", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230434", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230435", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230436", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230437", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230438", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230439", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230440", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230441", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230442", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230443", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230444", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230445", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230446", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230447", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230448", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230449", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230450", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230451", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230452", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230453", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230454", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230455", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230456", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230457", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230458", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230459", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230460", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230461", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230462", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230463", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230464", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230465", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230467", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230471", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230472", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230473", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230474", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230477", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230478", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230480", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230483", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230485", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230486", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230487", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230488", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230489", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230492", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230494", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230495", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230496", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230497", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230498", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230499", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230503", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230507", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230508", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230509", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230510", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230511", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230512", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230513", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230514", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230515", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230516", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230517", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230518", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230519", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230520", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230521", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230522", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230526", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230527", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230531", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230533", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230534", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230535", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230536", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230537", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230538", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230539", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230540", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230541", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230542", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230543", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230544", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230545", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230546", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230547", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230548", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230549", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230550", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230555", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230556", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230557", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230558", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230559", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230560", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230561", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237640", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237641", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237642", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237643", + "selected": "true" + } + ] + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Public", + "cdf:title": "I - Mission Critical Public", + "cdf:description": "<ProfileDescription></ProfileDescription>", + "cdf:select": [ + { + "idref": "xccdf_mil.disa.stig_group_V-230221", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230223", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230231", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230232", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230233", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230234", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230235", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230236", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230237", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230238", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230239", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230241", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230244", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230245", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230246", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230247", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230248", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230249", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230250", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230253", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230255", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230257", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230258", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230259", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230264", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230265", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230266", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230267", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230268", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230269", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230270", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230271", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230272", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230273", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230281", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230282", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230283", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230284", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230286", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230287", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230288", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230289", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230290", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230291", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230292", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230293", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230294", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230295", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230296", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230297", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230298", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230300", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230301", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230306", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230307", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230308", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230311", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230313", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230314", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230315", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230324", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230330", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230332", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230333", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230334", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230335", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230336", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230337", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230340", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230341", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230342", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230343", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230344", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230345", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230346", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230348", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230349", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230350", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230356", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230357", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230358", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230359", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230360", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230361", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230362", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230363", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230364", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230365", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230366", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230367", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230368", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230369", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230370", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230373", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230375", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230377", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230378", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230380", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230382", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230383", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230386", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230388", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230390", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230391", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230392", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230393", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230394", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230395", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230396", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230397", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230398", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230399", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230400", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230401", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230402", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230403", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230404", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230405", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230406", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230407", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230408", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230409", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230410", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230411", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230412", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230413", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230414", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230415", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230416", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230417", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230418", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230419", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230420", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230421", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230422", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230423", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230424", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230425", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230426", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230427", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230428", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230429", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230430", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230431", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230432", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230433", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230434", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230435", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230436", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230437", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230438", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230439", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230440", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230441", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230442", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230443", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230444", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230445", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230446", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230447", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230448", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230449", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230450", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230451", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230452", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230453", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230454", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230455", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230456", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230457", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230458", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230459", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230460", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230461", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230462", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230463", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230464", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230465", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230467", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230471", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230472", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230473", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230474", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230477", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230478", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230480", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230483", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230485", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230486", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230487", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230488", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230489", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230492", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230494", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230495", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230496", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230497", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230498", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230499", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230503", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230507", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230508", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230509", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230510", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230511", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230512", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230513", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230514", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230515", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230516", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230517", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230518", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230519", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230520", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230521", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230522", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230526", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230527", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230531", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230533", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230534", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230535", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230536", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230537", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230538", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230539", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230540", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230541", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230542", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230543", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230544", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230545", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230546", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230547", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230548", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230549", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230550", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230555", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230556", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230557", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230558", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230559", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230560", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230561", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237640", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237641", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237642", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237643", + "selected": "true" + } + ] + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-1_Sensitive", + "cdf:title": "I - Mission Critical Sensitive", + "cdf:description": "<ProfileDescription></ProfileDescription>", + "cdf:select": [ + { + "idref": "xccdf_mil.disa.stig_group_V-230221", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230223", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230231", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230232", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230233", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230234", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230235", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230236", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230237", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230238", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230239", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230241", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230244", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230245", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230246", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230247", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230248", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230249", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230250", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230253", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230255", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230257", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230258", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230259", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230264", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230265", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230266", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230267", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230268", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230269", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230270", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230271", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230272", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230273", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230281", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230282", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230283", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230284", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230286", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230287", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230288", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230289", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230290", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230291", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230292", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230293", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230294", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230295", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230296", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230297", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230298", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230300", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230301", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230306", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230307", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230308", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230311", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230313", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230314", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230315", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230324", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230330", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230332", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230333", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230334", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230335", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230336", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230337", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230340", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230341", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230342", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230343", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230344", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230345", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230346", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230348", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230349", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230350", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230356", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230357", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230358", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230359", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230360", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230361", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230362", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230363", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230364", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230365", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230366", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230367", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230368", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230369", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230370", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230373", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230375", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230377", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230378", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230380", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230382", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230383", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230386", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230388", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230390", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230391", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230392", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230393", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230394", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230395", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230396", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230397", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230398", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230399", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230400", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230401", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230402", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230403", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230404", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230405", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230406", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230407", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230408", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230409", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230410", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230411", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230412", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230413", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230414", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230415", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230416", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230417", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230418", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230419", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230420", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230421", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230422", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230423", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230424", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230425", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230426", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230427", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230428", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230429", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230430", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230431", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230432", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230433", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230434", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230435", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230436", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230437", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230438", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230439", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230440", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230441", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230442", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230443", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230444", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230445", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230446", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230447", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230448", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230449", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230450", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230451", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230452", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230453", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230454", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230455", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230456", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230457", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230458", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230459", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230460", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230461", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230462", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230463", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230464", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230465", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230467", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230471", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230472", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230473", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230474", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230477", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230478", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230480", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230483", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230485", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230486", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230487", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230488", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230489", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230492", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230494", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230495", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230496", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230497", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230498", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230499", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230503", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230507", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230508", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230509", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230510", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230511", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230512", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230513", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230514", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230515", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230516", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230517", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230518", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230519", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230520", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230521", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230522", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230526", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230527", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230531", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230533", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230534", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230535", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230536", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230537", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230538", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230539", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230540", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230541", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230542", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230543", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230544", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230545", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230546", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230547", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230548", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230549", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230550", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230555", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230556", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230557", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230558", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230559", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230560", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230561", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237640", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237641", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237642", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237643", + "selected": "true" + } + ] + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Classified", + "cdf:title": "II - Mission Support Classified", + "cdf:description": "<ProfileDescription></ProfileDescription>", + "cdf:select": [ + { + "idref": "xccdf_mil.disa.stig_group_V-230221", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230223", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230231", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230232", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230233", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230234", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230235", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230236", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230237", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230238", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230239", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230241", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230244", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230245", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230246", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230247", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230248", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230249", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230250", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230253", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230255", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230257", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230258", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230259", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230264", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230265", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230266", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230267", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230268", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230269", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230270", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230271", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230272", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230273", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230281", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230282", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230283", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230284", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230286", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230287", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230288", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230289", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230290", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230291", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230292", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230293", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230294", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230295", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230296", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230297", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230298", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230300", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230301", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230306", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230307", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230308", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230311", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230313", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230314", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230315", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230324", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230330", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230332", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230333", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230334", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230335", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230336", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230337", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230340", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230341", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230342", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230343", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230344", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230345", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230346", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230348", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230349", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230350", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230356", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230357", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230358", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230359", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230360", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230361", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230362", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230363", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230364", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230365", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230366", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230367", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230368", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230369", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230370", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230373", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230375", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230377", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230378", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230380", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230382", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230383", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230386", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230388", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230390", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230391", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230392", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230393", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230394", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230395", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230396", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230397", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230398", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230399", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230400", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230401", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230402", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230403", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230404", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230405", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230406", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230407", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230408", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230409", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230410", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230411", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230412", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230413", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230414", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230415", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230416", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230417", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230418", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230419", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230420", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230421", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230422", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230423", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230424", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230425", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230426", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230427", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230428", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230429", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230430", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230431", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230432", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230433", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230434", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230435", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230436", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230437", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230438", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230439", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230440", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230441", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230442", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230443", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230444", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230445", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230446", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230447", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230448", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230449", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230450", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230451", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230452", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230453", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230454", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230455", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230456", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230457", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230458", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230459", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230460", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230461", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230462", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230463", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230464", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230465", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230467", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230471", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230472", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230473", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230474", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230477", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230478", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230480", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230483", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230485", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230486", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230487", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230488", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230489", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230492", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230494", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230495", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230496", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230497", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230498", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230499", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230503", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230507", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230508", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230509", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230510", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230511", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230512", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230513", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230514", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230515", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230516", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230517", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230518", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230519", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230520", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230521", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230522", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230526", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230527", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230531", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230533", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230534", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230535", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230536", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230537", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230538", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230539", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230540", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230541", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230542", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230543", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230544", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230545", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230546", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230547", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230548", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230549", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230550", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230555", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230556", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230557", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230558", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230559", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230560", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230561", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237640", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237641", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237642", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237643", + "selected": "true" + } + ] + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Public", + "cdf:title": "II - Mission Support Public", + "cdf:description": "<ProfileDescription></ProfileDescription>", + "cdf:select": [ + { + "idref": "xccdf_mil.disa.stig_group_V-230221", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230223", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230231", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230232", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230233", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230234", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230235", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230236", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230237", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230238", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230239", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230241", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230244", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230245", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230246", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230247", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230248", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230249", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230250", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230253", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230255", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230257", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230258", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230259", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230264", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230265", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230266", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230267", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230268", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230269", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230270", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230271", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230272", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230273", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230281", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230282", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230283", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230284", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230286", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230287", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230288", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230289", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230290", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230291", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230292", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230293", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230294", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230295", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230296", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230297", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230298", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230300", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230301", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230306", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230307", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230308", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230311", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230313", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230314", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230315", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230324", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230330", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230332", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230333", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230334", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230335", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230336", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230337", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230340", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230341", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230342", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230343", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230344", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230345", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230346", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230348", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230349", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230350", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230356", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230357", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230358", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230359", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230360", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230361", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230362", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230363", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230364", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230365", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230366", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230367", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230368", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230369", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230370", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230373", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230375", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230377", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230378", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230380", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230382", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230383", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230386", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230388", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230390", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230391", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230392", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230393", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230394", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230395", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230396", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230397", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230398", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230399", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230400", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230401", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230402", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230403", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230404", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230405", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230406", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230407", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230408", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230409", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230410", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230411", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230412", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230413", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230414", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230415", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230416", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230417", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230418", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230419", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230420", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230421", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230422", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230423", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230424", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230425", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230426", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230427", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230428", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230429", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230430", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230431", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230432", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230433", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230434", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230435", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230436", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230437", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230438", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230439", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230440", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230441", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230442", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230443", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230444", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230445", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230446", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230447", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230448", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230449", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230450", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230451", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230452", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230453", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230454", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230455", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230456", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230457", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230458", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230459", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230460", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230461", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230462", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230463", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230464", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230465", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230467", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230471", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230472", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230473", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230474", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230477", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230478", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230480", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230483", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230485", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230486", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230487", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230488", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230489", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230492", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230494", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230495", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230496", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230497", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230498", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230499", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230503", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230507", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230508", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230509", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230510", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230511", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230512", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230513", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230514", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230515", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230516", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230517", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230518", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230519", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230520", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230521", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230522", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230526", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230527", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230531", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230533", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230534", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230535", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230536", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230537", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230538", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230539", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230540", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230541", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230542", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230543", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230544", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230545", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230546", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230547", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230548", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230549", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230550", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230555", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230556", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230557", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230558", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230559", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230560", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230561", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237640", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237641", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237642", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237643", + "selected": "true" + } + ] + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-2_Sensitive", + "cdf:title": "II - Mission Support Sensitive", + "cdf:description": "<ProfileDescription></ProfileDescription>", + "cdf:select": [ + { + "idref": "xccdf_mil.disa.stig_group_V-230221", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230223", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230231", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230232", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230233", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230234", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230235", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230236", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230237", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230238", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230239", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230241", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230244", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230245", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230246", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230247", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230248", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230249", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230250", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230253", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230255", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230257", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230258", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230259", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230264", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230265", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230266", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230267", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230268", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230269", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230270", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230271", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230272", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230273", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230281", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230282", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230283", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230284", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230286", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230287", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230288", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230289", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230290", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230291", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230292", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230293", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230294", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230295", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230296", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230297", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230298", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230300", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230301", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230306", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230307", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230308", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230311", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230313", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230314", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230315", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230324", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230330", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230332", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230333", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230334", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230335", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230336", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230337", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230340", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230341", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230342", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230343", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230344", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230345", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230346", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230348", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230349", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230350", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230356", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230357", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230358", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230359", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230360", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230361", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230362", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230363", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230364", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230365", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230366", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230367", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230368", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230369", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230370", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230373", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230375", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230377", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230378", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230380", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230382", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230383", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230386", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230388", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230390", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230391", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230392", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230393", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230394", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230395", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230396", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230397", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230398", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230399", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230400", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230401", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230402", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230403", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230404", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230405", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230406", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230407", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230408", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230409", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230410", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230411", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230412", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230413", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230414", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230415", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230416", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230417", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230418", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230419", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230420", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230421", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230422", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230423", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230424", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230425", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230426", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230427", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230428", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230429", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230430", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230431", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230432", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230433", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230434", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230435", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230436", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230437", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230438", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230439", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230440", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230441", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230442", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230443", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230444", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230445", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230446", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230447", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230448", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230449", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230450", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230451", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230452", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230453", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230454", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230455", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230456", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230457", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230458", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230459", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230460", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230461", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230462", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230463", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230464", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230465", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230467", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230471", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230472", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230473", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230474", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230477", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230478", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230480", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230483", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230485", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230486", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230487", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230488", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230489", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230492", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230494", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230495", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230496", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230497", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230498", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230499", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230503", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230507", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230508", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230509", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230510", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230511", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230512", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230513", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230514", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230515", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230516", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230517", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230518", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230519", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230520", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230521", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230522", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230526", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230527", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230531", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230533", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230534", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230535", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230536", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230537", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230538", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230539", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230540", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230541", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230542", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230543", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230544", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230545", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230546", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230547", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230548", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230549", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230550", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230555", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230556", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230557", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230558", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230559", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230560", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230561", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237640", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237641", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237642", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237643", + "selected": "true" + } + ] + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Classified", + "cdf:title": "III - Administrative Classified", + "cdf:description": "<ProfileDescription></ProfileDescription>", + "cdf:select": [ + { + "idref": "xccdf_mil.disa.stig_group_V-230221", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230223", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230231", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230232", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230233", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230234", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230235", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230236", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230237", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230238", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230239", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230241", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230244", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230245", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230246", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230247", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230248", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230249", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230250", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230253", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230255", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230257", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230258", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230259", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230264", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230265", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230266", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230267", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230268", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230269", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230270", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230271", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230272", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230273", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230281", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230282", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230283", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230284", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230286", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230287", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230288", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230289", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230290", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230291", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230292", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230293", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230294", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230295", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230296", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230297", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230298", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230300", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230301", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230306", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230307", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230308", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230311", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230313", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230314", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230315", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230324", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230330", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230332", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230333", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230334", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230335", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230336", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230337", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230340", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230341", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230342", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230343", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230344", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230345", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230346", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230348", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230349", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230350", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230356", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230357", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230358", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230359", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230360", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230361", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230362", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230363", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230364", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230365", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230366", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230367", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230368", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230369", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230370", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230373", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230375", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230377", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230378", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230380", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230382", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230383", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230386", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230388", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230390", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230391", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230392", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230393", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230394", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230395", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230396", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230397", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230398", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230399", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230400", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230401", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230402", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230403", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230404", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230405", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230406", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230407", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230408", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230409", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230410", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230411", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230412", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230413", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230414", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230415", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230416", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230417", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230418", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230419", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230420", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230421", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230422", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230423", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230424", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230425", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230426", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230427", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230428", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230429", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230430", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230431", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230432", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230433", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230434", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230435", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230436", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230437", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230438", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230439", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230440", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230441", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230442", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230443", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230444", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230445", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230446", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230447", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230448", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230449", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230450", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230451", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230452", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230453", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230454", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230455", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230456", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230457", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230458", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230459", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230460", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230461", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230462", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230463", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230464", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230465", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230467", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230471", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230472", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230473", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230474", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230477", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230478", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230480", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230483", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230485", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230486", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230487", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230488", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230489", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230492", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230494", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230495", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230496", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230497", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230498", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230499", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230503", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230507", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230508", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230509", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230510", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230511", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230512", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230513", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230514", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230515", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230516", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230517", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230518", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230519", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230520", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230521", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230522", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230526", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230527", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230531", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230533", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230534", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230535", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230536", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230537", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230538", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230539", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230540", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230541", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230542", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230543", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230544", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230545", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230546", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230547", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230548", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230549", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230550", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230555", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230556", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230557", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230558", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230559", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230560", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230561", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237640", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237641", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237642", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237643", + "selected": "true" + } + ] + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Public", + "cdf:title": "III - Administrative Public", + "cdf:description": "<ProfileDescription></ProfileDescription>", + "cdf:select": [ + { + "idref": "xccdf_mil.disa.stig_group_V-230221", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230223", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230231", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230232", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230233", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230234", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230235", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230236", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230237", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230238", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230239", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230241", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230244", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230245", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230246", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230247", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230248", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230249", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230250", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230253", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230255", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230257", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230258", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230259", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230264", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230265", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230266", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230267", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230268", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230269", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230270", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230271", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230272", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230273", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230281", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230282", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230283", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230284", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230286", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230287", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230288", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230289", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230290", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230291", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230292", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230293", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230294", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230295", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230296", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230297", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230298", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230300", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230301", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230306", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230307", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230308", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230311", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230313", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230314", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230315", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230324", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230330", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230332", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230333", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230334", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230335", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230336", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230337", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230340", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230341", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230342", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230343", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230344", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230345", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230346", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230348", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230349", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230350", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230356", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230357", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230358", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230359", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230360", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230361", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230362", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230363", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230364", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230365", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230366", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230367", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230368", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230369", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230370", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230373", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230375", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230377", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230378", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230380", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230382", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230383", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230386", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230388", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230390", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230391", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230392", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230393", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230394", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230395", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230396", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230397", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230398", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230399", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230400", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230401", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230402", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230403", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230404", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230405", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230406", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230407", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230408", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230409", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230410", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230411", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230412", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230413", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230414", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230415", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230416", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230417", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230418", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230419", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230420", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230421", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230422", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230423", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230424", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230425", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230426", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230427", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230428", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230429", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230430", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230431", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230432", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230433", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230434", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230435", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230436", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230437", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230438", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230439", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230440", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230441", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230442", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230443", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230444", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230445", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230446", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230447", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230448", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230449", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230450", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230451", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230452", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230453", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230454", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230455", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230456", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230457", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230458", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230459", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230460", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230461", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230462", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230463", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230464", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230465", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230467", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230471", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230472", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230473", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230474", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230477", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230478", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230480", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230483", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230485", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230486", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230487", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230488", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230489", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230492", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230494", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230495", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230496", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230497", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230498", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230499", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230503", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230507", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230508", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230509", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230510", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230511", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230512", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230513", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230514", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230515", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230516", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230517", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230518", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230519", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230520", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230521", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230522", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230526", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230527", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230531", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230533", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230534", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230535", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230536", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230537", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230538", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230539", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230540", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230541", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230542", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230543", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230544", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230545", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230546", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230547", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230548", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230549", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230550", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230555", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230556", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230557", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230558", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230559", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230560", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230561", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237640", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237641", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237642", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237643", + "selected": "true" + } + ] + }, + { + "id": "xccdf_mil.disa.stig_profile_MAC-3_Sensitive", + "cdf:title": "III - Administrative Sensitive", + "cdf:description": "<ProfileDescription></ProfileDescription>", + "cdf:select": [ + { + "idref": "xccdf_mil.disa.stig_group_V-230221", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230223", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230231", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230232", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230233", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230234", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230235", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230236", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230237", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230238", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230239", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230241", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230244", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230245", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230246", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230247", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230248", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230249", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230250", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230253", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230255", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230257", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230258", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230259", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230264", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230265", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230266", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230267", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230268", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230269", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230270", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230271", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230272", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230273", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230281", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230282", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230283", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230284", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230286", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230287", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230288", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230289", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230290", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230291", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230292", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230293", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230294", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230295", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230296", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230297", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230298", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230300", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230301", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230306", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230307", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230308", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230311", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230313", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230314", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230315", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230324", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230330", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230332", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230333", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230334", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230335", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230336", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230337", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230340", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230341", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230342", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230343", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230344", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230345", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230346", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230348", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230349", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230350", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230356", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230357", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230358", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230359", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230360", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230361", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230362", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230363", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230364", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230365", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230366", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230367", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230368", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230369", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230370", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230373", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230375", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230377", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230378", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230380", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230382", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230383", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230386", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230388", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230390", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230391", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230392", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230393", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230394", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230395", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230396", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230397", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230398", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230399", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230400", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230401", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230402", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230403", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230404", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230405", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230406", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230407", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230408", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230409", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230410", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230411", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230412", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230413", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230414", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230415", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230416", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230417", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230418", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230419", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230420", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230421", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230422", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230423", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230424", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230425", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230426", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230427", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230428", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230429", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230430", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230431", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230432", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230433", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230434", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230435", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230436", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230437", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230438", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230439", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230440", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230441", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230442", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230443", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230444", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230445", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230446", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230447", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230448", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230449", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230450", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230451", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230452", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230453", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230454", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230455", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230456", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230457", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230458", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230459", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230460", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230461", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230462", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230463", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230464", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230465", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230467", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230471", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230472", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230473", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230474", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230477", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230478", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230480", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230483", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230485", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230486", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230487", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230488", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230489", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230492", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230494", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230495", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230496", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230497", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230498", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230499", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230503", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230507", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230508", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230509", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230510", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230511", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230512", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230513", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230514", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230515", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230516", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230517", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230518", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230519", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230520", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230521", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230522", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230526", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230527", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230531", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230533", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230534", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230535", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230536", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230537", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230538", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230539", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230540", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230541", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230542", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230543", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230544", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230545", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230546", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230547", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230548", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230549", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230550", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230555", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230556", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230557", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230558", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230559", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230560", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-230561", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237640", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237641", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237642", + "selected": "true" + }, + { + "idref": "xccdf_mil.disa.stig_group_V-237643", + "selected": "true" + } + ] + }, + { + "id": "xccdf_mil.disa.stig_profile_CAT_I_Only", + "cdf:title": "CAT I Only", + "cdf:description": "This profile only includes rules that are Severity Category I.", + "cdf:select": [ + { + "idref": "xccdf_mil.disa.stig_rule_SV-230231r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230232r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230233r743919_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230236r743928_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230237r743931_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230238r646862_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230239r646864_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230241r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230244r743934_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230245r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230246r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230247r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230248r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230249r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230250r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230253r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230255r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230257r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230258r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230259r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230266r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230267r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230268r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230269r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230270r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230271r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230272r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230273r743943_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230281r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230282r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230286r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230287r743951_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230288r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230289r743954_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230290r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230291r743957_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230292r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230293r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230294r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230295r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230296r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230297r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230298r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230300r743959_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230301r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230306r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230307r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230308r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230311r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230313r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230314r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230315r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230324r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230330r646870_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230332r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230333r743966_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230334r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230335r743969_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230336r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230337r743972_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230340r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230341r743978_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230342r646872_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230343r743981_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230344r646874_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230345r743984_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230346r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230348r743987_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230349r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230350r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230356r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230357r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230358r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230359r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230360r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230361r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230362r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230363r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230364r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230365r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230366r646878_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230367r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230368r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230369r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230370r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230373r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230375r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230377r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230378r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230382r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230383r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230386r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230388r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230390r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230391r743998_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230392r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230393r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230394r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230395r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230396r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230397r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230398r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230399r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230400r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230401r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230402r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230403r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230404r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230405r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230406r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230407r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230408r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230409r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230410r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230411r744000_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230412r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230413r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230414r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230415r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230416r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230417r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230418r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230419r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230420r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230421r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230422r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230423r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230424r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230425r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230426r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230427r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230428r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230429r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230430r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230431r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230432r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230433r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230434r744002_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230435r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230436r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230437r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230438r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230439r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230440r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230441r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230442r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230443r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230444r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230445r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230446r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230447r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230448r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230449r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230450r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230451r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230452r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230453r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230454r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230455r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230456r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230457r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230458r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230459r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230460r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230461r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230462r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230463r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230464r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230465r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230467r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230471r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230472r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230473r744008_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230474r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230477r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230478r744011_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230480r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230483r744014_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230485r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230486r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230488r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230489r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230494r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230495r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230496r744017_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230497r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230498r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230499r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230503r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230507r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230508r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230509r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230510r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230511r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230512r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230513r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230514r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230515r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230516r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230517r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230518r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230519r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230520r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230521r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230522r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230526r744032_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230527r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230535r744035_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230536r744037_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230537r744039_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230538r744042_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230539r744045_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230540r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230541r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230542r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230543r744047_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230544r744050_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230545r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230546r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230547r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230548r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230549r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230550r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230555r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230556r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230557r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230559r646887_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230560r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-230561r627750_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-237640r646890_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-237641r646893_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-237642r646896_rule", + "selected": "false" + }, + { + "idref": "xccdf_mil.disa.stig_rule_SV-237643r646899_rule", + "selected": "false" + } + ] + } + ] + } } + } ] + } } \ No newline at end of file diff --git a/test/sample_data/zap/zap-webappsecurity-hdf.json b/test/sample_data/zap/zap-webappsecurity-hdf.json index ab1d454c3..be38d283f 100644 --- a/test/sample_data/zap/zap-webappsecurity-hdf.json +++ b/test/sample_data/zap/zap-webappsecurity-hdf.json @@ -1,9 +1,9 @@ { "platform": { "name": "Heimdall Tools", - "release": "2.6.28" + "release": "2.6.29" }, - "version": "2.6.28", + "version": "2.6.29", "statistics": {}, "profiles": [ { @@ -18,6 +18,10 @@ "controls": [ { "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], "nist": [ "SA-11", "RA-5" @@ -146,6 +150,10 @@ }, { "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], "nist": [ "SA-11", "RA-5" @@ -274,6 +282,9 @@ }, { "tags": { + "cci": [ + "CCI-002418" + ], "nist": [ "SC-8" ], @@ -401,6 +412,9 @@ }, { "tags": { + "cci": [ + "CCI-002418" + ], "nist": [ "SC-8" ], @@ -483,6 +497,9 @@ }, { "tags": { + "cci": [ + "CCI-002418" + ], "nist": [ "SC-8" ], @@ -605,6 +622,10 @@ }, { "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], "nist": [ "SA-11", "RA-5" @@ -733,6 +754,9 @@ }, { "tags": { + "cci": [ + "CCI-001310" + ], "nist": [ "SI-10" ], @@ -860,6 +884,10 @@ }, { "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], "nist": [ "SA-11", "RA-5" @@ -988,6 +1016,9 @@ }, { "tags": { + "cci": [ + "CCI-002418" + ], "nist": [ "SC-8" ], @@ -1070,6 +1101,9 @@ }, { "tags": { + "cci": [ + "CCI-001310" + ], "nist": [ "SI-10" ], @@ -1107,6 +1141,9 @@ }, { "tags": { + "cci": [ + "CCI-001310" + ], "nist": [ "SI-10" ], @@ -1139,6 +1176,10 @@ }, { "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], "nist": [ "SA-11", "RA-5" @@ -1172,6 +1213,9 @@ }, { "tags": { + "cci": [ + "CCI-001310" + ], "nist": [ "SI-10" ], @@ -1203,7 +1247,7 @@ ] } ], - "sha256": "9df0e67ba47f2467405a5038b0d58600436169c7490bae5c0e39fde80f2d03d9" + "sha256": "14963a7949541e18fab2c27097afd2374e37b35e54c71fd71a82e74a583bc4ab" } ], "passthrough": { diff --git a/test/sample_data/zap/zap-webgoat-hdf.json b/test/sample_data/zap/zap-webgoat-hdf.json index e26ebfa5f..14fa6cb9f 100644 --- a/test/sample_data/zap/zap-webgoat-hdf.json +++ b/test/sample_data/zap/zap-webgoat-hdf.json @@ -1,9 +1,9 @@ { "platform": { "name": "Heimdall Tools", - "release": "2.6.28" + "release": "2.6.29" }, - "version": "2.6.28", + "version": "2.6.29", "statistics": {}, "profiles": [ { @@ -18,6 +18,9 @@ "controls": [ { "tags": { + "cci": [ + "CCI-002418" + ], "nist": [ "SC-8" ], @@ -145,6 +148,10 @@ }, { "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], "nist": [ "SA-11", "RA-5" @@ -213,6 +220,10 @@ }, { "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], "nist": [ "SA-11", "RA-5" @@ -341,6 +352,9 @@ }, { "tags": { + "cci": [ + "CCI-002418" + ], "nist": [ "SC-8" ], @@ -468,6 +482,9 @@ }, { "tags": { + "cci": [ + "CCI-002418" + ], "nist": [ "SC-8" ], @@ -595,6 +612,9 @@ }, { "tags": { + "cci": [ + "CCI-002418" + ], "nist": [ "SC-8" ], @@ -722,6 +742,9 @@ }, { "tags": { + "cci": [ + "CCI-000213" + ], "nist": [ "AC-3" ], @@ -849,6 +872,9 @@ }, { "tags": { + "cci": [ + "CCI-002418" + ], "nist": [ "SC-8" ], @@ -976,6 +1002,9 @@ }, { "tags": { + "cci": [ + "CCI-002418" + ], "nist": [ "SC-8" ], @@ -1103,6 +1132,9 @@ }, { "tags": { + "cci": [ + "CCI-002418" + ], "nist": [ "SC-8" ], @@ -1230,6 +1262,9 @@ }, { "tags": { + "cci": [ + "CCI-002418" + ], "nist": [ "SC-8" ], @@ -1287,6 +1322,9 @@ }, { "tags": { + "cci": [ + "CCI-002418" + ], "nist": [ "SC-8" ], @@ -1344,6 +1382,9 @@ }, { "tags": { + "cci": [ + "CCI-002418" + ], "nist": [ "SC-8" ], @@ -1401,6 +1442,9 @@ }, { "tags": { + "cci": [ + "CCI-002418" + ], "nist": [ "SC-8" ], @@ -1528,6 +1572,9 @@ }, { "tags": { + "cci": [ + "CCI-002418" + ], "nist": [ "SC-8" ], @@ -1655,6 +1702,9 @@ }, { "tags": { + "cci": [ + "CCI-002418" + ], "nist": [ "SC-8" ], @@ -1707,6 +1757,9 @@ }, { "tags": { + "cci": [ + "CCI-002418" + ], "nist": [ "SC-8" ], @@ -1834,6 +1887,9 @@ }, { "tags": { + "cci": [ + "CCI-002418" + ], "nist": [ "SC-8" ], @@ -1891,6 +1947,10 @@ }, { "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], "nist": [ "SA-11", "RA-5" @@ -1929,6 +1989,10 @@ }, { "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], "nist": [ "SA-11", "RA-5" @@ -1967,6 +2031,9 @@ }, { "tags": { + "cci": [ + "CCI-000213" + ], "nist": [ "AC-3" ], @@ -2079,6 +2146,9 @@ }, { "tags": { + "cci": [ + "CCI-001310" + ], "nist": [ "SI-10" ], @@ -2116,6 +2186,9 @@ }, { "tags": { + "cci": [ + "CCI-001310" + ], "nist": [ "SI-10" ], @@ -2173,6 +2246,9 @@ }, { "tags": { + "cci": [ + "CCI-002418" + ], "nist": [ "SC-8" ], @@ -2210,6 +2286,10 @@ }, { "tags": { + "cci": [ + "CCI-003173", + "CCI-001643" + ], "nist": [ "SA-11", "RA-5" @@ -2242,7 +2322,7 @@ ] } ], - "sha256": "3ddd98a9a6a479ba14ae12db7a587917b73e3ce5d85c0c79b31480625c4d05b1" + "sha256": "ee8d167c9e72685b5b28fcf3a6e964215d6395c08f081778d1332fb73876f26b" } ], "passthrough": { From 8910135ff913872c638e9b6c433d01f2cc0e56c6 Mon Sep 17 00:00:00 2001 From: bwarren Date: Wed, 21 Sep 2022 20:26:23 -0400 Subject: [PATCH 6/6] updated saf-cli version Signed-off-by: bwarren --- package-lock.json | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index 3ee25b41b..cfa8863c3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@mitre/saf", - "version": "1.1.12", + "version": "1.1.13", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@mitre/saf", - "version": "1.1.12", + "version": "1.1.13", "license": "Apache-2.0", "dependencies": { "@aws-sdk/client-config-service": "^3.53.0", diff --git a/package.json b/package.json index ec16462d9..495352a1c 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@mitre/saf", "description": "The MITRE Security Automation Framework (SAF) Command Line Interface (CLI) brings together applications, techniques, libraries, and tools developed by MITRE and the security community to streamline security automation for systems and DevOps pipelines", - "version": "1.1.12", + "version": "1.1.13", "author": "The MITRE Security Automation Framework", "bin": "./bin/run", "bugs": "https://github.com/mitre/saf/issues",